diff options
author | Robert Morris <[email protected]> | 2011-08-12 09:25:39 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2011-08-12 09:25:39 -0400 |
commit | 2e59046362f532748711b9acaceee1cda969cc50 (patch) | |
tree | 82ab693a2fa6021d445915c169354b6833262d24 /syscall.c | |
parent | bd71a45046eb13797284216c43353b9b6c92f18c (diff) | |
download | xv6-labs-2e59046362f532748711b9acaceee1cda969cc50.tar.gz xv6-labs-2e59046362f532748711b9acaceee1cda969cc50.tar.bz2 xv6-labs-2e59046362f532748711b9acaceee1cda969cc50.zip |
log write() data
usertest for big write()s
push begin_trans/commit_trans down into syscalls
Diffstat (limited to 'syscall.c')
-rw-r--r-- | syscall.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -141,9 +141,7 @@ syscall(void) if(num >= 0 && num < SYS_open && syscalls[num]) { proc->tf->eax = syscalls[num](); } else if (num >= SYS_open && num < NELEM(syscalls) && syscalls[num]) { - begin_trans(); proc->tf->eax = syscalls[num](); - commit_trans(); } else { cprintf("%d %s: unknown sys call %d\n", proc->pid, proc->name, num); |