mirror of
https://github.com/DoctorWkt/unix-jun72.git
synced 2026-04-03 04:38:11 +00:00
Adjustments to the # of arguments to certain syscalls.
This commit is contained in:
@@ -8,9 +8,9 @@ struct syscallinfo v1syscalls[]= {
|
||||
{ "fork", 0 },
|
||||
{ "read", 2 },
|
||||
{ "write", 2 },
|
||||
{ "open", 3, },
|
||||
{ "close", 2 },
|
||||
{ "wait", 1 },
|
||||
{ "open", 2, },
|
||||
{ "close", 0 },
|
||||
{ "wait", 0 },
|
||||
{ "creat", 2 },
|
||||
{ "link", 2 },
|
||||
{ "unlink", 1 },
|
||||
@@ -22,7 +22,7 @@ struct syscallinfo v1syscalls[]= {
|
||||
{ "chown", 2 },
|
||||
{ "break", 1 },
|
||||
{ "stat", 2 },
|
||||
{ "seek", 3 },
|
||||
{ "seek", 2 },
|
||||
{ "tell", 3 },
|
||||
{ "mount", 2 },
|
||||
{ "umount", 1 },
|
||||
|
||||
Reference in New Issue
Block a user