mirror of
https://github.com/fluencelabs/musl
synced 2025-05-02 02:22:15 +00:00
msg.h was wrong for big-endian (wrong endiannness padding). shm.h was just plain wrong (mips is not supposed to have padding). both changes were tested using libc-test on qemu-system-mips.
16 lines
252 B
C
16 lines
252 B
C
#define SHMLBA 4096
|
|
|
|
struct shmid_ds
|
|
{
|
|
struct ipc_perm shm_perm;
|
|
size_t shm_segsz;
|
|
time_t shm_atime;
|
|
time_t shm_dtime;
|
|
time_t shm_ctime;
|
|
pid_t shm_cpid;
|
|
pid_t shm_lpid;
|
|
unsigned long shm_nattch;
|
|
unsigned long __pad1;
|
|
unsigned long __pad2;
|
|
};
|