summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/setuid.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-02 18:10:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-08-02 18:10:10 +0000
commit4c782c26ac6112bcdee43ccdb0b3b2bf62ee63ac (patch)
tree92d4050d15a2cbfc38aebd0e44415896489edcac /cpukit/libcsupport/src/setuid.c
parentRename to final patch name. (diff)
downloadrtems-4c782c26ac6112bcdee43ccdb0b3b2bf62ee63ac.tar.bz2
2010-07-30 Bharath Suri <bharath.s.jois@gmail.com>
PR 1645/cpukit * libcsupport/src/getuid.c: Moved setuid() routine to its own file. * libcsupport/src/setuid.c: New file with setuid() routine. * libcsupport/src/seteuid.c: New file with seteuid() routine.
Diffstat (limited to 'cpukit/libcsupport/src/setuid.c')
-rw-r--r--cpukit/libcsupport/src/setuid.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/setuid.c b/cpukit/libcsupport/src/setuid.c
new file mode 100644
index 0000000000..bb4651dfae
--- /dev/null
+++ b/cpukit/libcsupport/src/setuid.c
@@ -0,0 +1,32 @@
+/*
+ * COPYRIGHT (c) 1989-2010.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <limits.h>
+#include <string.h>
+#include <sys/types.h>
+
+#include <rtems/userenv.h>
+
+/*
+ *
+ * 4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
+ */
+int setuid(
+ uid_t uid
+)
+{
+ _POSIX_types_Uid = uid;
+ return 0;
+}