summaryrefslogtreecommitdiff
path: root/include/apr_lib.h
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-07-21 21:06:25 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-07-21 21:06:25 +0000
commitb8869153589a4e835dd702fb543441a47b198217 (patch)
tree8b97345d06bcd4c58ea21d55f159bfb6fe85ef96 /include/apr_lib.h
parentd9f7abfa610fc50fa8484e215ee8e4c3a7cb393c (diff)
downloadlibapr-b8869153589a4e835dd702fb543441a47b198217.tar.gz
Remove all of the ap_exec* functions. Nobody is currently using these
functions, and since we don't really have a fork function in APR, I'm not sure having exec functions makes sense. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60402 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_lib.h')
-rw-r--r--include/apr_lib.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/apr_lib.h b/include/apr_lib.h
index 2b5ef99d9..f3b9c0ea9 100644
--- a/include/apr_lib.h
+++ b/include/apr_lib.h
@@ -104,36 +104,6 @@ B<NOTE>: Examples: "/foo/bar/gum" -> "gum"
*/
APR_EXPORT(const char *) ap_filename_of_pathname(const char *pathname);
-/*
-
-=head1 ap_status_t ap_execle(const char *c, const char *a, ...)
-
-B<Replace the current process image with a new process>
-
- arg 1) The path to the new program to run
- arg 2) The first argument for the new program
- ...) The rest of the arguments for the new program.
-
-=cut
- */
-APR_EXPORT_NONSTD(ap_status_t) ap_execle(const char *c, const char *a, ...);
-
-/*
-
-=head1 ap_status_t ap_execve(const char *c, const char *aargv[], const char *envp[])
-
-B<Replace the current process image with a new process>
-
- arg 1) The path to the new program to run
- arg 2) The arguments for the new program in an array of char *.
- arg 3) The environment for the new program in an array of char * of the
- form key=value
-
-=cut
- */
-APR_EXPORT_NONSTD(ap_status_t) ap_execve(const char *c, const char *argv[],
- const char *envp[]);
-
/* These macros allow correct support of 8-bit characters on systems which
* support 8-bit characters. Pretty dumb how the cast is required, but
* that's legacy libc for ya. These new macros do not support EOF like