Changeset eebecdc in mainline for kernel/generic/src/syscall/syscall.c
- Timestamp:
- 2025-03-13T18:30:36Z (4 months ago)
- Children:
- e3e53cc
- Parents:
- e494d7b (diff), da54714 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/syscall/syscall.c
re494d7b reebecdc 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2005 Martin Decky 3 4 * All rights reserved. … … 40 41 #include <proc/task.h> 41 42 #include <proc/program.h> 43 #include <main/shutdown.h> 42 44 #include <mm/as.h> 43 45 #include <mm/page.h> … … 59 61 /* System management syscalls. */ 60 62 [SYS_KIO] = (syshandler_t) sys_kio, 63 [SYS_REBOOT] = (syshandler_t) sys_reboot, 61 64 62 65 /* Thread and task related syscalls. */
Note:
See TracChangeset
for help on using the changeset viewer.