mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 19:55:38 +00:00
07e865cc5a
some of these definitions were just plain wrong, others based on outdated ancient "non-64" versions of the kernel interface. as much as possible has now been moved out of bits/* these changes break abi (the old abi for these functions was wrong), but since they were not working anyway it can hardly matter.
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;
|
|
};
|