Tagged Questions
The spawning tag has no wiki summary.
16
votes
3answers
8k views
How to spawn a process and capture its STDOUT in .NET?
I need to spawn a child process that is a console application, and capture its output.
I wrote up the following code for a method:
string retMessage = String.Empty;
ProcessStartInfo ...
5
votes
4answers
431 views
Python: How to determine subprocess children have all finished running
I am trying to detect when an installation program finishes executing from within a Python script. Specifically, the application is the Oracle 10gR2 Database. Currently I am using the subprocess ...
5
votes
3answers
1k views
How to deploy Django with Spawning
There's no much documentation on how to deploy a Django project with Spawning and yet people are recommending it over apache/mod_wsgi.
In another similar question, other SO user suggested me to open ...
3
votes
3answers
166 views
Spawning and terminating a person in a sim game (in Java)
I am developing a 2D grid based sim game. Progress is good.
Been cracking out code for the last few days really well, and I've been having some issues today.
I build two rooms, set the door position, ...
3
votes
3answers
838 views
How to spawn Linux process from Windows application?
My interactive 32-bit Windows app (now moving from Delphi [Ent] 2007 to 2009) uses command-line interactions to spawn child processes that do computationally-intensive tasks, which in turn write text ...
2
votes
1answer
60 views
Trac spawning for nginx deployement without using tracd
I am trying to run Trac on nginx.
There is a simple solution that consists of running the tracd server, but I'm trying to avoid that. It doesn't support unix sockets.
Instead, I'm trying to use ...
2
votes
2answers
146 views
Spawning Enemy at a Random Location
I've been following this code snippet from Ray Wenderlich's tutorials (http://codeviewer.org/view/code:1d8b). I'm trying to do almost the same thing, except I'm using a spritesheet (batchnode), and I ...
1
vote
2answers
271 views
Ubuntu Linux - Spawning an application when a USB device is plugged in
I'm trying to get an application to run whenever a USB device is plugged in: Flash drive, Camera, phone, etc. I'll probably start with a simple application like "Hello World". So basically, when I ...
1
vote
2answers
235 views
Run a process as a synchronous operation from a Win32 application
I have an existing utility application, let's call it util.exe. It's a command-line tool which takes inputs from the command line, and creates a file on disk, let's say an image file
I want to use ...
1
vote
5answers
170 views
How do I check if a program has already been executed during the current login session? (Windows)
In an application I am developing (in C), a loader app must first be run before the main application is executed. I have made it so the main app runs the loader app as a child when it is launched in ...
1
vote
0answers
122 views
recv-q and send-q between spawning+memcached gets bloated after a few hours
I'm using python-memcached 1.45 with python 2.5.2, django 1.0.4, spawning 0.9.2, eventlet 0.9.3 and libevent 1.3 on 64bit debian lenny.
spawning server is started with parameters given below:
...
1
vote
0answers
80 views
How to spawn thread when defined function is set (sequentially dependent) and calling is spatially dependent
I apologize for my question being a bit confusing.
So I have code written in python but also used H3D haptics platform. I'm trying to unload some of the processing of this one, very large thread so ...
0
votes
1answer
43 views
Issues with Platforms? (Cocos2D)
In my game I have platforms similar to Doodle Jump. They each have their own animation but they all in the end have the same tag for a b2ContactListener.
Right now I am using a CCSprite but I do not ...
0
votes
1answer
51 views
objective-c image moving problem
hey i am running into a problem.
i maade an image object that gets added every 2 seconds by an nstimer.
and an update timer updates it so the image goes forward.
but it only goes forward until a new ...
0
votes
0answers
105 views
How to spawn a child process and redirect its STD IO using named pipes?
I need to spawn a child process and talk to it over STD IO. I want to use named pipes to do so. The application that I am writing (which spawns the process) is in C++.
Microsoft gives a good example ...
0
votes
0answers
42 views
Error Deploying Django with Spawning
I've almost completely lost it. I'm trying to deploy my first Django project on a Centos 5.6 box. I tried going the Apache mod_wsgi route, but that failed 100% silently. After spending over several ...
0
votes
1answer
206 views
Android Game Development - Level progression methods
I am currently developing an Android game that is similar to a classic arcade space shooter. Thus far I have almost everything finished, but my code is not quite to my liking and I am trying to find ...
0
votes
1answer
170 views
Spawning infinite UIImageViews without name collisions
iPad app. OS 4.2.
I have a button that, when pressed, calls this function that creates a UIImageView and animates it (and calls a second animation block). I created another button that calls the same ...
0
votes
2answers
187 views
How can my ASP.NET webapp spawn a program in a new thread within the same Process?
I have an ASP.NET application which needs to run a command-line tool. I want to start it under the same process as the application pool so it is subject to the IIS CPU throttling, etc. How can this be ...
0
votes
1answer
306 views
How does one run Spawning with Django within a virtualenv?
Because of the way Eventlet, which Spawning depends on, installs itself, it can't be installed into a virtualenv. The following error (wrapped for readability) illustrates:
Running ...
0
votes
1answer
290 views
Programmatically launch sfx archive on Windows 7 (using _execv)? (C++)
My (MS Windows) application can update itself over the internet by download a self extracting archive and launching it via _execv (C++). Now while launching the sfx archive works fine on Windows XP, ...
0
votes
2answers
611 views
Spawned processes becoming defunct
I use posix_spawnp to spawn child processes from my main process.
int iRet = posix_spawnp(&iPID, zPath, NULL, NULL, argv, environ);
if (iRet != 0)
{
return false;
}
...
0
votes
2answers
234 views
Python script at Visual C++ 2005 build step not spawning other processes
I have the following post-build step in a VC++ 2005 project that calls a Python 2.5.1 script:
postbuild.py
postbuild.py does:
import os
os.system('cd') # cd is just a test, could be anything
The ...