Tag Info

Hot answers tagged

3

Basically, you need to hook to Windows Management API, which allows you to listen to started and stopped processes. Once WMI send notification to your program you will get control inside the either of (based on the answer) private void ProcessEnded(object sender, EventArrivedEventArgs e) private void ProcessStarted(object sender, EventArrivedEventArgs e) ...


2

Does your program not feature a --password option ? Normally all command line based programs do, mainly for scripts. Runtime.getRuntime().exec(String[]{"your-program", "--password="+pwd, "some-more-options"}); Or the more complicated way and much more error-prone: try { final Process process = Runtime.getRuntime().exec(new String[] ...


2

You have to exec() if you actually want a new program running in one of the processes (usually the child but not absolutely necessary). In your specific case where the shell executes ls, the shell first forks, then the child process execs. But it's important to realise that this is two distinct operations. All fork() does is give you two (nearly) identical ...


2

In brief, it is an interrupt which gives control back to the kernel. The interrupt may appear due to any reason. Most of the times the kernel gets control due to timer interrupt, or a key-press interrupt might wake-up the kernel. Interrupt informing completion of IO with peripheral systems or virtually anything that changes the system state may wake-up the ...


2

when you are starting the application using Process.Start, you are missing a -pass 1 switch in the command prompt, may be that is affecting the output. AFAIK, the speed & the output of the application started via Process.Start is same as it would have started under normal circumstances. There can be 1% or 2% change in performance, but that is mostly ...


2

It's not clear to me what you're trying to do, but if you want to pass the ProcessBuilder the parameters from the java command line, then you need to do ProcessBuilder pb = new ProcessBuilder("path", args[0], args[1]); // Note, index starts with 0 The way you do it, you're sending the actual strings "arg[1]" and "arg[2]" to your command.


2

Either you start the process yourself or find it by enumerating Process.GetProcesses() or calling Process.GetProcessesByName(...). In any case you'll have some process handle p. Now you can subcribe to its Exited event or wait by p.WaitForExit(). This answer is based on your C# tag. However, with PowerShell it'll work like that too. Just the syntax may ...


2

Try passing the /K option to let the command console stay at video and receive the subsequent DIR command (Without exit). Process cmd = new Process(); cmd.StartInfo.FileName = @"cmd.exe"; cmd.StartInfo.Arguments = @"/K DIR"; // <-- This will execute the command and wait to close cmd.Start(); cmd.WaitForExit(); The /K option will allow you to get a ...


1

Since you create the processes (I assume you are using fork()), you may want to look at eventfd(). eventfd()'s provide a lightweight mechanism to send events from one process or thread to another. More information on eventfd()s and a small example can be found here http://man7.org/linux/man-pages/man2/eventfd.2.html.


1

You'd probably want to use pipes for this. Depending on how the processes are started, you either want named or anonymous pipes: Use named pipes (aka fifo, man mkfifo) if the processes are started independently of each other. Use anonymous pipes (man 2 pipe) if the processes are started by a parent process through forking. The parent process would create ...


1

Just call Shell, and the parameters should be passed also with the string of the .exe name, like this: Call Shell("""runme.exe"" ""-parameter1 "" ""-parameter2""", vbNormalFocus) PS: The quotes make the difference, dont ignore it :)


1

@ECHO OFF SETLOCAL FOR /f "delims==" %%i IN ('set $ 2^>nul') DO SET "%%i=" FOR /f "delims=" %%i IN ('wmic process get Name^, ProcessId^, WorkingSetSize ') DO ( IF DEFINED $0 ( SET wss=%%i CALL SET wss=0000000000000000000%%wss:~60%% CALL SET wss=%%wss: =%% CALL SET wss=$%%wss:~-20%% CALL SET %%wss%%=%%i ) ELSE (SET $0=%%i) ) FOR /f ...


1

As other people have pointed out, relying on the parent pid to become 1 when the parent exits is non-portable. Instead of waiting for a specific parent process ID, just wait for the ID to change: pit_t pid = getpid(); switch (fork()) { case -1: { abort(); /* or whatever... */ } default: { /* parent */ exit(0); ...


1

I think you need a Semaphore, check this example code: import threading import datetime class ThreadClass(threading.Thread): def run(self): now = datetime.datetime.now() pool.acquire() print "%s says hello, World! at time: %s" % (self.getName(),now) pool.release() pool = threading.BoundedSemaphore(value=1) for i in ...


1

OS footprint of java process are composed from java heap (it's size in limited by -Xmx) java classes related metadata (or permanent generation in HotSpot JVM) non-heap memory accessible via NIO stack space for java threads Some garbage collection algorithms are returning free memory back to OS, other do not. In HotSpot JVM, serial old space collector ...


1

This is normal, don't worry. JVM acquires memory when it needs to execute some complex logic. When java is done processing the tasks the JVM will still keep that memory as a reserved space and is not released back to the OS. This architecture helps in performance because JMV does not have to request the same memory again from the underlying OS. It will still ...


1

A process can set the process group ID of only itself or any of its children. Furthermore, it can't change the process group ID of one of its children after that child has called one of the exec functions. --APUE In my opinion, 1.a grandparent can't use setgpid() with its gradechild, you can check this easily.That's to say, the code in pid 0 below won't ...


1

No need for synchronization primitives. You should be able to open the file for exclusive access. That will prevent any other app from messing with it. For example: try { using (var fs = new FileStream("foo", FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None)) { try { // do stuff with file. } ...


1

The user name will be already submitted here: processInfo.Arguments = String.Format(@" {0} {1}:127.0.0.1:{2} -i {3} -l {4} {5}", remoteOption, LocalPort, TargetPort, KeyPath, username, TargetIp); So when you start the process, plink will still handle the user name as input and return a line to process.StandardOutput. Now it waits for the password but ...



Only top voted, non community-wiki answers of a minimum length are eligible