diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-12 16:05:00 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-11-12 16:05:00 +0100 |
commit | 2127b8c552390cdaeb848d0992d2923733936d09 (patch) | |
tree | 49fd13209c9a383665ea5991a875a9ec3f263087 | |
parent | d2ad8df9472c65931c649d312bf0ae46e1ceedd8 (diff) |
kernel/qio: get rid of unused qcopycnt debug variable
-rw-r--r-- | sys/lib/acid/kernel | 1 | ||||
-rw-r--r-- | sys/src/9/port/qio.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sys/lib/acid/kernel b/sys/lib/acid/kernel index bee079e40..977660972 100644 --- a/sys/lib/acid/kernel +++ b/sys/lib/acid/kernel @@ -62,7 +62,6 @@ defn qiostats() { print ("copyblockcnt=", *copyblockcnt\D, "\n"); print ("consumecnt=", *consumecnt\D, "\n"); print ("producecnt=", *producecnt\D, "\n"); - print ("qcopycnt=", *qcopycnt\D, "\n"); } // dump channels diff --git a/sys/src/9/port/qio.c b/sys/src/9/port/qio.c index 0632af9ac..1f6fa93cc 100644 --- a/sys/src/9/port/qio.c +++ b/sys/src/9/port/qio.c @@ -11,7 +11,6 @@ static ulong pullupblockcnt; static ulong copyblockcnt; static ulong consumecnt; static ulong producecnt; -static ulong qcopycnt; #define QDEBUG if(0) |