Tagged Questions
The pclose tag has no wiki summary.
2
votes
1answer
65 views
Oracle beq and popen()
Good day!
I have a program like this (that's for Pro*C precompiler):
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <errno.h>
EXEC SQL BEGIN DECLARE ...
1
vote
1answer
159 views
Windows/php pclose and popen issue
Here is my code:
<?php
require_once 'dbconnect.php';
function execInBackground($cmd) {
if (substr(php_uname(), 0, 7) == "Windows"){
pclose(popen("start /B ". $cmd, ...
1
vote
1answer
120 views
How to ensure popen()ed process runs destructors on exit?
If I have a pipe to run some command, the piped command needs to do some cleanup, however, if the processes that started the pipe has an error, the piped command is not cleaning up. Is the piped ...