diff options
author | rtm <rtm> | 2007-08-24 19:32:36 +0000 |
---|---|---|
committer | rtm <rtm> | 2007-08-24 19:32:36 +0000 |
commit | 902b13f5d6bab19f7a218acc655421cdb63f4313 (patch) | |
tree | 7c54f9fa80eeeb87f72fc7a58e3c5bc4fad70af8 /syscall.c | |
parent | 2bc72bdd29d605f7106204cc8293f9e5be4113e9 (diff) | |
download | xv6-labs-902b13f5d6bab19f7a218acc655421cdb63f4313.tar.gz xv6-labs-902b13f5d6bab19f7a218acc655421cdb63f4313.tar.bz2 xv6-labs-902b13f5d6bab19f7a218acc655421cdb63f4313.zip |
simplify ide queuing
nits in comments
Diffstat (limited to 'syscall.c')
-rw-r--r-- | syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ fetchstr(struct proc *p, uint addr, char **pp) return -1; } -// Fetch the argno'th word-sized system call argument as an integer. +// Fetch the argno'th 32-bit system call argument. int argint(int argno, int *ip) { |