summaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorRoy T. Fielding <fielding@apache.org>1999-08-26 20:11:33 +0200
committerRoy T. Fielding <fielding@apache.org>1999-08-26 20:11:33 +0200
commitf94d181200f7de5fe9f56c4075903482dda99bac (patch)
tree7b6ca9387f12bca174c91278c2b606d413e42635 /os
parentAdd ap_spawnvp for thread safety. (diff)
downloadapache2-f94d181200f7de5fe9f56c4075903482dda99bac.tar.xz
apache2-f94d181200f7de5fe9f56c4075903482dda99bac.zip
Add define for ap_spawnvp. Dean removed obsolete symbols NO_OTHER_CHILD
and NO_RELIABLE_PIPED_LOGS. Submitted by: Ryan Bloom, Manoj Kasichainula git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83799 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/win32/os.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/win32/os.h b/os/win32/os.h
index 80ffd7e65e..4d07b0f74b 100644
--- a/os/win32/os.h
+++ b/os/win32/os.h
@@ -13,6 +13,9 @@
/* char *crypt(const char *pw, const char *salt); */
#define crypt(buf,salt) (buf)
+/* Use the Windows built-in spawnvp */
+#define ap_spawnvp(file, argv) (spawnvp(file, argv))
+
/* Although DIR_TYPE is dirent (see nt/readdir.h) we need direct.h for
chdir() */
#include <direct.h>
@@ -80,9 +83,6 @@ every configuration function as __stdcall.
#define NO_SLACK
#include <stddef.h>
-#define NO_OTHER_CHILD
-#define NO_RELIABLE_PIPED_LOGS
-
__inline int ap_os_is_path_absolute(const char *file)
{
/* For now, just do the same check that http_request.c and mod_alias.c