diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2016-07-05 22:53:32 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-07-06 00:21:19 -0400 |
commit | e1679ef1a1b7658dc7f8c9c97aeac7c7597c66a0 (patch) | |
tree | b541fd583aafddbcc1df47f14bd07f1aaceb3d88 /arch/or1k/bits | |
parent | faf69b9a73d09fafcbe4fd3007b8d8724293d8e1 (diff) | |
download | musl-e1679ef1a1b7658dc7f8c9c97aeac7c7597c66a0.tar.gz musl-e1679ef1a1b7658dc7f8c9c97aeac7c7597c66a0.tar.xz musl-e1679ef1a1b7658dc7f8c9c97aeac7c7597c66a0.zip |
remove or1k version of sem.h
It's identical to the generic version, after evaluating the endian preprocessor checks in the generic version.
Diffstat (limited to 'arch/or1k/bits')
-rw-r--r-- | arch/or1k/bits/sem.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/or1k/bits/sem.h b/arch/or1k/bits/sem.h deleted file mode 100644 index 0d916484..00000000 --- a/arch/or1k/bits/sem.h +++ /dev/null @@ -1,11 +0,0 @@ -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; -}; |