2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <lib.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
gid_t getegid(void)
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
2011-02-17 18:11:09 +01:00
|
|
|
/* POSIX says that this function is always successful and that no
|
|
|
|
* return value is reserved to indicate an error. Minix syscalls
|
|
|
|
* are not always successful and Minix returns the unreserved value
|
|
|
|
* (gid_t) -1 when there is an error.
|
|
|
|
*/
|
2013-11-04 22:48:08 +01:00
|
|
|
if (_syscall(PM_PROC_NR, PM_GETGID, &m) < 0) return ( (gid_t) -1);
|
|
|
|
return( (gid_t) m.PM_GETGID_EGID);
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|