<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2010-08-02)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>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.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2539&r2=text&tr2=1.2540&diff_format=h">M</a></td><td width='1%'>1.2540</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/Makefile.am.diff?r1=text&tr1=1.128&r2=text&tr2=1.129&diff_format=h">M</a></td><td width='1%'>1.129</td><td width='100%'>cpukit/libcsupport/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/getuid.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libcsupport/src/getuid.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/seteuid.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">cpukit/libcsupport/src/seteuid.c</font></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/setuid.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">cpukit/libcsupport/src/setuid.c</font></td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2539 rtems/cpukit/ChangeLog:1.2540
--- rtems/cpukit/ChangeLog:1.2539       Fri Jul 30 17:36:31 2010
+++ rtems/cpukit/ChangeLog      Mon Aug  2 13:08:01 2010
</font><font color='#997700'>@@ -1,3 +1,11 @@
</font><font color='#000088'>+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.
+
</font> 2010-07-30        Joel Sherrill <joel.sherrill@oarcorp.com>
 
        * libcsupport/src/fstat.c, libcsupport/src/rmdir.c,

<font color='#006600'>diff -u rtems/cpukit/libcsupport/Makefile.am:1.128 rtems/cpukit/libcsupport/Makefile.am:1.129
--- rtems/cpukit/libcsupport/Makefile.am:1.128  Sat Jul 24 11:12:49 2010
+++ rtems/cpukit/libcsupport/Makefile.am        Mon Aug  2 13:10:10 2010
</font><font color='#997700'>@@ -85,7 +85,7 @@
</font> 
 ID_C_FILES = src/getegid.c src/geteuid.c src/getgid.c src/getgroups.c \
     src/getlogin.c src/getpgrp.c src/getpid.c src/getppid.c src/getuid.c \
<font color='#880000'>-    src/setpgid.c src/setsid.c
</font><font color='#000088'>+    src/setuid.c src/seteuid.c src/setpgid.c src/setsid.c
</font> 
 MALLOC_C_FILES = src/malloc_initialize.c src/calloc.c src/malloc.c \
     src/realloc.c src/_calloc_r.c src/_malloc_r.c \

<font color='#006600'>diff -u rtems/cpukit/libcsupport/src/getuid.c:1.2 rtems/cpukit/libcsupport/src/getuid.c:1.3
--- rtems/cpukit/libcsupport/src/getuid.c:1.2   Sun Apr 18 01:05:34 2004
+++ rtems/cpukit/libcsupport/src/getuid.c       Mon Aug  2 13:08:02 2010
</font><font color='#997700'>@@ -1,4 +1,11 @@
</font> /*
<font color='#000088'>+ *  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.
+ *
</font>  *  $Id$
  */
 
<font color='#997700'>@@ -10,38 +17,14 @@
</font> #include <string.h>
 #include <sys/types.h>
 
<font color='#880000'>-#include <rtems/system.h>
-#include <rtems/score/object.h>
-#include <rtems/seterr.h>
-
</font> #include <rtems/userenv.h>
 
 /*
<font color='#880000'>- * MACRO in userenv.h
- *
-uid_t _POSIX_types_Uid = 0;
-*/
-
-/*PAGE
- *
</font>  *  4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
  *        P1003.1b-1993, p. 84
  */
<font color='#880000'>-
</font> uid_t getuid( void )
 {
   return _POSIX_types_Uid;
 }
 
<font color='#880000'>-/*PAGE
- *
- *  4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
- */
-
-int setuid(
-  uid_t  uid
-)
-{
-  _POSIX_types_Uid = uid;
-  return 0;
-}
</font>
<font color='#006600'>diff -u /dev/null rtems/cpukit/libcsupport/src/seteuid.c:1.1
--- /dev/null   Mon Aug  2 13:11:08 2010
+++ rtems/cpukit/libcsupport/src/seteuid.c      Mon Aug  2 13:08:02 2010
</font><font color='#997700'>@@ -0,0 +1,26 @@
</font><font color='#000088'>+/*
+ *  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>
+
+int seteuid( uid_t euid )
+{
+  _POSIX_types_Euid = euid;
+  return 0;
+}
</font>
<font color='#006600'>diff -u /dev/null rtems/cpukit/libcsupport/src/setuid.c:1.1
--- /dev/null   Mon Aug  2 13:11:08 2010
+++ rtems/cpukit/libcsupport/src/setuid.c       Mon Aug  2 13:08:02 2010
</font><font color='#997700'>@@ -0,0 +1,32 @@
</font><font color='#000088'>+/*
+ *  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;
+}
</font></pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>