Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F107213113
D26530.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
D26530.diff
View Options
Index: head/sys/tools/makesyscalls.lua
===================================================================
--- head/sys/tools/makesyscalls.lua
+++ head/sys/tools/makesyscalls.lua
@@ -740,12 +740,14 @@
config['syscallprefix'], funcalias, auditev))
end
- write_line("sysent", string.format("\t{ %s, (sy_call_t *)", argssize))
+ write_line("sysent",
+ string.format("\t{ .sy_narg = %s, .sy_call = (sy_call_t *)", argssize))
local column = 8 + 2 + #argssize + 15
if flags & known_flags["NOSTD"] ~= 0 then
write_line("sysent", string.format(
- "lkmressys, AUE_NULL, NULL, 0, 0, %s, SY_THR_ABSENT },",
+ "lkmressys, .sy_auevent = AUE_NULL, " ..
+ ".sy_flags = %s, .sy_thrcnt = SY_THR_ABSENT },",
sysflags))
column = column + #"lkmressys" + #"AUE_NULL" + 3
else
@@ -754,12 +756,12 @@
funcname:find("^linux") or
funcname:find("^cloudabi") then
write_line("sysent", string.format(
- "%s, %s, NULL, 0, 0, %s, %s },",
+ "%s, .sy_auevent = %s, .sy_flags = %s, .sy_thrcnt = %s },",
funcname, auditev, sysflags, thr_flag))
column = column + #funcname + #auditev + #sysflags + 3
else
write_line("sysent", string.format(
- "sys_%s, %s, NULL, 0, 0, %s, %s },",
+ "sys_%s, .sy_auevent = %s, .sy_flags = %s, .sy_thrcnt = %s },",
funcname, auditev, sysflags, thr_flag))
column = column + #funcname + #auditev + #sysflags + 7
end
@@ -781,7 +783,8 @@
local function handle_obsol(sysnum, funcname, comment)
write_line("sysent",
- "\t{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT },")
+ "\t{ .sy_narg = 0, .sy_call = (sy_call_t *)nosys, " ..
+ ".sy_auevent = AUE_NULL, .sy_flags = 0, .sy_thrcnt = SY_THR_ABSENT },")
align_sysent_comment(34)
write_line("sysent", string.format("/* %d = obsolete %s */\n",
@@ -849,13 +852,15 @@
if flags & known_flags['NOSTD'] ~= 0 then
write_line("sysent", string.format(
- "\t{ %s, (sy_call_t *)%s, %s, NULL, 0, 0, 0, SY_THR_ABSENT },",
+ "\t{ .sy_narg = %s, .sy_call = (sy_call_t *)%s, " ..
+ ".sy_auevent = %s, .sy_flags = 0, " ..
+ ".sy_thrcnt = SY_THR_ABSENT },",
"0", "lkmressys", "AUE_NULL"))
align_sysent_comment(8 + 2 + #"0" + 15 + #"lkmressys" +
#"AUE_NULL" + 3)
else
write_line("sysent", string.format(
- "\t{ %s(%s,%s), %s, NULL, 0, 0, %s, %s },",
+ "\t{ %s(%s,%s), .sy_auevent = %s, .sy_flags = %s, .sy_thrcnt = %s },",
wrap, argssize, funcname, auditev, sysflags, thr_flag))
align_sysent_comment(8 + 9 + #argssize + 1 + #funcname +
#auditev + #sysflags + 4)
@@ -889,7 +894,9 @@
sysnum = sysstart
while sysnum <= sysend do
write_line("sysent", string.format(
- "\t{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT },\t\t\t/* %d = %s */\n",
+ "\t{ .sy_narg = 0, .sy_call = (sy_call_t *)nosys, " ..
+ ".sy_auevent = AUE_NULL, .sy_flags = 0, " ..
+ ".sy_thrcnt = SY_THR_ABSENT },\t\t\t/* %d = %s */\n",
sysnum, comment))
write_line("sysnames", string.format(
"\t\"#%d\",\t\t\t/* %d = %s */\n",
@@ -1302,9 +1309,9 @@
write_line("sysinc", string.format([[
#ifdef %s
-#define %s(n, name) n, (sy_call_t *)__CONCAT(%s,name)
+#define %s(n, name) .sy_narg = n, .sy_call = (sy_call_t *)__CONCAT(%s,name)
#else
-#define %s(n, name) 0, (sy_call_t *)nosys
+#define %s(n, name) .sy_narg = 0, .sy_call = (sy_call_t *)nosys
#endif
]], v["definition"], v["flag"]:lower(), v["prefix"], v["flag"]:lower()))
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jan 12, 3:40 PM (19 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15770724
Default Alt Text
D26530.diff (3 KB)
Attached To
Mode
D26530: Make makesyscalls.lua initialize 'struct sysent' entries using c99 designated identifiers
Attached
Detach File
Event Timeline
Log In to Comment