about summary refs log tree commit diff
path: root/arch/riscv32/bits/sem.h
Commit message (Collapse)AuthorAgeFilesLines
* riscv32: add sysvipc msg/sem/shm bitsRich Felker2024-02-291-0/+18
despite riscv32 being natively time64, the IPC_TIME64 bit (0x100) is set in IPC_STAT and derived command macros, differentiating their values from the raw command values used to interface with the kernel. this reflects that the kernel ipc structure types are not natively time64, but have broken-down hi/lo fields that cannot be used in-place and require translation, and that the userspace struct types differ from the kernel types (relevant to things like strace).