mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
sys/posix: use '#max_field_align'
This commit is contained in:
+12
-18
@@ -64,28 +64,22 @@ when ODIN_OS == .Darwin {
|
|||||||
|
|
||||||
MSG_NOERROR :: 0o10000
|
MSG_NOERROR :: 0o10000
|
||||||
|
|
||||||
// NOTE: this is #pragma pack(4)
|
msqid_ds :: struct #max_field_align(4) {
|
||||||
|
msg_perm: ipc_perm, /* [PSX] operation permission structure */
|
||||||
msqid_ds :: struct #align(4) {
|
|
||||||
msg_perm: ipc_perm, /* [PSX] operation permission structure */
|
|
||||||
msg_first: c.int32_t,
|
msg_first: c.int32_t,
|
||||||
msg_last: c.int32_t,
|
msg_last: c.int32_t,
|
||||||
msg_cbytes: msglen_t,
|
msg_cbytes: msglen_t,
|
||||||
msg_qnum: msgqnum_t, /* [PSX] number of messages currently on queue */
|
msg_qnum: msgqnum_t, /* [PSX] number of messages currently on queue */
|
||||||
msg_qbytes: msglen_t, /* [PSX] maximum number of bytes allowed on queue */
|
msg_qbytes: msglen_t, /* [PSX] maximum number of bytes allowed on queue */
|
||||||
msg_lspid: pid_t, /* [PSX] process ID of last msgsnd() */
|
msg_lspid: pid_t, /* [PSX] process ID of last msgsnd() */
|
||||||
msg_lrpid: pid_t, /* [PSX] process ID of last msgrcv() */
|
msg_lrpid: pid_t, /* [PSX] process ID of last msgrcv() */
|
||||||
msg_stime: time_t, /* [PSX] time of last msgsnd() */
|
msg_stime: time_t, /* [PSX] time of last msgsnd() */
|
||||||
msg_pad1: c.int32_t,
|
msg_pad1: c.int32_t,
|
||||||
using _: struct #align(4) {
|
msg_rtime: time_t, /* [PSX] time of last msgrcv() */
|
||||||
msg_rtime: time_t, /* [PSX] time of last msgrcv() */
|
msg_pad2: c.int32_t,
|
||||||
msg_pad2: c.int32_t,
|
msg_ctime: time_t, /* [PSX] time of last change */
|
||||||
using _: struct #align(4) {
|
msg_pad3: c.int32_t,
|
||||||
msg_ctime: time_t, /* [PSX] time of last change */
|
msg_pad4: [4]c.int32_t,
|
||||||
msg_pad3: c.int32_t,
|
|
||||||
msg_pad4: [4]c.int32_t,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else when ODIN_OS == .FreeBSD {
|
} else when ODIN_OS == .FreeBSD {
|
||||||
|
|||||||
@@ -79,19 +79,15 @@ when ODIN_OS == .Darwin || ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD || ODIN_OS
|
|||||||
SETALL :: 9
|
SETALL :: 9
|
||||||
|
|
||||||
when ODIN_OS == .Darwin {
|
when ODIN_OS == .Darwin {
|
||||||
// NOTE: this is #pragma pack(4)
|
semid_ds :: struct #max_field_align(4) {
|
||||||
|
sem_perm: ipc_perm, /* [PSX] operation permission structure */
|
||||||
semid_ds :: struct #align(4) {
|
sem_base: c.int32_t, /* 32 bit base ptr for semaphore set */
|
||||||
sem_perm: ipc_perm, /* [PSX] operation permission structure */
|
sem_nsems: c.ushort, /* [PSX] number of semaphores in set */
|
||||||
sem_base: c.int32_t, /* 32 bit base ptr for semaphore set */
|
sem_otime: time_t, /* [PSX] last semop() */
|
||||||
sem_nsems: c.ushort, /* [PSX] number of semaphores in set */
|
|
||||||
sem_otime: time_t, /* [PSX] last semop() */
|
|
||||||
sem_pad1: c.int32_t,
|
sem_pad1: c.int32_t,
|
||||||
using _: struct #align(4) {
|
sem_ctime: time_t, /* [PSX] last time changed by semctl() */
|
||||||
sem_ctime: time_t, /* [PSX] last time changed by semctl() */
|
sem_pad2: c.int32_t,
|
||||||
sem_pad2: c.int32_t,
|
sem_pad3: [4]c.int32_t,
|
||||||
sem_pad3: [4]c.int32_t,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
} else when ODIN_OS == .FreeBSD {
|
} else when ODIN_OS == .FreeBSD {
|
||||||
semid_ds :: struct {
|
semid_ds :: struct {
|
||||||
|
|||||||
+10
-14
@@ -67,20 +67,16 @@ when ODIN_OS == .Darwin {
|
|||||||
|
|
||||||
shmatt_t :: distinct c.ushort
|
shmatt_t :: distinct c.ushort
|
||||||
|
|
||||||
// NOTE: this is #pragma pack(4)
|
shmid_ds :: struct #max_field_align(4) {
|
||||||
|
shm_perm: ipc_perm, /* [PSX] operation permission structure */
|
||||||
shmid_ds :: struct #align(4) {
|
shm_segsz: c.size_t, /* [PSX] size of segment in bytes */
|
||||||
shm_perm: ipc_perm, /* [PSX] operation permission structure */
|
shm_lpid: pid_t, /* [PSX] process ID of last shared memory operation */
|
||||||
shm_segsz: c.size_t, /* [PSX] size of segment in bytes */
|
shm_cpid: pid_t, /* [PSX] process ID of creator */
|
||||||
shm_lpid: pid_t, /* [PSX] process ID of last shared memory operation */
|
shm_nattch: shmatt_t, /* [PSX] number of current attaches */
|
||||||
shm_cpid: pid_t, /* [PSX] process ID of creator */
|
shm_atime: time_t, /* [PSX] time of last shmat() */
|
||||||
shm_nattch: shmatt_t, /* [PSX] number of current attaches */
|
shm_dtime: time_t, /* [PSX] time of last shmdt() */
|
||||||
using _: struct #align(4) {
|
shm_ctime: time_t, /* [PSX] time of last change by shmctl() */
|
||||||
shm_atime: time_t, /* [PSX] time of last shmat() */
|
shm_internal: rawptr,
|
||||||
shm_dtime: time_t, /* [PSX] time of last shmdt() */
|
|
||||||
shm_ctime: time_t, /* [PSX] time of last change by shmctl() */
|
|
||||||
shm_internal: rawptr,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else when ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD {
|
} else when ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD {
|
||||||
|
|||||||
Reference in New Issue
Block a user