diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2023-12-31 19:23:22 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2023-12-31 19:23:22 +0000 |
commit | fb1eadf6ed68ddf810551057709debbdbfd7938a (patch) | |
tree | 110989d2f951a8fef099283e5419f6c37384d3b5 | |
parent | 835db8f7965eb27292a4f3d4a60a47fccb30d8b2 (diff) |
/sys/lib/acid/kernel: fix proctab()
-rw-r--r-- | sys/lib/acid/kernel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/lib/acid/kernel b/sys/lib/acid/kernel index c6433b9da..803703077 100644 --- a/sys/lib/acid/kernel +++ b/sys/lib/acid/kernel @@ -215,7 +215,7 @@ defn mntcache() { // manipulate processes defn proctab(x) { - return procalloc.arena+sizeofProc*x; + return procalloc.tab[x]; } defn proc(p) { |