summaryrefslogtreecommitdiff
path: root/ext/standard/proc_open.h
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-12-31 14:49:06 +0000
committerNuno Lopes <nlopess@php.net>2006-12-31 14:49:06 +0000
commit976c72cce7ca0acc5d5a46aba8875d572690a027 (patch)
treefeb5b84c891481972e00d4d022f1b7942ae8ebdc /ext/standard/proc_open.h
parent011a8ac0e6519d8c33480ccca185bbc95cb68313 (diff)
downloadphp-git-976c72cce7ca0acc5d5a46aba8875d572690a027.tar.gz
MFB: fix PID info on windows
Diffstat (limited to 'ext/standard/proc_open.h')
-rw-r--r--ext/standard/proc_open.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/standard/proc_open.h b/ext/standard/proc_open.h
index d1d4c1c450..5e07f2e5af 100644
--- a/ext/standard/proc_open.h
+++ b/ext/standard/proc_open.h
@@ -19,7 +19,7 @@
#ifdef PHP_WIN32
typedef HANDLE php_file_descriptor_t;
-typedef HANDLE php_process_id_t;
+typedef DWORD php_process_id_t;
#else
typedef int php_file_descriptor_t;
typedef pid_t php_process_id_t;
@@ -40,6 +40,9 @@ typedef struct _php_process_env {
struct php_process_handle {
php_process_id_t child;
+#ifdef PHP_WIN32
+ HANDLE childHandle;
+#endif
int npipes;
long pipes[PHP_PROC_OPEN_MAX_DESCRIPTORS];
char *command;