diff options
author | Frans Kaashoek <[email protected]> | 2020-08-27 07:05:13 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2020-08-27 07:05:13 -0400 |
commit | 2ec9c6ed66629fd5b833f06af2080eab46c0af35 (patch) | |
tree | 657619065e513d6078c7457316cc1d1db11d943b | |
parent | d7e5f269106f4b76fcbd90331a3b44f879ee9c54 (diff) | |
download | xv6-labs-2ec9c6ed66629fd5b833f06af2080eab46c0af35.tar.gz xv6-labs-2ec9c6ed66629fd5b833f06af2080eab46c0af35.tar.bz2 xv6-labs-2ec9c6ed66629fd5b833f06af2080eab46c0af35.zip |
Remove obselete ifdef that shouldn't have been there ever
-rw-r--r-- | user/usertests.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/user/usertests.c b/user/usertests.c index db042e6..004c948 100644 --- a/user/usertests.c +++ b/user/usertests.c @@ -2723,12 +2723,8 @@ main(int argc, char *argv[]) } printf("usertests starting\n"); -#ifdef SOL_LAZY1 - int free0 = 32*1024*1024; -#else int free0 = countfree(); int free1 = 0; -#endif int fail = 0; for (struct test *t = tests; t->s != 0; t++) { if((justone == 0) || strcmp(t->s, justone) == 0) { |