Sign in
cobalt
/
cobalt
/
e83fce97d7405b0b5e569d961aa431b1112ac6ac
/
.
/
src
/
third_party
/
musl
/
arch
/
powerpc64
/
bits
/
sem.h
blob: 558184dbcf8abeaa50ddb7f201016e2207cc36c9 [
file
] [
log
] [
blame
]
#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
];
};