mirror of
https://github.com/fluencelabs/musl
synced 2025-07-31 06:11:57 +00:00
add powerpc64 port
This commit is contained in:
committed by
Rich Felker
parent
6bc7d9c411
commit
c0ede9e404
13
arch/powerpc64/bits/sem.h
Normal file
13
arch/powerpc64/bits/sem.h
Normal 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];
|
||||
};
|
Reference in New Issue
Block a user