diff options
author | sotech117 <michael_foiani@brown.edu> | 2024-05-15 05:18:05 +0000 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2024-05-15 05:18:05 +0000 |
commit | fb007909e043f127794db39032492dc438ee2a4c (patch) | |
tree | fc360b483bf8884b0354bc31cae2dbcd053bc2a0 /kernel | |
parent | bf9a10ff2710ff088a94586df8756741db67bb0c (diff) |
stop printouts
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/main/kmain.c | 2 | ||||
-rw-r--r-- | kernel/util/debug.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kernel/main/kmain.c b/kernel/main/kmain.c index 77955d0..caa04e9 100644 --- a/kernel/main/kmain.c +++ b/kernel/main/kmain.c @@ -172,7 +172,7 @@ static void *initproc_run(long arg1, void *arg2) // dbg(DBG_PROC, "%s", "In main thread!\n"); #ifdef __VM__ - vmtest_main(0, NULL); + // mtest_main(0, NULL); char *const argv[] = {NULL}; char *const envp[] = {NULL}; diff --git a/kernel/util/debug.c b/kernel/util/debug.c index 0b2faab..849b60a 100644 --- a/kernel/util/debug.c +++ b/kernel/util/debug.c @@ -19,7 +19,7 @@ * always be the first thing in this variable. Note that this setting can be * changed at runtime by modifying the dbg_modes global variable. */ -#define INIT_DBG_MODES "-all,test,testpass,testfail" +#define INIT_DBG_MODES "-all" /* Below is a truly terrible poll-driven serial driver that we use for debugging * purposes - it outputs to COM1, but * this can be easily changed. It does not use interrupts, and cannot read input |