active questions tagged process - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:01:49Z http://stackoverflow.com/feeds/tag/process http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1936855/help-me-become-a-better-developer-looking-for-feedback -2 Help me become a better developer! Looking for feedback. [closed] Mike 2009-12-20T20:13:34Z 2009-12-20T20:32:32Z <p>Hello Stackoverflow.</p> <p>I've started a small open source project that I would like to use as a learning excercise and discussion point to become a better developer. You can find a link on my blog at <a href="http://softwaregonewrong.blogspot.com" rel="nofollow">softwaregonewrong.blogspot.com</a>.</p> <p>My question for you at this point is how to proceed from this point. Right now I have a high level design digram and have setup my initial project in source control. </p> <p>QUESTIONS:</p> <p>Do you usually being coding at this point? </p> <p>Does my design seem logical? </p> <p>I believe this is a great question for stack overflow as it will provide alot of feedback for my development as well as generate discussion around steps people take in development.</p> <p>Merry Christmas,</p> <p>Nalid</p> http://stackoverflow.com/questions/1844499/is-there-a-way-to-detect-if-when-a-process-starts-another-process-in-c-net-2-0 0 Is there a way to detect if/when a Process starts another Process in C# .Net 2.0? Brien W. 2009-12-04T02:29:34Z 2009-12-20T19:15:35Z <p>I'm looking for a way to detect if a Process started by my application has in turn spawned additional Processes. The hope is that i can have a thread that starts and application, watches until it exits, and then triggers some other action when that application exits. The problem is that with some of the applications that i want to monitor, they are starting an additional process and then exiting. so my trigger fires before the application has exited.</p> <p>for example, i start a program in a Process. that executable does some file patching, and then launches the main program - a separate exe - and then exits. this causes Process.HasExited to return true, which fires off my trigger prematurely. what i really care about is when the main program exits, in this case the program that the initial Process started, but i can't seem to find a way to do this programatically.</p> http://stackoverflow.com/questions/1929849/ruby-list-child-pids 0 ruby list child pids tig 2009-12-18T18:11:02Z 2009-12-19T16:54:43Z <p>How can I get pids of all child processes which were started from ruby script?</p> http://stackoverflow.com/questions/1437875/tar-on-windows-a-list-of-files-in-c 1 tar (on Windows) a list of files in c# m3ntat 2009-09-17T10:12:32Z 2009-12-18T18:10:08Z <p>I then to tar and then gzip a list of files in C#.</p> <p>I need some help with how to set the arguments to tar.</p> <p>Say I have tar.exe in a folder c:\tar\tar.exe and a method like the following:</p> <pre><code> private void RunTar(string outputFileName, List&lt;string&gt; fileNamePaths) { using (Process p = new Process()) { p.StartInfo.FileName = @"c:\tar\tar.exe"; p.StartInfo.Arguments = //; p.Start(); p.WaitForExit(); } } </code></pre> <p><strong>Note: the fileNamePathsToTar list has the full unc filename paths and the files can be in different folders.</strong></p> <p>Can anyone please help with what <strong>arguments</strong> to supply.</p> <p>Also I notice in the documentation:</p> <pre><code>-z, --gzip, --ungzip filter the archive through gzip -Z, --compress, --uncompress filter the archive through compress --use-compress-program=PROG filter through PROG (must accept -d) </code></pre> <p>Not sure how to use this but if I place the gzip.exe in the same folder as tar.exe <strong>can I perform my tar and then gzip of these files all in one step</strong>?</p> <p><strong>Update</strong></p> <p>I can only seem to get tar to work on files in the same directory as tar.exe if I try a full path name I get something like:</p> <pre><code> C:\Tar Test&gt;tar -cf out.tar c:/Tar Test/Text/t1.txt tar: Cannot add file c:/Tar: No such file or directory tar: Cannot add file Test/Text/t1.txt: No such file or directory tar: Error exit delayed from previous errors </code></pre> <p>I've tried with the slashes both ways \ or / and with quotes around the full path no joy.</p> <p>Thanks</p> http://stackoverflow.com/questions/1925893/c-system-diagnostics-process-start-parameters 0 C# System.Diagnostics.Process.Start() parameters Ariel Jacobs 2009-12-18T02:23:28Z 2009-12-18T02:48:04Z <p>Anyone know where a computer keeps what parameters it can accept through this function? For example, I'd like to know what I can send to Winword.exe (Microsoft Word). Or is there an online list of what programs work here?</p> http://stackoverflow.com/questions/1883952/c-process-give-controls-back-to-parent-process-question 2 c# process give controls back to parent process question unknown (google) 2009-12-10T20:54:33Z 2009-12-17T22:38:06Z <p>Hi:</p> <p>I have a window form application written in c# lauch perl script.</p> <p>Everything is working except one problem. When the perl script run, it runs as a process launch by c# application. There are some delays I put in the perl script to wait for messages from socket interface. </p> <p>Because of those delays, when c# application runs the script, the GUI looks like not responding state. I was using Process class to run the script. My question is that is there way to gives control back to parent process, the c# application from perl script process?</p> <p>I thought the process.start() in c# is forking a new process, which shouldn't affect the GUI or the c# application itself.</p> <p>Here is my code to start the perl script: loop through all perl scripts... { Process myProcess = new Process(); MessageBox.Show((string)curScriptFileName);</p> <pre><code> string ParentPath = findParentPath((string)curScriptFileName); ProcessStartInfo myProcessStartInfo = new ProcessStartInfo("perl.exe"); myProcessStartInfo.Arguments = (string)(curScriptFileName); myProcessStartInfo.UseShellExecute = false; myProcessStartInfo.RedirectStandardOutput = true; myProcessStartInfo.WindowStyle = ProcessWindowStyle.Hidden; myProcessStartInfo.CreateNoWindow = true; myProcessStartInfo.WorkingDirectory = ParentPath; myProcess.StartInfo = myProcessStartInfo; myProcess.Start(); // Read the standard output of the spawned process. output = myProcess.StandardOutput.ReadToEnd(); //MessageBox.Show(output); //this.ScriptTestResultTextBox.AppendText(output); //Console.WriteLine(output); myProcess.WaitForExit(); } this.ScriptTestResultTextBox.AppendText(output); </code></pre> <p>As you can see, I used to put the Text Box appending code inside the loop. I expected that i can get updated immediately. But now, with the delay, the GUI is not responding I have to update the text box after process exit. Is there a way to solve this problem?</p> <p>Thanks for the help.</p> http://stackoverflow.com/questions/1917264/kanban-as-a-software-development-process-in-practice 2 Kanban as a Software Development Process in Practice LBushkin 2009-12-16T19:59:54Z 2009-12-17T19:26:04Z <p>Has anyone used the <a href="http://www.kanbandistilled.com/" rel="nofollow">kanban method</a> for software development management?</p> <p>I am evaluating kanban as a technique and would be curious to hear from anyone who has actually applied it in practice as to how effective it is. I've seen questions like: <a href="http://stackoverflow.com/questions/924121/is-anyone-using-kanban">is-anyone-using-kanban</a>, <a href="http://stackoverflow.com/questions/1156667/kanban-vs-scrum">kanban-vs-scrum</a>, and <a href="http://stackoverflow.com/questions/1367491/apply-kanban-in-an-agile-team">apply-kanban-in-an-agile-team</a> but they don't address my concerns.</p> <p>What I'm interested in specifically is:</p> <ol> <li>Does it actually offer the advantages is claims in terms of dynamically identifying bottlenecks?</li> <li>Is it easy to execute in practice, or does it have logistical challenges that you need to manage?</li> <li>Does it scale well to project teams with many parallel streams of work and many developers?</li> <li>How does it compare to critical path analysis (as implemented in MS Project), how is it different?</li> <li>What other benefits can be gained from applying kanban?</li> </ol> <p>Thanks.</p> http://stackoverflow.com/questions/1919722/code-review-documentation-in-agile-projects 0 Code Review Documentation in Agile Projects unknown (yahoo) 2009-12-17T05:53:08Z 2009-12-17T18:41:09Z <p>Hi,</p> <p>The organization I work with, a large Indian outsourcing company, enforces documentation of code review comments. The rationale is that this gives the team insight into the quality of code development and also understanding of the patterns of the problems encountered. This is checked during the regular project audits that we have.</p> <p>The problem is that it takes a lot of effort and time to document the comments and track them to closure, especially for a complex project that has various layers like client/Web services and database.</p> <p>How does this fit with the principles of Agile methodology? What is your experience and opinion?</p> http://stackoverflow.com/questions/1903295/processes-timing 1 Processes timing benasio 2009-12-14T20:28:12Z 2009-12-17T17:53:35Z <p>How to calculate the total execution time of each application Win (process) with the group on day. </p> <p>For example: the process - notepad.exe - 10 minutes today (in total)</p> http://stackoverflow.com/questions/882826/how-to-change-the-name-of-a-java-application-process 6 how to change the name of a Java application process? Ravindra 2009-05-19T13:40:01Z 2009-12-16T21:52:07Z <p>when executing a Java application the process name given to it is usually java.exe or javaw.exe. But how can I make it be called by the name of my application?</p> http://stackoverflow.com/questions/1916141/win32-api-can-i-get-notified-when-some-process-starts 2 [Win32 API] Can I Get Notified When Some Process Starts? NSWO2 2009-12-16T17:09:22Z 2009-12-16T17:21:47Z <p>I need to know (preferably with the least latency) when <code>foo.exe</code> is launched. </p> <p>Right now, I have a thread that sits in a light loop (~10 Hz) and walks the process tree looking <code>foo.exe</code>.</p> <p>This is less than elegant and I was wondering whether I could register with some part of the Windows API to get a callback when any process starts.</p> <p>If no such facility is available, I am, of course, open to other methods of accomplishing this task more elegantly.</p> http://stackoverflow.com/questions/1913465/is-there-an-easy-method-of-process-mapping-a-complex-ssis-package-so-i-can-print 0 Is there an easy method of process mapping a complex SSIS package so I can print it out? Ian Roke 2009-12-16T09:38:04Z 2009-12-16T14:11:21Z <p>I have taken ownership of a very complex SSIS package with multiple files and routes. Is there an easy method of process mapping the whole process automagically so I can print it out and understand it?</p> <p>Cheers, Ian.</p> http://stackoverflow.com/questions/1782273/troubleshooting-sigterms-with-tee-on-a-cluster-within-sge-jobs 2 Troubleshooting SIGTERMs with tee on a cluster within SGE jobs tramdas 2009-11-23T10:31:19Z 2009-12-16T11:20:49Z <p>I have some legacy scientific code running on a Rocks cluster, with SGE. I have an application-specific job submission script that generates qsub scripts (i.e. the script which Sun Grid Engine takes and runs).</p> <p>Within the qsub script, my legacy app is called. This app sends it's output to STDOUT. SGE intercepts STDOUT and spools it into a file in the users home directory, so the user can see results build up in real-time. I want this behavior to be maintained, but at the same time, I want to transparently log all output in the background. I figured tee would be perfect to achieve this.</p> <p>So I modified the job submission script to run the app and pipe STDOUT to tee, which saves STDOUT to a file that is copied to a central store once the job completes. The app is run and piped to tee as follows:</p> <pre><code>\$GMSCOMMAND | tee \$SCRATCHDIR/gamess_output.log </code></pre> <p>The problem is, ever since I've started piping the code to tee, the app has been dying with SIGTERMs, especially when I request several nodes. I tried using the -i (ignore interrupts) parameter with tee: it makes no difference. </p> <p>Things work fine if I redirect the app output to a file then cat the file once the app is done, but then I can't allow users to view results buildup in real-time (which is an important requirement).</p> <p>Any ideas about why this use of tee might be failing? Or alternatively, any ideas about how else I might achieve the desired functionality?</p> http://stackoverflow.com/questions/1528473/c-make-a-window-topmost-using-a-window-handle 0 C# make a window topmost using a window handle James Cadd 2009-10-06T22:40:56Z 2009-12-16T10:02:41Z <p>After launching an application using the Process class I'd like to make that window topmost. Currently, my app is the topmost window so when i launch the other app it doesn't display. One thing that came to mind is that I could set topmost = false for my application before launching the process, the problem with this is I want to give the process ample time to load up before displaying it to the user, so I'd like more control over when I switch the other application to the topmost.</p> http://stackoverflow.com/questions/807010/simulate-mouse-move-click-keypress-in-an-application-that-is-not-active 0 Simulate Mouse move/click/keyPress in an application that is not active Joao Oliveira 2009-04-30T13:49:14Z 2009-12-15T23:20:22Z <p>Hello guys,</p> <p>I know how to simulate mouse and keyboard events, but they act as if the user did them, so they will affect the window that is active. What I need is to simulate one of those inputs, but in a Window that is not active. </p> <p>I'm not saying that it is minimized, imagine for example, you have msPaint, and notepad. Notepad is in front of paint. And you want to simulate mouse clicks in certain coordinates of the paint window, but without setting it active, making it possible for the user to keep using notepad which is in fron of paint.</p> <p>Is this possible at all? Thanks!</p> <p>I've tried this:</p> <pre><code> const int WM_KEYDOWN = 0x100; Thread.Sleep(5000); Process x = Process.Start(@"C:\WINDOWS\NOTEPAD.EXE"); PInvokes.PlatformInvokeUSER32.SendMessage(x.MainWindowHandle, WM_KEYDOWN, ((int)Keys.W), 0); </code></pre> <p>but it doesn't work =( Doesn't do anything :(</p> http://stackoverflow.com/questions/200348/is-there-a-memory-limit-for-a-single-net-3-5-process 0 Is there a memory limit for a single .net (3.5) process Matthias 2008-10-14T08:11:11Z 2009-12-15T22:41:34Z <p>We are currently thinking of building a cache-system to hold data pulled out of an SQL database and make it available to a couple of other applications (website, webservice, etc). We imagine the cache to be running as a windows service and basically consist of a smart dictionary which holds the cache entries. My question is, is there a limit to the working set of the application (it will be running under windows server 2003)? Or is the amount of physical memory the limit?</p> http://stackoverflow.com/questions/1909482/process-pipeline-in-c 0 process pipeline in c# unknown (google) 2009-12-15T18:41:39Z 2009-12-15T18:49:21Z <p>Hi:</p> <p>I have a loop that spawn new process to run some ".exe" files. And I capture the output of those ".exe" files to my textbox. In order to capture the outputs right away, I can't use process.waitforexit() method. The problem I have right now is if the previous process took a long time to run, a second process will run regardless if the previous one finished or not. This messed up my outputs.</p> <p>Is there a way for me to insert the processes into a queue structure so it can be run in a sequential order? </p> <p>Thanks</p> http://stackoverflow.com/questions/1906342/windows-add-security-restrictions-to-current-process 0 Windows: add security restrictions to current process? Robert Fraser 2009-12-15T09:59:34Z 2009-12-15T10:08:18Z <p>I'm writing a web service (mostly in .NET, but there's some unmanaged code, too). I'm trying to avoid adding any vulnerabilities (obviously...), but it's alwyas possible (esp. since there's some unmanaged code, both by own &amp; libraries, to which data from files/network is passed). UAC + DEP helps, but you never know. So I was wondering if there's a way to tell Windows to restrict certain activities for a process? For example, if the process tries to fork or execute any system command, it should directly refuse to do it. Is there a way to do this?</p> http://stackoverflow.com/questions/1899788/stages-in-the-application-development-process 0 Stages in the application development process James P. 2009-12-14T09:05:12Z 2009-12-14T09:27:00Z <p>I've heard terms like "deployment" and "production" applied to the development process. What are the usual stages and what do they involve ?</p> http://stackoverflow.com/questions/1899173/how-to-redirect-to-page-in-asp-net 0 How to redirect to page in asp.net? Samir 2009-12-14T06:06:37Z 2009-12-14T06:17:12Z <p>Hello, i am using one swf file.on click i have some background process.after finish the process i want to redirect to particular page.but its not working.what should i do to redirect to page.i am using asp.net ? reply me soon</p> <p>Thanking You Samir</p> http://stackoverflow.com/questions/1171474/drag-drop-between-medium-high-integrity-level-processes-in-windows-vista 1 Drag/Drop between medium/high integrity level processes in Windows Vista Jon Tackabury 2009-07-23T12:41:32Z 2009-12-13T14:00:04Z <p>In Windows Vista, I am unable to drag/drop files onto my application's window because it is running as a high integrity level process. I need to run it as high, but I also need to be able to accept dropped files from low/medium integrity level processes like Windows Explorer. I believe it is UIPI that is blocking the drag/drop operation. I know that I can use the ChangeWindowMessageFilter function to allow certain Windows messages to bypass UIPI, but I'm not sure which messages to add to allow the drag/drop operation. Is ChangeWindowMessageFilter the right approach to permit this, or is there a better way? Thanks!</p> http://stackoverflow.com/questions/1895920/ignoreuserabort-and-redirect-in-php 1 ignore_user_abort and redirect in php? Mala 2009-12-13T08:27:37Z 2009-12-13T09:47:58Z <p>Hi</p> <p>I have a very similar setup to the person here:<br> <a href="http://stackoverflow.com/questions/265073/php-background-processes">http://stackoverflow.com/questions/265073/php-background-processes</a><br> i.e a very long script that takes up to 10 minutes. However, I need the person who calls the script redirected back to the homepage while the script works. In other words, I need the user experience to be something like this:</p> <ul> <li>click the update button</li> <li>script begins to execute, can take up to 10 minutes</li> <li>user is redirected back to the home page immediately</li> </ul> <p>Is this possible using only PHP? I gather I will need</p> <pre><code>ignore_user_abort(true); set_time_limit(0); </code></pre> <p>But how do I redirect the user? I can't use javascript because output only gets written to the page at long increments, and I want the redirection to be immediate. Can I use headers? Or will that mess with things?</p> <p>Alternatively, I could use the cron job approach, but I have zero experience in making a cron job or having it run php code (is that even possible?)</p> <p>Thanks,<br> Mala</p> <p><b>Update:</b><br> Using headers to redirect does not work - the page will not load until the script is done. However, eventually the webserver times out and says "Zero-Sized Reply: The requested URL could not be retrieved" (although the script continues running). I guess my only option is to go with the cron job idea. Ick!</p> http://stackoverflow.com/questions/1894325/processing-output-from-cmdline-via-a-python-script 0 Processing output from cmdline via a Python script randombits 2009-12-12T18:39:20Z 2009-12-12T18:47:51Z <p>I'm trying to use the subprocess module with Python 2.6 in order to run a command and get its output. The command is typically ran like this:</p> <pre><code>/usr/local/sbin/kamctl fifo profile_get_size myprofile | awk -F ':: ' '{print $2}' </code></pre> <p>What's the best way to use the subprocess module in my script to execute that command with those arguments and get the return value from the command? I'm using Python 2.6.</p> http://stackoverflow.com/questions/1887270/blackberry-get-current-process-id 2 BlackBerry - Get current Process ID gav 2009-12-11T10:48:42Z 2009-12-12T08:18:08Z <p>Hi all,</p> <p>I read <a href="http://stackoverflow.com/questions/1090929/blackberry-how-to-get-the-background-application-process-id">Blackberry - How to get the background application process id</a> but I'm not sure I understand it correctly. The following code gets the foreground process id;</p> <pre><code>ApplicationManager.getApplicationManager().getForegroundProcessId() </code></pre> <p>I have two processes which execute the same piece of code to make a connection, I want to log the process which made the calls along with all my usual logging data to get a better idea of how the flow is working.</p> <p>Is it possible to get the id for the process which is currently running the code? One process is in the foreground (UI process) and the other is in the background but both use the same connection library shared via the runtime store.</p> <p>Thanks in advance!</p> <p>Gav</p> http://stackoverflow.com/questions/983390/pros-and-cons-of-product-line-software-development 2 Pros and Cons of Product Line Software Development Chris Arguin 2009-06-11T20:13:38Z 2009-12-11T13:00:01Z <p>Has anybody here implemented a software product line approach, as defined by the <a href="http://www.sei.cmu.edu/productlines/" rel="nofollow">SEI</a>? How do you manage changes? How do you test? What problems have you had to deal with?</p> <p>For years we've basically been trying to follow a product line approach, but I am constantly fighting Program Managers who don't want to pay for testing changes not strictly required for their program, and yet want free bug fixes. They also are very scared of changes happening to the code base that they don't need... not an unreasonable fear.</p> <p>This has culminated in my getting an action item at our last PDR to explain the product line approach and why I think we should follow it. I've found <a href="http://www.softwareproductlines.com/" rel="nofollow">softwareproductlines.com</a>, which has a few success stories, but not enough details on how to counter the potential pitfalls.</p> http://stackoverflow.com/questions/1283564/unable-to-extract-processid-from-getprocessid-hwnd-pinvoke 1 Unable to extract processID from GetProcessId(.. hWnd) (pInvoke) Grant 2009-08-16T06:02:04Z 2009-12-11T09:02:15Z <p>Hi, im using the following method </p> <blockquote> <pre><code> [DllImport("kernel32.dll", SetLastError=true)] static extern int GetProcessId(IntPtr hWnd); </code></pre> </blockquote> <p>to try and get the processId for a running process and the only information I have is the HWND. My problem is that it is always returning error code 6 which is ERROR_INVALID_HANDLE. I thought i might change the parameter to be of type int but that also didnt work. Im not able to enumerate the running processes because there may be more than 1 instance running at any one time.</p> <p>Can anyone see if i am doing anything wrong?</p> <p>NB: The process is spawned from an automation object exposed to the framework and only provides the HWND property. Perhaps there is another way to get the processID seeing as the code i wrote was responsible for running it in the first place?</p> <p>My code looks something similar to this...</p> <blockquote> <p>AutomationApplication.Application extApp = new AutomationApplication.Application(); extApp.Run(); ...</p> </blockquote> http://stackoverflow.com/questions/1885171/where-is-the-msdn-documentation-on-multi-process-window-ownership-for-win32-chr 1 Where is the MSDN documentation on multi-process window ownership for win32? (chrome uses this) drudru 2009-12-11T00:57:04Z 2009-12-11T01:16:22Z <p>where is the MSDN documentation that describes how multiple processes can control and own other windows in other processes like Google chrome?</p> http://stackoverflow.com/questions/654525/implement-wait-between-processes-in-java 2 Implement wait between processes in Java? Amara 2009-03-17T14:40:54Z 2009-12-10T16:31:51Z <p>I would like some help understanding and implementing a 'wait until process complete' between the various processes in my application, which need to proceed in a <em>step-wise fashion</em>. My java file runs a batch file which then runs a script. At the conclusion of this there are series of commands that I need to run (through the command line) in a consecutive manner. I'm using:</p> <pre><code>Runtime.getRuntime().exec("cmd /c start " + command) </code></pre> <p>to run my batch files and commands (not sure if that information is relevant). Right now what is happening is that the second step that needs to occur in my application is executing before the first step (running the batch file which runs a script) has completed. I need the first step to conclude before running the next series of commands. I really hope I'm making sense!</p> http://stackoverflow.com/questions/1875509/launching-a-process-and-waiting-for-a-condition-in-groovy-or-java 1 Launching a process and waiting for a condition in Groovy or Java binil 2009-12-09T17:28:30Z 2009-12-09T17:28:30Z <p>I need to write a Groovy script which launches a process, reads the processes out &amp; err streams, and wait for a particular line of text to be outputted. The wait should not be indefinite, but should time out after a while.</p> <p>This is what I came up with. Is there a better way?</p> <pre><code>def proc = "groovy test.groovy".execute(null, new File(".")) def timeout = 10 * 1000 printProcessOutput(proc, timeout) {line, count -&gt; false /* replace with evaluation of some actual condition */ } def printProcessOutput(proc, millis, condition) { def queue = new java.util.concurrent.LinkedBlockingQueue() def out = new StreamReader(new InputStreamReader(proc.inputStream), queue) def err = new StreamReader(new InputStreamReader(proc.errorStream), queue) def outThread = new Thread(out); outThread.start() def errThread = new Thread(err); errThread.start() def start = System.currentTimeMillis() def end = start def count = 0 while (end &lt; start + millis) { def line = queue.poll(10, java.util.concurrent.TimeUnit.MILLISECONDS) if (line) { println line count++ if (condition(line, count)) { break } } end = System.currentTimeMillis() } out.kill(); try { outThread.interrupt() } catch (ex) { } err.kill(); try { errThread.interrupt() } catch (ex) { } def temp = [] queue.drainTo(temp) temp.each { println "TEMP: $it" } } class StreamReader implements Runnable { final def reader final def queue volatile def killed = false public StreamReader(reader, queue) { this.reader = reader this.queue = queue } def void run() { def buff = new BufferedReader(reader) def line = buff.readLine() while (!killed &amp;&amp; line != null) { queue.offer(line) line = buff.readLine() } } def kill() { killed = true } } </code></pre> <p>test.groovy file is simply:</p> <pre><code>def rand = new Random() def delta = 5 * 60 * 1000 def start = System.currentTimeMillis() def end = start while (end &lt; start + delta) { if (rand.nextBoolean()) { System.err.println("ERR " + new Date()) } else { System.out.println("OUT " + new Date()) } Thread.sleep(100) end = System.currentTimeMillis() } println "Done" </code></pre> http://stackoverflow.com/questions/1868941/how-to-get-a-list-of-all-processes-including-dlls-they-use-using-process-monitor 0 How to get a list of all processes including DLLs they use using Process Monitor? Mad 2009-12-08T18:31:44Z 2009-12-08T18:48:08Z <p>Ctrl-A allows to save a report only for a single executable. Thanks</p>