|
@@ -216,7 +216,17 @@ rt_sigprocmask :: proc "contextless" (mask_kind: Sig_Mask_Kind, new_set: ^Sig_Se
|
|
|
return Errno(-ret)
|
|
|
}
|
|
|
|
|
|
-// TODO(flysand): ioctl
|
|
|
+/*
|
|
|
+ Control devices. The ioctl syscall is a bit special because
|
|
|
+ its argument is usually a pointer to some driver-specific structure.
|
|
|
+ The request value is device-specific. Consult your LibC implementation's
|
|
|
+ ioctls.h file to learn more.
|
|
|
+ Available since Linux 1.0.
|
|
|
+*/
|
|
|
+ioctl :: proc "contextless" (fd: Fd, request: u64, arg: u64) -> (Errno) {
|
|
|
+ ret := syscall(SYS_ioctl, fd, request, arg)
|
|
|
+ return Errno(-ret)
|
|
|
+}
|
|
|
|
|
|
/*
|
|
|
Read the file at a specified offset.
|