summaryrefslogtreecommitdiff
path: root/sys/src/9/port/sysproc.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2019-05-01 12:40:27 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2019-05-01 12:40:27 +0200
commitfe594760ebddac23e673d189d2152062ef75d8b8 (patch)
tree7dbf1a9c636c943c477787841eaa4d85d1cff78b /sys/src/9/port/sysproc.c
parentb452f8857f22089adca137f32b9456a208554800 (diff)
kernel: get rid of checkpagerefs() debugging
was only implemented by the pc kernel. does not account pages used by the mount cache.
Diffstat (limited to 'sys/src/9/port/sysproc.c')
-rw-r--r--sys/src/9/port/sysproc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/src/9/port/sysproc.c b/sys/src/9/port/sysproc.c
index 5a20316f1..705dbf415 100644
--- a/sys/src/9/port/sysproc.c
+++ b/sys/src/9/port/sysproc.c
@@ -9,15 +9,11 @@
#include <a.out.h>
-extern void checkpages(void);
-extern void checkpagerefs(void);
-
uintptr
sysr1(va_list)
{
if(!iseve())
error(Eperm);
- checkpagerefs();
return 0;
}