Changeset View
Changeset View
Standalone View
Standalone View
sys/tools/syscalls/core/syscall.lua
| Show All 25 Lines | syscall.known_flags = util.set { | ||||
| "NOSTD", | "NOSTD", | ||||
| -- flags beyond this point are modifiers | -- flags beyond this point are modifiers | ||||
| "CAPENABLED", | "CAPENABLED", | ||||
| "NOLIB", | "NOLIB", | ||||
| "NORETURN", | "NORETURN", | ||||
| "NOTSTATIC", | "NOTSTATIC", | ||||
| "SYSMUX", | "SYSMUX", | ||||
| "INTR" | |||||
| } | } | ||||
| -- Native is an arbitrarily large number to have a constant and not | -- Native is an arbitrarily large number to have a constant and not | ||||
| -- interfere with compat numbers. | -- interfere with compat numbers. | ||||
| local native = 1000000 | local native = 1000000 | ||||
| -- Processes and assigns the appropriate thread flag for this system call. | -- Processes and assigns the appropriate thread flag for this system call. | ||||
| function syscall:processThr() | function syscall:processThr() | ||||
| ▲ Show 20 Lines • Show All 454 Lines • Show Last 20 Lines | |||||