diff options
Diffstat (limited to 'arch/or1k/bits/sem.h')
-rw-r--r-- | arch/or1k/bits/sem.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/or1k/bits/sem.h b/arch/or1k/bits/sem.h new file mode 100644 index 00000000..0d916484 --- /dev/null +++ b/arch/or1k/bits/sem.h @@ -0,0 +1,11 @@ +struct semid_ds { + struct ipc_perm sem_perm; + time_t sem_otime; + time_t __unused1; + time_t sem_ctime; + time_t __unused2; + char __sem_nsems_pad[sizeof(time_t)-sizeof(short)]; + unsigned short sem_nsems; + time_t __unused3; + time_t __unused4; +}; |