repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2.3.90-4
[glibc.git]
/
mach
/
syscalls.awk
blob
dec8a3b537745bf8821cbd4c4a88700a846bb1d2
1
BEGIN
{
calls=
""
}
2
3
{
4
calls = calls
" "
$
1
;
5
print
"sysno-"
$
1
" = "
$
2
;
6
print
"nargs-"
$
1
" = "
$
3
;
7
}
8
9
END
{
print
"mach-syscalls := "
calls
}