summaryrefslogtreecommitdiff
path: root/sys/lib
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-06-22 15:40:36 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2014-06-22 15:40:36 +0200
commit3c41f98e0c5bd6dce0bfd5a9573c7c332bc784fd (patch)
tree3f057cfaf494744b8d89a964ec4dacfbeaab0f24 /sys/lib
parentd4d86df2ab5fdc1d3f812fcc55fc74390a28d08f (diff)
remove imagepagerefs() acid function
Diffstat (limited to 'sys/lib')
-rw-r--r--sys/lib/acid/kernel14
1 files changed, 0 insertions, 14 deletions
diff --git a/sys/lib/acid/kernel b/sys/lib/acid/kernel
index 2f604ab9e..ea71a5fe6 100644
--- a/sys/lib/acid/kernel
+++ b/sys/lib/acid/kernel
@@ -29,20 +29,6 @@ defn path(p) {
// print Image cache contents
IHASHSIZE = 64;
-defn imagepagerefs(i) {
- local p, n;
-
- n = 0;
- p = palloc.$tail;
- while p != 0 && p.image != 0 do {
- if p.image == i then {
- n = n + 1;
- }
- p = p.prev;
- }
- return n;
-}
-
defn imagecacheline(h) {
local d, p, q;