mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Update core/sys/linux/sys.odin
This commit is contained in:
@@ -225,7 +225,7 @@ rt_sigprocmask :: proc "contextless" (mask_kind: Sig_Mask_Kind, new_set: ^Sig_Se
|
|||||||
code value instead of a memory address depending on the request type.
|
code value instead of a memory address depending on the request type.
|
||||||
Available since Linux 1.0.
|
Available since Linux 1.0.
|
||||||
*/
|
*/
|
||||||
ioctl :: proc "contextless" (fd: Fd, request: i32, arg: uintptr) -> (uintptr) {
|
ioctl :: proc "contextless" (fd: Fd, request: u32, arg: uintptr) -> (uintptr) {
|
||||||
ret := syscall(SYS_ioctl, fd, request, arg)
|
ret := syscall(SYS_ioctl, fd, request, arg)
|
||||||
return uintptr(ret)
|
return uintptr(ret)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user