mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 03:35:06 +00:00
01ef3dd9c5
This adds complete aarch64 target support including bigendian subarch. Some of the long double math functions are known to be broken otherwise interfaces should be fully functional, but at this point consider this port experimental. Initial work on this port was done by Sireesh Tripurari and Kevin Bortis.
15 lines
257 B
C
15 lines
257 B
C
struct msqid_ds
|
|
{
|
|
struct ipc_perm msg_perm;
|
|
time_t msg_stime;
|
|
time_t msg_rtime;
|
|
time_t msg_ctime;
|
|
unsigned long msg_cbytes;
|
|
msgqnum_t msg_qnum;
|
|
msglen_t msg_qbytes;
|
|
pid_t msg_lspid;
|
|
pid_t msg_lrpid;
|
|
unsigned long __pad1;
|
|
unsigned long __pad2;
|
|
};
|