1
0
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:
warren.toomey
2008-05-06 00:04:55 +00:00
parent 84a2f46b52
commit b92faa0a87

View File

@@ -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 },