summaryrefslogtreecommitdiff
path: root/threadproc/beos
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2005-01-16 07:30:46 +0000
committerMladen Turk <mturk@apache.org>2005-01-16 07:30:46 +0000
commit51e6bfa07f19854ff788623e772adaa166467a73 (patch)
tree0a9b23290364285a9658c3df99c4bfa3d929a60e /threadproc/beos
parent26271924f00509f9227ab0d55f60db6df2dd29eb (diff)
downloadapr-51e6bfa07f19854ff788623e772adaa166467a73.tar.gz
Added apr_procattr_user_set and apr_procattr_group_set to allow setting uid/gid for newly created processes using apr_proc_create.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@125349 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r--threadproc/beos/proc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/threadproc/beos/proc.c b/threadproc/beos/proc.c
index 71dd5a88f..9f1dd4cbb 100644
--- a/threadproc/beos/proc.c
+++ b/threadproc/beos/proc.c
@@ -403,3 +403,16 @@ APR_DECLARE(apr_status_t) apr_procattr_limit_set(apr_procattr_t *attr, apr_int32
{
return APR_ENOTIMPL;
}
+
+APR_DECLARE(apr_status_t) apr_procattr_user_set(apr_procattr_t *attr,
+ const char *username,
+ const char *password)
+{
+ return APR_ENOTIMPL;
+}
+
+APR_DECLARE(apr_status_t) apr_procattr_group_set(apr_procattr_t *attr,
+ const char *groupname)
+{
+ return APR_ENOTIMPL;
+}