mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 12:14:42 +00:00
aacd348637
linux, gcc, etc. all use "sh" as the name for the superh arch. there was already some inconsistency internally in musl: the dynamic linker was searching for "ld-musl-sh.path" as its path file despite its own name being "ld-musl-superh.so.1". there was some sentiment in both directions as to how to resolve the inconsistency, but overall "sh" was favored.
17 lines
287 B
C
17 lines
287 B
C
struct msqid_ds
|
|
{
|
|
struct ipc_perm msg_perm;
|
|
time_t msg_stime;
|
|
int __unused1;
|
|
time_t msg_rtime;
|
|
int __unused2;
|
|
time_t msg_ctime;
|
|
int __unused3;
|
|
unsigned long msg_cbytes;
|
|
msgqnum_t msg_qnum;
|
|
msglen_t msg_qbytes;
|
|
pid_t msg_lspid;
|
|
pid_t msg_lrpid;
|
|
unsigned long __unused[2];
|
|
};
|