Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sys/sys Pull up to HEAD 1.20, per Klaus Klein <kleink@i...



details:   https://anonhg.NetBSD.org/src/rev/c77b680ee3bd
branches:  netbsd-1-4
changeset: 468344:c77b680ee3bd
user:      cjs <cjs%NetBSD.org@localhost>
date:      Mon Apr 19 04:29:22 1999 +0000

description:
Pull up to HEAD 1.20, per Klaus Klein <kleink%ira.uka.de@localhost>.

diffstat:

 sys/sys/ipc.h |  17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)

diffs (31 lines):

diff -r 6ccf6abd545b -r c77b680ee3bd sys/sys/ipc.h
--- a/sys/sys/ipc.h     Mon Apr 19 04:25:33 1999 +0000
+++ b/sys/sys/ipc.h     Mon Apr 19 04:29:22 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ipc.h,v 1.18 1998/11/12 16:15:45 christos Exp $        */
+/*     $NetBSD: ipc.h,v 1.18.4.1 1999/04/19 04:29:22 cjs Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -52,13 +52,14 @@
 #define _SYS_IPC_H_
 
 struct ipc_perm {
-       ushort  cuid;   /* creator user id */
-       ushort  cgid;   /* creator group id */
-       ushort  uid;    /* user id */
-       ushort  gid;    /* group id */
-       ushort  mode;   /* r/w permission */
-       ushort  seq;    /* sequence # (to generate unique msg/sem/shm id) */
-       key_t   key;    /* user specified msg/sem/shm key */
+       unsigned short  cuid;   /* creator user id */
+       unsigned short  cgid;   /* creator group id */
+       unsigned short  uid;    /* user id */
+       unsigned short  gid;    /* group id */
+       unsigned short  mode;   /* r/w permission */
+       unsigned short  seq;    /* sequence # (to generate unique msg/sem/shm
+                                  id) */
+       key_t   key;            /* user specified msg/sem/shm key */
 };
 
 /* X/Open required constants (same values as system 5) */



Home | Main Index | Thread Index | Old Index