add powerpc64 port

This commit is contained in:
Bobby Bingham
2016-04-30 19:18:17 -05:00
committed by Rich Felker
parent 6bc7d9c411
commit c0ede9e404
42 changed files with 2342 additions and 1 deletions

13
arch/powerpc64/bits/sem.h Normal file
View File

@@ -0,0 +1,13 @@
#include <endian.h>
struct semid_ds {
struct ipc_perm sem_perm;
time_t sem_otime;
time_t sem_ctime;
#if __BYTE_ORDER == __BIG_ENDIAN
unsigned short __pad[3], sem_nsems;
#else
unsigned short sem_nsems, __pad[3];
#endif
unsigned long __unused[2];
};