I'm using unix system() calls to gunzip and gzip files. With very large files sometimes (i.e. on the cluster compute node) these get aborted, while other times (i.e. on the login nodes) they go through. Is there some soft limit on the time a system call may take? What else could it be?
|
The calling thread should block indefinitely until the task you initiated with system() completes. If what you are observing is that the call returns and the file operation as not completed it is an indication that the spawned operation failed for some reason. What does the return value indicate? |
|||||
|
|
Almost certainly not a problem with use of system(), but with the operation you're performing. Always check the return value, but even more so, you'll want to see the output of the command you're calling. For non-interactive use, it's often best to write stdout and stderr to log files. One way to do this is to write a wrapper script that checks for the underlying command, logs the commandline, redirects stdout and stderr (and closes stdin if you want to be careful), then execs the commandline. Run this via system() rather than the OS command directly. My bet is that the failing machines have limited disk space, or are missing either the target file or the actual gzip/gunzip commands. |
|||
|
|
Probably silly question: why not use zlib directly from your application? And system() isn't a system call. It is a wrapper for fork()/exec()/wait(). Check the system() man page. If it doesn't unblock, it might be that your application interferes somehow with wait() - e.g. do you have a SIGCHLD handler? |
|||
|
|
|
If it's a Linux system I would recommend using strace to see what's going on and which syscall blocks. You can even attach strace to already running processes:
|
|||
|
|
system()is almost always a very bad idea. It's difficult to correctly escape the command line, which will be interpreted by the shell, and even experienced coders often make mistakes escaping. You'd have a lot more control if you fork and exec the program on your own and avoid bringing in the shell. And in that case, your program is free to wait for the child process or continue running while the child process runs. – R.. Jul 3 '10 at 14:26