Tagged Questions

0
votes
3answers
98 views

why doesn’t this code work???

fib(N)-> P1 = spawn(fun concFib:conFib/0), P2 = spawn(fun concFib:conFib/0), X=rpc(P1,N-2),Y=rpc(P2,N-1),X+Y. conFib()-> receive { …
0
votes
1answer
15 views

Tips for good division of labor between Design, Development, and HCI

I'm curious how other large-scale development shops (web-focused) divvy up the work between Designers, Developers, and HCI/Consumability Experts. Obviously: Developers will be w …
0
votes
1answer
27 views

Mysql process uses more than 100% CPU usage and neat about 1 GB of memory

Hi All, I am running mysql server on the server's which has following specifications - Dual Xeon Quad Core 2.0, 2048MB RAM, 1x 160gig SATA Fedora Core + SSH But mysql process f …
2
votes
4answers
103 views

Where is Boost.Process?

I need to execute a program and retrieve its stdout output in c++. I'd like my code to be cross-platform too. Having recently discovered the wonderful world of the Boost c++ libra …
2
votes
3answers
60 views

Reliable bidirectional communication to a Linux process?

What is the reliable way of implementing bidirectional communication to a Linux process? I see that popen does not seem to support "r" and "w" access at the same time... or at lea …
3
votes
3answers
71 views

Console application prompting for input

I'm trying to put together a wrapper around a console application using StandardInput and StandardOutput. I'm getting stuck where the console application would prompt for input suc …
0
votes
1answer
23 views

Help with for /f batch file

heres my code: start /realtime /b /wait .\jampDed.exe for /f "tokens=1-5 delims=:" %%d in ("%time%") do rename .\CIA_Secure_Host2\qconsole.log %%d-%%e-%%f start .\Serv.bat cmd t …
4
votes
2answers
46 views

When doing a Process.Start() do you need to wrap it in a using?

When you are starting a process and dont care about the result is this ok? Process.Start(xxx); Or should you do this using (Process.Start(xxx)){}
0
votes
1answer
25 views

Debugging the reading of output of a Windows console app using Python

This question is very similar to this one. I want to read output from a console app of mine. The app does not terminate, nor does it take input from stdin. When I modify rix0rrr's …
0
votes
2answers
51 views

Reusing Process object and IO redirects in C#

I'm using the data ready events of the Process class to get information from the standard output and standard error of a running process. It works great on the first run, but afte …
1
vote
4answers
72 views

Programmatic resource monitoring per process in Linux

Hi, I want to know if there is an efficient solution to monitor a process resource consumption (cpu, memory, network bandwidth) in Linux. I want to write a daemon in C++ that does …
1
vote
3answers
55 views

Forwarding command line arguments to a process in Python

I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP. The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warni …
2
votes
5answers
51 views

PHP Check Process ID

This is something i have wondered for a while and decided to ask about it. We have the function getmypid() which will return the current scripts process id. Is there some kind of …
2
votes
3answers
53 views

What is the ‘realtime’ setting for, for process priority?

From what I've read in the past, you're encouraged not to change the priority of your windows applications programmatically, and if you do never to realtime. Could anyone clear up …
0
votes
9answers
75 views

Writing Standard Input and waiting for Standard Output

Hi, I'm trying to create a Thread that keeps netsh windows command-line tool open so I can execute netsh commands without open it every single time. The thing is, once I've create …

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