Questions tagged as 'processo'

2
answers

I need to get the Task Manager process description

I need to get the name of the process that is active on the screen, however I need to bring the same one appears in the Task Manager in description. For example if I use processName it will bring "Chrome" I need it to be description =...
asked by 23.05.2016 / 15:56
1
answer

How to create a dynamic progress bar in R?

To track the processing status in my routines, I use the progress bars of the pbapply package, but I have not found a dynamic way to track more than one process. To illustrate the problem I considered a list containing three elements of d...
asked by 20.03.2016 / 19:27
0
answers

Program compiled in Delphi does not open

Good afternoon, I have a software written in Delphi and I noticed that the following problem occurs: If you use the option to compile in debug mode, the executable comes with 32MB and works correctly. If you use the option to compile in...
asked by 10.01.2017 / 18:52
1
answer

Function operation fork ()

Someone can explain how the fork () function works relative to the state of the variables for each child process call in this piece of code: #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <unistd.h&...
asked by 18.04.2018 / 19:59
1
answer

Run a program with internal arguments

How can I create a Process , start it without allowing any user to see the arguments? Ex:    Executable: MyGame.exe       Arguments: -userid 0 -userpwd 0 But without allowing the task manager or other method to know which comman...
asked by 29.05.2017 / 00:17
1
answer

Process management in the SO

For the operating system, is a process regardless of its state a running program? The test question was either true or false . I chose fake , but the answer was wrong. Can anyone explain why?     
asked by 22.10.2015 / 14:46
1
answer

How to pass more than one argument using Process + OpenSSL

Using the following code I pass a certain argument, then I need to pass a password that OpenSSL requests, but how do I do this? I tried StandardInput but got an exception:    Additional information: StandardIn was not redirected Di...
asked by 16.10.2015 / 17:20
2
answers

Script /.bat to kill certain process on all logged-in users on the computer

Good people, my problem is this: I have a process called gdc.exe . If a user has this process open and another user logs on to the machine and tries to run the program that generates this same process, it can not open the program. I need a...
asked by 04.02.2015 / 18:48
1
answer

How to open a file that is inside the solution with Process.Start

I added my solution in C # to a folder called "files" inside that folder will be placed some standard documents that can be analyzed at the time of registering some projects. I have a combobox in the form for the person to choose the f...
asked by 29.12.2014 / 19:10
1
answer

How to improve the perfomance of a program by dividing the executions into processes in language C?

int main(int argc, char ** argv) { int i,j; uchar *image; camera c; point eye; point lookat; int samples; int s; float rcp_samples;// = 1.0 / (float)samples; //char fname[20]; //ray * rays; //color...
asked by 22.04.2018 / 00:43