diff options
Diffstat (limited to 'pk/pk.c')
-rw-r--r-- | pk/pk.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -16,6 +16,10 @@ static void handle_option(const char* s) current.cycle0 = 1; break; + case 'p': // disable demand paging + demand_paging = 0; + break; + default: panic("unrecognized option: `%c'", s[1]); break; |