diff options
author | Frans Kaashoek <[email protected]> | 2016-08-25 09:13:00 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2016-08-25 09:13:00 -0400 |
commit | 7894fcd21732dd2ddfbb9beca52d037a62ed11f4 (patch) | |
tree | eabcfc4f08613dcf7c35e58d9425f02c4c65224f /forktest.c | |
parent | 6de6a3c952dc8786619bd052e26e6bc1c97be2e6 (diff) | |
download | xv6-labs-7894fcd21732dd2ddfbb9beca52d037a62ed11f4.tar.gz xv6-labs-7894fcd21732dd2ddfbb9beca52d037a62ed11f4.tar.bz2 xv6-labs-7894fcd21732dd2ddfbb9beca52d037a62ed11f4.zip |
Remove trailing white space with:
for f in *.{h,c}; do sed -i .sed 's/[[:blank:]]*$//' $f; done
(Thanks to Nicolás Wolovick)
Diffstat (limited to 'forktest.c')
-rw-r--r-- | forktest.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,24 +27,24 @@ forktest(void) if(pid == 0) exit(); } - + if(n == N){ printf(1, "fork claimed to work N times!\n", N); exit(); } - + for(; n > 0; n--){ if(wait() < 0){ printf(1, "wait stopped early\n"); exit(); } } - + if(wait() != -1){ printf(1, "wait got too many\n"); exit(); } - + printf(1, "fork test OK\n"); } |