diff options
-rw-r--r-- | apps/wm/wm.c | 2 | ||||
-rw-r--r-- | kernel/drivers/fb.c | 15 | ||||
-rw-r--r-- | kernel/drivers/ps2/keyboard.c | 19 | ||||
-rw-r--r-- | kernel/drivers/ps2/mouse.c | 119 | ||||
-rw-r--r-- | kernel/drivers/ps2/ps2.c | 71 | ||||
-rw-r--r-- | kernel/drivers/rtc.c | 20 | ||||
-rw-r--r-- | kernel/drivers/timer.c | 35 | ||||
-rw-r--r-- | kernel/features/io.c | 43 | ||||
-rw-r--r-- | kernel/inc/io.h | 8 | ||||
-rw-r--r-- | kernel/inc/ps2.h | 9 | ||||
-rw-r--r-- | kernel/main.c | 8 | ||||
-rw-r--r-- | libs/libc/crt/crt0.c | 2 | ||||
-rw-r--r-- | libs/libc/inc/sys.h | 9 | ||||
-rw-r--r-- | libs/libc/sys.c | 29 |
14 files changed, 164 insertions, 225 deletions
diff --git a/apps/wm/wm.c b/apps/wm/wm.c index 9af1ede..b248bc2 100644 --- a/apps/wm/wm.c +++ b/apps/wm/wm.c @@ -494,7 +494,7 @@ int main(int argc, char **argv) atexit(handle_exit); - assert(ioctl("/dev/fb", 0, &screen) == 0); + assert(io_control(IO_FRAMEBUFFER, 0, &screen) == EOK); log("WM loaded: %dx%d\n", screen.width, screen.height); wm_client = (struct client){ .pid = getpid() }; bypp = (screen.bpp >> 3); diff --git a/kernel/drivers/fb.c b/kernel/drivers/fb.c index 1d266f7..c74bc28 100644 --- a/kernel/drivers/fb.c +++ b/kernel/drivers/fb.c @@ -5,7 +5,7 @@ #include <def.h> #include <errno.h> #include <fb.h> -#include <fs.h> +#include <io.h> #include <mem.h> #include <mm.h> #include <str.h> @@ -21,15 +21,13 @@ struct vbe_basic { u8 stuff3[212]; }; -PROTECTED static u32 dev_id = 0; PROTECTED static struct vid_info *info = NULL; static u32 fb_owner = 0; -static res fb_ioctl(u32 request, void *arg1, void *arg2, void *arg3, struct vfs_dev *dev) +static res fb_ioctl(u32 request, void *arg1, void *arg2, void *arg3) { UNUSED(arg2); UNUSED(arg3); - UNUSED(dev); switch (request) { case 0: { @@ -66,10 +64,7 @@ CLEAR void fb_install(struct vid_info *boot) { info = boot; - struct vfs_dev *dev = zalloc(sizeof(*dev)); - dev->name = strdup("fb"); - dev->type = DEV_CHAR; - dev->ioctl = fb_ioctl; - /* device_add(dev); */ - dev_id = dev->id; + struct io_dev *dev = zalloc(sizeof(*dev)); + dev->control = fb_ioctl; + io_add(IO_FRAMEBUFFER, dev); } diff --git a/kernel/drivers/ps2/keyboard.c b/kernel/drivers/ps2/keyboard.c index 9a19b5c..3c2cdbb 100644 --- a/kernel/drivers/ps2/keyboard.c +++ b/kernel/drivers/ps2/keyboard.c @@ -3,8 +3,8 @@ #include <cpu.h> #include <def.h> #include <errno.h> -#include <fs.h> #include <interrupts.h> +#include <io.h> #include <mem.h> #include <print.h> #include <proc.h> @@ -14,7 +14,6 @@ #include <sys.h> PROTECTED static struct stack *queue = NULL; -PROTECTED static u32 dev_id = 0; static struct event_keyboard *event = NULL; static int state = 0; @@ -46,9 +45,8 @@ static void keyboard_handler(struct regs *r) merged = 0; } -static res keyboard_read(void *buf, u32 offset, u32 count, struct vfs_dev *dev) +static res keyboard_read(void *buf, u32 offset, u32 count) { - UNUSED(dev); if (stack_empty(queue)) return -EINVAL; @@ -68,16 +66,15 @@ CLEAR void ps2_keyboard_reset(void) stack_clear(queue); } -CLEAR void ps2_keyboard_install(void) +CLEAR void ps2_keyboard_install(u8 device) { - //keyboard_rate(); TODO: Fix keyboard rate? + UNUSED(device); + irq_install_handler(1, keyboard_handler); queue = stack_new(); - struct vfs_dev *dev = zalloc(sizeof(*dev)); - dev->name = strdup("kbd"); - dev->type = DEV_CHAR; + struct io_dev *dev = zalloc(sizeof(*dev)); dev->read = keyboard_read; - /* device_add(dev); */ - dev_id = dev->id; + dev->ready = keyboard_ready; + io_add(IO_KEYBOARD, dev); } diff --git a/kernel/drivers/ps2/mouse.c b/kernel/drivers/ps2/mouse.c index 9b3fa2e..1d3c1ae 100644 --- a/kernel/drivers/ps2/mouse.c +++ b/kernel/drivers/ps2/mouse.c @@ -3,8 +3,8 @@ #include <boot.h> #include <cpu.h> #include <errno.h> -#include <fs.h> #include <interrupts.h> +#include <io.h> #include <mem.h> #include <print.h> #include <proc.h> @@ -14,7 +14,6 @@ #include <sys.h> PROTECTED static struct stack *queue = NULL; -PROTECTED static u32 dev_id = 0; static struct event_mouse *event = NULL; static char mouse_cycle = 0; @@ -52,46 +51,13 @@ static void mouse_handler(struct regs *r) } } -#define MOUSE_WAIT_OUT 0 -#define MOUSE_WAIT_IN 1 -CLEAR static void mouse_serial_wait(u8 in) -{ - u32 time_out = 100000; - if (in) { - while (time_out--) - if (ps2_read_status().in_full) - return; - return; - } else { - while (time_out--) - if (ps2_read_status().out_full) - return; - return; - } -} - -CLEAR static void mouse_serial_write(u8 data) -{ - mouse_serial_wait(MOUSE_WAIT_IN); - ps2_write_command(0xd4); - mouse_serial_wait(MOUSE_WAIT_IN); - ps2_write_data(data); -} - -CLEAR static u8 mouse_serial_read(void) -{ - mouse_serial_wait(MOUSE_WAIT_OUT); - return ps2_read_data(); -} - static res mouse_ready(void) { return !stack_empty(queue); } -static res mouse_read(void *buf, u32 offset, u32 count, struct vfs_dev *dev) +static res mouse_read(void *buf, u32 offset, u32 count) { - (void)dev; if (stack_empty(queue)) return -EINVAL; @@ -101,96 +67,33 @@ static res mouse_read(void *buf, u32 offset, u32 count, struct vfs_dev *dev) return MIN(count, sizeof(*e)); } -CLEAR void ps2_mouse_install(void) +CLEAR void ps2_mouse_install(u8 device) { u8 status; // Enable auxiliary mouse device - mouse_serial_wait(MOUSE_WAIT_IN); - ps2_write_command(0xa8); + ps2_write_device(device, 0xa8); // Enable interrupts - mouse_serial_wait(MOUSE_WAIT_IN); ps2_write_command(0x20); - mouse_serial_wait(MOUSE_WAIT_OUT); status = ps2_read_data() | 3; - mouse_serial_wait(MOUSE_WAIT_IN); ps2_write_command(0x60); - mouse_serial_wait(MOUSE_WAIT_IN); ps2_write_data(status); // Use default settings - mouse_serial_write(0xf6); - mouse_serial_read(); - - // Enable mousewheel - mouse_serial_write(0xf2); - mouse_serial_read(); - mouse_serial_read(); - mouse_serial_write(0xf3); - mouse_serial_read(); - mouse_serial_write(200); - mouse_serial_read(); - mouse_serial_write(0xf3); - mouse_serial_read(); - mouse_serial_write(100); - mouse_serial_read(); - mouse_serial_write(0xf3); - mouse_serial_read(); - mouse_serial_write(80); - mouse_serial_read(); - mouse_serial_write(0xf2); - mouse_serial_read(); - status = (u8)mouse_serial_read(); - if (status == 3) { - } - /* printf("Scrollwheel support!\n"); */ - - // Activate 4th and 5th mouse buttons - mouse_serial_write(0xf2); - mouse_serial_read(); - mouse_serial_read(); - mouse_serial_write(0xf3); - mouse_serial_read(); - mouse_serial_write(200); - mouse_serial_read(); - mouse_serial_write(0xf3); - mouse_serial_read(); - mouse_serial_write(200); - mouse_serial_read(); - mouse_serial_write(0xf3); - mouse_serial_read(); - mouse_serial_write(80); - mouse_serial_read(); - mouse_serial_write(0xf2); - mouse_serial_read(); - status = (u8)mouse_serial_read(); - if (status == 4) { - } - /* printf("4th and 5th mouse button support!\n"); */ - - /* TODO: Fix mouse laggyness - mouse_serial_write(0xE8); - mouse_serial_read(); - mouse_serial_write(0x03); - mouse_serial_read(); - mouse_serial_write(0xF3); - mouse_serial_read(); - mouse_serial_write(200); - mouse_serial_read(); */ + ps2_write_device(device, 0xf6); + ps2_read_data(); // Enable mouse - mouse_serial_write(0xf4); - mouse_serial_read(); + ps2_write_device(device, 0xf4); + ps2_read_data(); // Setup the mouse handler irq_install_handler(12, mouse_handler); queue = stack_new(); - struct vfs_dev *dev = zalloc(sizeof(*dev)); - dev->name = strdup("mouse"); - dev->type = DEV_CHAR; + struct io_dev *dev = zalloc(sizeof(*dev)); dev->read = mouse_read; - /* device_add(dev); */ - dev_id = dev->id; + dev->ready = mouse_ready; + io_add(IO_MOUSE, dev); } diff --git a/kernel/drivers/ps2/ps2.c b/kernel/drivers/ps2/ps2.c index 1c73855..7045fbe 100644 --- a/kernel/drivers/ps2/ps2.c +++ b/kernel/drivers/ps2/ps2.c @@ -86,6 +86,13 @@ CLEAR static u8 ps2_write_config(struct ps2_config config) #define PS2_TYPE_TRANSLATION_KEYBOARD2 0xabc1 #define PS2_TYPE_STANDARD_KEYBOARD 0xab83 +#define PS2_KEYBOARD(type) \ + ((type) == PS2_TYPE_TRANSLATION_KEYBOARD1 || (type) == PS2_TYPE_TRANSLATION_KEYBOARD2 || \ + (type) == PS2_TYPE_STANDARD_KEYBOARD) +#define PS2_MOUSE(type) \ + ((type) == PS2_TYPE_STANDARD_MOUSE || (type) == PS2_TYPE_WHEEL_MOUSE || \ + (type) == PS2_TYPE_BUTTON_MOUSE) + PROTECTED static struct { u8 detected : 1; struct { @@ -98,7 +105,7 @@ PROTECTED static struct { } second; } info = { 0 }; -CLEAR static u8 ps2_write_device(u8 device, u8 data) +CLEAR u8 ps2_write_device(u8 device, u8 data) { u8 resp = PS2_RESEND; for (u8 i = 0; resp == PS2_RESEND && i < 3; i++) { @@ -114,44 +121,62 @@ CLEAR static u8 ps2_write_device(u8 device, u8 data) return 1; } -CLEAR static u8 ps2_device_keyboard(u16 type) +CLEAR static u8 ps2_device_keyboard(void) { - return type == PS2_TYPE_TRANSLATION_KEYBOARD1 || type == PS2_TYPE_TRANSLATION_KEYBOARD2 || - type == PS2_TYPE_STANDARD_KEYBOARD; + if (!info.detected) + return U8_MAX; + + if (info.first.exists && PS2_KEYBOARD(info.first.type)) + return 0; + else if (info.second.exists && PS2_KEYBOARD(info.second.type)) + return 1; + + return U8_MAX; } -CLEAR static u8 ps2_device_mouse(u16 type) +CLEAR static u8 ps2_device_mouse(void) { - return type == PS2_TYPE_STANDARD_MOUSE || type == PS2_TYPE_WHEEL_MOUSE || - type == PS2_TYPE_BUTTON_MOUSE; + if (!info.detected) + return U8_MAX; + + if (info.first.exists && PS2_MOUSE(info.first.type)) + return 0; + else if (info.second.exists && PS2_MOUSE(info.second.type)) + return 1; + + return U8_MAX; } -CLEAR u8 ps2_keyboard_support(void) +CLEAR u8 ps2_keyboard_detect(void) { if (!info.detected) - return 0; + return U8_MAX; - // Find, reset and self-test - if ((info.first.exists && ps2_device_keyboard(info.first.type) && - ps2_write_device(0, 0xff)) || - (info.second.exists && ps2_device_keyboard(info.second.type) && - ps2_write_device(1, 0xff))) - return ps2_read_data() == 0xaa; + u8 device = ps2_device_keyboard(); + if (device == U8_MAX) + return device; - return 0; + ps2_write_device(device, 0xff); + if (ps2_read_data() == 0xaa) + return device; + + return U8_MAX; } -CLEAR u8 ps2_mouse_support(void) +CLEAR u8 ps2_mouse_detect(void) { if (!info.detected) - return 0; + return U8_MAX; - // Find, reset and self-test - if ((info.first.exists && ps2_device_mouse(info.first.type) && ps2_write_device(0, 0xff)) || - (info.second.exists && ps2_device_mouse(info.second.type) && ps2_write_device(1, 0xff))) - return ps2_read_data() == 0xaa; + u8 device = ps2_device_mouse(); + if (device == U8_MAX) + return device; - return 0; + ps2_write_device(device, 0xff); + if (ps2_read_data() == 0xaa) + return device; + + return U8_MAX; } CLEAR void ps2_detect(void) diff --git a/kernel/drivers/rtc.c b/kernel/drivers/rtc.c index a814fa9..01d65f4 100644 --- a/kernel/drivers/rtc.c +++ b/kernel/drivers/rtc.c @@ -69,23 +69,3 @@ u32 rtc_stamp(void) return timer_get() + rtc.second + rtc.minute * 60 + rtc.hour * 360 + rtc.day * 360 * 24 + rtc.year * 360 * 24 * 365; } - -static res rtc_dev_read(void *buf, u32 offset, u32 count, struct vfs_dev *dev) -{ - UNUSED(offset); - UNUSED(dev); - - u32 stamp = rtc_stamp(); - memcpy_user(buf, &stamp, MIN(count, sizeof(stamp))); - - return MIN(count, sizeof(stamp)); -} - -CLEAR void rtc_install(void) -{ - struct vfs_dev *dev = zalloc(sizeof(*dev)); - dev->name = strdup("rtc"); - dev->type = DEV_CHAR; - dev->read = rtc_dev_read; - /* device_add(dev); */ -} diff --git a/kernel/drivers/timer.c b/kernel/drivers/timer.c index 2a7ca2a..294df84 100644 --- a/kernel/drivers/timer.c +++ b/kernel/drivers/timer.c @@ -3,7 +3,10 @@ #include <cpu.h> #include <def.h> #include <interrupts.h> +#include <io.h> +#include <mem.h> #include <proc.h> +#include <rtc.h> #include <timer.h> static u32 timer_ticks = 0; @@ -42,15 +45,6 @@ void timer_wait(u32 ticks) } } -// Install timer handler into IRQ0 -CLEAR void timer_install(void) -{ - /* hpet_install(10000); // TODO: Find optimal femtosecond period */ - /* if (!hpet) */ - timer_phase(1000); - irq_install_handler(0, timer_handler); -} - CLEAR void scheduler_enable(void) { call_scheduler = 1; @@ -62,3 +56,26 @@ CLEAR void scheduler_disable(void) call_scheduler = 0; irq_install_handler(0, timer_handler); } + +static res timer_read(void *buf, u32 offset, u32 count) +{ + UNUSED(offset); + + u32 stamp = rtc_stamp(); + memcpy_user(buf, &stamp, MIN(count, sizeof(stamp))); + + return MIN(count, sizeof(stamp)); +} + +// Install timer handler into IRQ0 +CLEAR void timer_install(void) +{ + /* hpet_install(10000); // TODO: Find optimal femtosecond period */ + /* if (!hpet) */ + timer_phase(1000); + irq_install_handler(0, timer_handler); + + struct io_dev *dev = zalloc(sizeof(*dev)); + dev->read = timer_read; + io_add(IO_TIMER, dev); +} diff --git a/kernel/features/io.c b/kernel/features/io.c index 5d69b8e..b8275f9 100644 --- a/kernel/features/io.c +++ b/kernel/features/io.c @@ -2,12 +2,14 @@ #include <assert.h> #include <def.h> +#include <fb.h> #include <io.h> #include <list.h> #include <mm.h> #include <ps2.h> #include <rand.h> #include <str.h> +#include <timer.h> PROTECTED static struct io_dev *io_mappings[IO_MAX] = { 0 }; @@ -30,6 +32,19 @@ CLEAR void io_add(enum io_type io, struct io_dev *dev) io_mappings[io] = dev; } +res io_poll(u32 *devs) +{ + if (!memory_readable(devs)) + return -EFAULT; + + for (u32 *p = devs; p && memory_readable(p) && *p; p++) { + if (!io_get(*p)) + return -ENOENT; + } + + return -EFAULT; +} + res io_control(enum io_type io, u32 request, void *arg1, void *arg2, void *arg3) { struct io_dev *dev; @@ -63,28 +78,20 @@ res io_read(enum io_type io, void *buf, u32 offset, u32 count) return dev->read(buf, offset, count); } -res io_poll(u32 *devs) -{ - if (!memory_readable(devs)) - return -EFAULT; - - for (u32 *p = devs; p && memory_readable(p) && *p; p++) { - if (!io_get(*p)) - return -ENOENT; - } - - return -EFAULT; -} - -CLEAR void io_install(void) +CLEAR void io_install(struct boot_info *boot) { ps2_detect(); - if (ps2_keyboard_support()) { - print("KBD!\n"); + u8 ps2_keyboard = ps2_keyboard_detect(); + if (ps2_keyboard != U8_MAX) { + ps2_keyboard_install(ps2_keyboard); } - if (ps2_mouse_support()) { - print("MOUSE!\n"); + u8 ps2_mouse = ps2_mouse_detect(); + if (ps2_mouse != U8_MAX) { + ps2_mouse_install(ps2_mouse); } + + timer_install(); + fb_install(boot->vid); } diff --git a/kernel/inc/io.h b/kernel/inc/io.h index fc294f1..5176bd3 100644 --- a/kernel/inc/io.h +++ b/kernel/inc/io.h @@ -3,21 +3,23 @@ #ifndef DEV_H #define DEV_H +#include <boot.h> #include <def.h> #include <sys.h> struct io_dev { - const char *name; res (*read)(void *buf, u32 offset, u32 count) NONNULL; res (*write)(void *buf, u32 offset, u32 count) NONNULL; res (*control)(u32 request, void *arg1, void *arg2, void *arg3); + res (*ready)(void); }; -void io_install(void); +void io_install(struct boot_info *boot); +void io_add(enum io_type io, struct io_dev *dev) NONNULL; res io_control(enum io_type io, u32 request, void *arg1, void *arg2, void *arg3); res io_write(enum io_type io, void *buf, u32 offset, u32 count); res io_read(enum io_type io, void *buf, u32 offset, u32 count); -res io_poll(u32 *devs); +res io_poll(u32 *devs) NONNULL; #endif diff --git a/kernel/inc/ps2.h b/kernel/inc/ps2.h index fb923bf..42d8127 100644 --- a/kernel/inc/ps2.h +++ b/kernel/inc/ps2.h @@ -33,14 +33,15 @@ u8 ps2_read_data(void); u8 ps2_write_data(u8 byte); struct ps2_status ps2_read_status(void); u8 ps2_write_command(u8 byte); +u8 ps2_write_device(u8 device, u8 data); void ps2_detect(void); -u8 ps2_keyboard_support(void); -u8 ps2_mouse_support(void); +u8 ps2_keyboard_detect(void); +u8 ps2_mouse_detect(void); -void ps2_keyboard_install(void); +void ps2_keyboard_install(u8 device); void ps2_keyboard_reset(void); -void ps2_mouse_install(void); +void ps2_mouse_install(u8 device); #endif diff --git a/kernel/main.c b/kernel/main.c index 3b961f2..6cbc297 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -2,7 +2,6 @@ #include <boot.h> #include <cpu.h> -#include <fb.h> #include <fs.h> #include <ide.h> #include <interrupts.h> @@ -16,7 +15,6 @@ #include <rtc.h> #include <serial.h> #include <syscall.h> -#include <timer.h> PROTECTED extern u32 __stack_chk_guard; PROTECTED u32 __stack_chk_guard; @@ -49,11 +47,7 @@ int kernel_main(struct boot_info *boot) ata_install(); pci_install(); interrupts_install(); - timer_install(); - rtc_install(); - io_install(); - fb_install(boot->vid); - /* net_install(); */ + io_install(boot); // Enable drivers sti(); diff --git a/libs/libc/crt/crt0.c b/libs/libc/crt/crt0.c index 03e569c..3ab7ed4 100644 --- a/libs/libc/crt/crt0.c +++ b/libs/libc/crt/crt0.c @@ -16,7 +16,7 @@ int _start(int argc, char **argv); int _start(int argc, char **argv) { u32 stamp = 0; - assert(read("/dev/rtc", &stamp, 0, sizeof(stamp)) == sizeof(stamp) && stamp); + assert(io_read(IO_TIMER, &stamp, 0, sizeof(stamp)) == sizeof(stamp) && stamp); srand(stamp); __stack_chk_guard = rand(); diff --git a/libs/libc/inc/sys.h b/libs/libc/inc/sys.h index c181a64..ee82946 100644 --- a/libs/libc/inc/sys.h +++ b/libs/libc/inc/sys.h @@ -18,14 +18,14 @@ enum sys { SYS_ALLOC, // Allocate memory SYS_SHACCESS, // Access shared memory SYS_FREE, // Free memory - SYS_STAT, // Get file information SYS_READ, // Read file (non-blocking) SYS_WRITE, // Write to file + SYS_STAT, // Get file information + SYS_EXEC, // Execute path SYS_IOPOLL, // Block proc until I/O device is ready SYS_IOREAD, // Read data from I/O device (blocking) SYS_IOWRITE, // Write data to I/O device SYS_IOCONTROL, // Interact with an I/O device - SYS_EXEC, // Execute path SYS_EXIT, // Exit current process SYS_BOOT, // Boot functions (e.g. reboot/shutdown) SYS_YIELD, // Switch to next process @@ -79,9 +79,12 @@ struct stat { void exit(s32 status) NORETURN; res read(const char *path, void *buf, u32 offset, u32 count) NONNULL; res write(const char *path, const void *buf, u32 offset, u32 count) NONNULL; -res ioctl(const char *path, ...) NONNULL; res stat(const char *path, struct stat *buf) NONNULL; res exec(const char *path, ...) ATTR((nonnull(1))) SENTINEL; +res io_poll(u32 *devs); +res io_read(enum io_type io, void *buf, u32 offset, u32 count); +res io_write(enum io_type io, void *buf, u32 offset, u32 count); +res io_control(enum io_type io, ...); res yield(void); res boot(u32 cmd); diff --git a/libs/libc/sys.c b/libs/libc/sys.c index ce90fed..3161d72 100644 --- a/libs/libc/sys.c +++ b/libs/libc/sys.c @@ -110,7 +110,12 @@ res write(const char *path, const void *buf, u32 offset, u32 count) return sys4(SYS_WRITE, (int)path, (int)buf, (int)offset, (int)count); } -res ioctl(const char *path, ...) +res stat(const char *path, struct stat *buf) +{ + return sys2(SYS_STAT, (int)path, (int)buf); +} + +res exec(const char *path, ...) { va_list ap; int args[4] = { 0 }; @@ -120,25 +125,35 @@ res ioctl(const char *path, ...) args[i] = va_arg(ap, int); va_end(ap); - return sys5(SYS_IOCONTROL, (int)path, args[0], args[1], args[2], args[3]); + return sys5(SYS_EXEC, (int)path, args[0], args[1], args[2], args[3]); } -res stat(const char *path, struct stat *buf) +res io_poll(u32 *devs) { - return sys2(SYS_STAT, (int)path, (int)buf); + return sys1(SYS_IOPOLL, (int)devs); } -res exec(const char *path, ...) +res io_read(enum io_type io, void *buf, u32 offset, u32 count) +{ + return sys4(SYS_IOREAD, (int)io, (int)buf, (int)offset, (int)count); +} + +res io_write(enum io_type io, void *buf, u32 offset, u32 count) +{ + return sys4(SYS_IOWRITE, (int)io, (int)buf, (int)offset, (int)count); +} + +res io_control(enum io_type io, ...) { va_list ap; int args[4] = { 0 }; - va_start(ap, path); + va_start(ap, io); for (int i = 0; i < 4; i++) args[i] = va_arg(ap, int); va_end(ap); - return sys5(SYS_EXEC, (int)path, args[0], args[1], args[2], args[3]); + return sys5(SYS_IOCONTROL, (int)io, args[0], args[1], args[2], args[3]); } res yield(void) |