summaryrefslogtreecommitdiff
path: root/threadproc/os2
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2009-02-07 09:05:54 +0000
committerMladen Turk <mturk@apache.org>2009-02-07 09:05:54 +0000
commit04d8a606222a70a6d4bf8d81674ff2c0bb5a7841 (patch)
tree72195709836055ff4c591d5f9716fbe183e463e6 /threadproc/os2
parent05c0165b2bfec600e5d5de436b68afcba0a21278 (diff)
downloadapr-04d8a606222a70a6d4bf8d81674ff2c0bb5a7841.tar.gz
Add object perms set macros and implement them for shm and mutex
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@741862 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/os2')
-rw-r--r--threadproc/os2/proc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/threadproc/os2/proc.c b/threadproc/os2/proc.c
index 8e4a4a3b6..9fa94dde1 100644
--- a/threadproc/os2/proc.c
+++ b/threadproc/os2/proc.c
@@ -662,3 +662,11 @@ APR_DECLARE(apr_status_t) apr_procattr_group_set(apr_procattr_t *attr,
{
return APR_ENOTIMPL;
}
+
+APR_DECLARE(apr_status_t) apr_procattr_perms_set_register(apr_procattr_t *attr,
+ apr_perms_setfn_t *perms_set_fn,
+ void *data,
+ apr_fileperms_t perms)
+{
+ return APR_ENOTIMPL;
+}