diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-18 00:24:27 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-18 00:24:27 +0000 |
commit | b9558d5f86c471a125abf1fb3a3882fb053b1f8c (patch) | |
tree | 707b53ec64e740a7da87d5f36485e3cd9b1c794e /include/linux/highuid.h | |
parent | b3ac367c7a3e6047abe74817db27e34e759f279f (diff) |
Merge with Linux 2.3.41.
Diffstat (limited to 'include/linux/highuid.h')
-rw-r--r-- | include/linux/highuid.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/highuid.h b/include/linux/highuid.h index 40f121ca7..5d287bbb3 100644 --- a/include/linux/highuid.h +++ b/include/linux/highuid.h @@ -63,13 +63,6 @@ extern int overflowgid; #define SET_STAT_UID(stat, uid) (stat).st_uid = high2lowuid(uid) #define SET_STAT_GID(stat, gid) (stat).st_gid = high2lowgid(gid) -/* specific to kernel/signal.c */ -#ifdef UID16_SIGINFO_COMPAT_NEEDED -#define SET_SIGINFO_UID16(var, uid) var = high2lowuid(uid) -#else -#define SET_SIGINFO_UID16(var, uid) do { ; } while (0) -#endif - #else #define SET_UID16(var, uid) do { ; } while (0) @@ -82,8 +75,6 @@ extern int overflowgid; #define SET_STAT_UID(stat, uid) (stat).st_uid = uid #define SET_STAT_GID(stat, gid) (stat).st_gid = gid -#define SET_SIGINFO_UID16(var, uid) do { ; } while (0) - #endif /* CONFIG_UID16 */ |