Tagged Questions

0
votes
3answers
53 views

killing a win process from a C# console application: How do I set permissions?

using Process.Kill() from an ASP.NET web application... I get a Win32Exception with text "Access is denied" googling has several times told me to set permissions. However i don' …
0
votes
2answers
45 views

How to write an app-launching application with arguments in C#?

How to if I want to write an application that launches Firefox with arguments ? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System. …
7
votes
7answers
168 views

Process vs Thread

Recently I have been asked question in the interview whats the difference between process and thread. Really I did not know answer. I thought for a minute and gave very weird answe …
0
votes
1answer
17 views

Process.Exited event will not be called

Hi all, I have the following code snippet to call into command line: p = new Process(); ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = "cmd.exe"; psi.Arguments = " …
0
votes
3answers
34 views

127 Return code from $?

What is the meaning of return value 127 from $? in UNIX.
2
votes
8answers
370 views

Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?

I use Python 2.5.4. My computer: CPU AMD Phenom X3 720BE, Mainboard 780G, 4GB RAM, Windows 7 32 bit. I use Python threading but can not make every python.exe process consume 100% …
3
votes
1answer
41 views

Multiprocessing Pool inside Process time out

When ever I use the following code the pool result always returns a timeout, is there something logically incorrect I am doing? from multiprocessing import Pool, Process, cpu_coun …
1
vote
1answer
39 views

Run a program from PowerShell with timeout

I'll write a script that runs a program and wait for it finished. But if the program is not finished within a specified time I want that the program is killed.
0
votes
1answer
27 views

can a berkeley database be opened and accessed from multiple programs at the same time?

Hi, according to the Berkeley documentation the Transactional (TS) and the Concurrent Datastore version of the Database, multiple threads may access (and change) the database. Do …
2
votes
5answers
72 views

How to know if my program crashed the last time it ran?

If my program doesn't tear down correctly, the system becomes unstable. There is no workaround really. So, should my program crash and not tear down correctly, then I need to tell …
0
votes
2answers
25 views

Redirect window of command line tool to your app (Windows)

Hello, is there a way (on Windows XP+) to redirect the output of a window created by a process created with e.g. CreateProcess to a window of your own program? I'd like to make a …
0
votes
5answers
92 views

How to get process’s grandparent id

How can i get process id of the current process's parent? In general given a process id how can I get its parent process id? e.g. os.getpid() can be used to get the proccess id, an …
0
votes
3answers
37 views

Bring window to foreground after Mutex fails

Hi, i was wondering if someone can tell me what would be the best way to bring my application to the foreground if a mutex was not able to be created for a new instance. Eg - Appl …
3
votes
5answers
144 views

User Stories - Problems that can’t be made user stories

I am from an XP background. I know the process very well and have solid working experience with it. I have found it to be the best way to develop software. I find myself in the p …
2
votes
3answers
267 views

Why this program fails (sometimes)?

#include <cstdio> #include <QtCore/QProcess> int main (int argc, char** argv) { // if we remove 3 following lines, the problem described below doesn't exists!! QPr …

1 2 3 4 5 38 next
15 30 50 per page