Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
186 views

Call an external program from within OCaml

I'm pretty new to OCaml and was trying to figure out how to call an external program from within OCaml. I've been following the documentation here, and making the following call: Unix.execv "cat ...
3
votes
3answers
311 views

Executing a command from C++, What is expected in argv[0]?

I am using execv() to run commands from /bin/ such as 'ls', 'pwd', 'echo' from my c++ program, and I am wondering what value I should provide in argv[0]; const char * path = getPath(); char ** argv = ...
1
vote
0answers
22 views

python 2.4 execv hangs the process on AIX 5.1

I am trying to fork a process using python 2.4 on AIX 5.1 , I am using the following code def runcmd(cmd): (pid, fd) = pty.fork() argv = cmd.split() if not pid: print "In ...
1
vote
1answer
59 views

How to inherit stdin and stdout in python by using os.execv()

First, I wrote a c++ code as follows: #include <cstdio> int main() { int a,b; while(scanf("%d %d",&a,&b) == 2) printf("%d\n",a+b); return 0; } I use g++ -o a a.cpp ...
1
vote
1answer
41 views

How to get information about spawned children from their PID

In my program I am spawning child processes by using fork and execv. I am saving the child PIDs in an array. How can I get information about the children by using these PIDs? I want to get information ...
1
vote
2answers
137 views

How to read the return code from a child process

I use fork and execv to execute a child process. In the parent program, I have this: int status; wait(&status); cout << "return code = " << status << endl; Will that wait for ...
1
vote
4answers
140 views

Will execv run this in the foreground or background?

I have this in my program: execv (programname, (char **)argv); I'm not sure if the command is actually being executed correctly. How can I find out? Is this being run in the background?
1
vote
3answers
394 views

How to bring a child process running in the background to the foreground

If I used fork() and execv() to spawn several child processes running in the background and I wanted to bring one of them to the foreground, how could I do that? I am trying to write a shell that can ...
1
vote
2answers
113 views

Windows Service exits when calling an child process using _execv()

I have a C++ Windows application that was designed to be a Windows service. It executes an updater periodically to see if there's a new version. To execute the updater, _execv() is used. The updater ...
1
vote
3answers
219 views

Would this be considered a memory leak?

Consider this pointless program: /* main.c */ #include <stdlib.h> #include <unistd.h> int main(int argc, char **argv) { int i; for (i = 0; i < 1024; i++) { int pid = ...
1
vote
4answers
112 views

A question about execv and process family relationship

After a process forks and the forked son invokes execv, is the result still the son of the father?
1
vote
5answers
3k views

C++ fork() and execv() problems

I am kind of newbie on C++, and working on a simple program on Linux which is supposed to invoke another program in the same directory and get the output of the invoked program without showing output ...
1
vote
2answers
375 views

Illegal Argument Execv() Unix C++

So I basically have a vector args with 1 argument per array that I'm trying to pass to an execv() call in unix. Execv accepts two parameters like so: int execv(const char *path, char *const ...
0
votes
1answer
86 views

ANSI C - Execute Process, Wait, Delete File

I am trying to execute LP to print a PDF document and wait for it to exit. After it exists i am trying to delete the file with unlink(); However the wait finishes even before execv execute LP. I am ...
0
votes
1answer
62 views

execv and testing correct absolute paths

I'm trying to test absolute paths on a linux machine to find where a program is located so I can run it with my specific arguments. The problem is, when I find it, I keep adding more strings to the ...
0
votes
2answers
105 views

fork() and wait() connection to pid

I know that fork() creates a child process, returns 0 to child and returns child's pid to parent. From what I understand wait() also returns some kind of pid of the child process that's terminated. ...
0
votes
2answers
240 views

How to spawn a background program with execv

I am using fork and execv to spawn child programs. How can I make these programs run in the background? I tried not waiting for them, but they still send output to the screen.
0
votes
1answer
127 views

Why doesn't OSX Activity Monitor show the processes I started?

I'm using fork and execv to start child processes. If I run htop then I can find those processes. However, OSX Activity Monitor doesn't show them, even if I have it set to show all processes. Why is ...
0
votes
3answers
110 views

Does execv replace the current process like this?

If in my code, I were to call execv, and then I had several lines of code after the call to execv, would those lines get executed, or would they not get executed, since whatever was started by execv ...
0
votes
5answers
143 views

How to get the pid of a program started with fork and execv

In this program, I start another process with execv. if (fork() == 0) { struct rlimit limits; limits.rlim_cur = 10000000; // set data segment limit to 10MB limits.rlim_max = 10000000; // ...
0
votes
3answers
227 views

How to query child processes in C++

My c++ program will spawn several child processes using fork() and execv(). How can I query those processes? If I wanted to shut one down, how would I do that?
0
votes
4answers
380 views

Does the C execv() function terminate the child proccess?

Heres a breakdown of my code. I have a program that forks a child (and registers the child's pid in a file) and then does its own thing. The child becomes any program the programmer has dignified ...
0
votes
3answers
52 views

Is there a way to temporary disable fd 2 in UNIX?

I've written an application which uses fork and execv to launch another process. I made a pipe for notification about status, and from main entry of the launched process, I write some bytes to notify ...
0
votes
1answer
95 views

Cross-platform way to specify Python interpreter when running with execv

I am currently running a Python scripts both on Linux and Windows 7. The file is executed in an execv style with which I mean that the interpreter is defined in the beginning of the file in a command. ...
0
votes
1answer
199 views

why might execv crash?

#include <stdio.h> #include <unistd.h> #include <stdlib.h> int main (int argc, const char * argv[]) { printf("start\n"); char *const parmList[] = {"/bin/ls", "-l", NULL}; ...
0
votes
3answers
376 views

Pipe is not receiving all output from child process

I wanted to open up a pipe to a program and read output from it. My initial inclination was to use popen(), but the program takes a number of options, and rather that fighting with shell ...
0
votes
1answer
141 views

How to wait for a child that respawns itself with os.execv() on win32?

I have some code that uses pip to bootstrap a Python envionment for out build process: this is a lovely way of ensuring we get proper isolation of the build requirements from the rest of the host ...
0
votes
9answers
2k views

unix path searching C function

I am programming a UNIX shell and I have to use the execv() system call to create a process. One of the parameters for execv() is the filepath for the executable. So if somebody types in /bin/ls, it ...