summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-15 17:41:19 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-15 17:41:19 +0800
commit6cf160e4215089eb1538be77b32c07d856ae0e10 (patch)
treed1493bca7b9787201a7a696d7aedeaf00728b225
parent38df492e4667f7a1eae14f9f9e806b1146f2f3b3 (diff)
downloadpttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.tar
pttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.tar.gz
pttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.tar.bz2
pttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.tar.lz
pttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.tar.xz
pttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.tar.zst
pttbbs-6cf160e4215089eb1538be77b32c07d856ae0e10.zip
show memory usage by hitting Ctrl-Q in DEBUG mode
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@599 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/io.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/io.c b/pttbbs/mbbsd/io.c
index aa6e525b..9b34bd12 100644
--- a/pttbbs/mbbsd/io.c
+++ b/pttbbs/mbbsd/io.c
@@ -1,4 +1,4 @@
-/* $Id: io.c,v 1.25 2002/12/24 08:20:15 in2 Exp $ */
+/* $Id: io.c,v 1.26 2003/01/15 09:41:19 in2 Exp $ */
#include "bbs.h"
#if defined(linux)
@@ -153,6 +153,11 @@ igetch()
register int ch;
while ((ch = dogetch())) {
switch (ch) {
+#ifdef DEBUG
+ case Ctrl('Q'):
+ vmsg("memory usage: %d KB", ((int)sbrk(0) - 0x8048000) / 1024);
+ continue;
+#endif
case Ctrl('L'):
redoscr();
continue;