mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
Update Linux syscall list for 6.1, support Mips64
Follow up for #14541.
This commit is contained in:
parent
289e8fab79
commit
d4ce0fe7fe
@ -2057,7 +2057,7 @@ pub const Mips64 = enum(usize) {
|
|||||||
writev = Linux + 19,
|
writev = Linux + 19,
|
||||||
access = Linux + 20,
|
access = Linux + 20,
|
||||||
pipe = Linux + 21,
|
pipe = Linux + 21,
|
||||||
select = Linux + 22,
|
_newselect = Linux + 22,
|
||||||
sched_yield = Linux + 23,
|
sched_yield = Linux + 23,
|
||||||
mremap = Linux + 24,
|
mremap = Linux + 24,
|
||||||
msync = Linux + 25,
|
msync = Linux + 25,
|
||||||
@ -2071,8 +2071,8 @@ pub const Mips64 = enum(usize) {
|
|||||||
pause = Linux + 33,
|
pause = Linux + 33,
|
||||||
nanosleep = Linux + 34,
|
nanosleep = Linux + 34,
|
||||||
getitimer = Linux + 35,
|
getitimer = Linux + 35,
|
||||||
alarm = Linux + 36,
|
setitimer = Linux + 36,
|
||||||
setitimer = Linux + 37,
|
alarm = Linux + 37,
|
||||||
getpid = Linux + 38,
|
getpid = Linux + 38,
|
||||||
sendfile = Linux + 39,
|
sendfile = Linux + 39,
|
||||||
socket = Linux + 40,
|
socket = Linux + 40,
|
||||||
@ -2286,7 +2286,7 @@ pub const Mips64 = enum(usize) {
|
|||||||
mknodat = Linux + 249,
|
mknodat = Linux + 249,
|
||||||
fchownat = Linux + 250,
|
fchownat = Linux + 250,
|
||||||
futimesat = Linux + 251,
|
futimesat = Linux + 251,
|
||||||
newfstatat = Linux + 252,
|
fstatat64 = Linux + 252,
|
||||||
unlinkat = Linux + 253,
|
unlinkat = Linux + 253,
|
||||||
renameat = Linux + 254,
|
renameat = Linux + 254,
|
||||||
linkat = Linux + 255,
|
linkat = Linux + 255,
|
||||||
@ -2315,8 +2315,8 @@ pub const Mips64 = enum(usize) {
|
|||||||
eventfd = Linux + 278,
|
eventfd = Linux + 278,
|
||||||
fallocate = Linux + 279,
|
fallocate = Linux + 279,
|
||||||
timerfd_create = Linux + 280,
|
timerfd_create = Linux + 280,
|
||||||
timerfd_settime = Linux + 281,
|
timerfd_gettime = Linux + 281,
|
||||||
timerfd_gettime = Linux + 282,
|
timerfd_settime = Linux + 282,
|
||||||
signalfd4 = Linux + 283,
|
signalfd4 = Linux + 283,
|
||||||
eventfd2 = Linux + 284,
|
eventfd2 = Linux + 284,
|
||||||
epoll_create1 = Linux + 285,
|
epoll_create1 = Linux + 285,
|
||||||
@ -2382,9 +2382,13 @@ pub const Mips64 = enum(usize) {
|
|||||||
process_madvise = Linux + 440,
|
process_madvise = Linux + 440,
|
||||||
epoll_pwait2 = Linux + 441,
|
epoll_pwait2 = Linux + 441,
|
||||||
mount_setattr = Linux + 442,
|
mount_setattr = Linux + 442,
|
||||||
|
quotactl_fd = Linux + 443,
|
||||||
landlock_create_ruleset = Linux + 444,
|
landlock_create_ruleset = Linux + 444,
|
||||||
landlock_add_rule = Linux + 445,
|
landlock_add_rule = Linux + 445,
|
||||||
landlock_restrict_self = Linux + 446,
|
landlock_restrict_self = Linux + 446,
|
||||||
|
process_mrelease = Linux + 448,
|
||||||
|
futex_waitv = Linux + 449,
|
||||||
|
set_mempolicy_home_node = Linux + 450,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const PowerPC = enum(usize) {
|
pub const PowerPC = enum(usize) {
|
||||||
|
|||||||
@ -167,6 +167,31 @@ pub fn main() !void {
|
|||||||
|
|
||||||
try writer.writeAll("};\n\n");
|
try writer.writeAll("};\n\n");
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
try writer.writeAll(
|
||||||
|
\\pub const Mips64 = enum(usize) {
|
||||||
|
\\ pub const Linux = 5000;
|
||||||
|
\\
|
||||||
|
\\
|
||||||
|
);
|
||||||
|
|
||||||
|
const table = try linux_dir.readFile("arch/mips/kernel/syscalls/syscall_n64.tbl", buf);
|
||||||
|
var lines = mem.tokenize(u8, table, "\n");
|
||||||
|
while (lines.next()) |line| {
|
||||||
|
if (line[0] == '#') continue;
|
||||||
|
|
||||||
|
var fields = mem.tokenize(u8, line, " \t");
|
||||||
|
const number = fields.next() orelse return error.Incomplete;
|
||||||
|
// abi is always n64
|
||||||
|
_ = fields.next() orelse return error.Incomplete;
|
||||||
|
const name = fields.next() orelse return error.Incomplete;
|
||||||
|
const fixed_name = if (stdlib_renames.get(name)) |fixed| fixed else name;
|
||||||
|
|
||||||
|
try writer.print(" {s} = Linux + {s},\n", .{ zig.fmtId(fixed_name), number });
|
||||||
|
}
|
||||||
|
|
||||||
|
try writer.writeAll("};\n\n");
|
||||||
|
}
|
||||||
{
|
{
|
||||||
try writer.writeAll("pub const PowerPC = enum(usize) {\n");
|
try writer.writeAll("pub const PowerPC = enum(usize) {\n");
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user