summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-19 09:29:40 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-19 09:29:40 +0800
commitbc4f16528510496070a05a300c0ceed15c1e5032 (patch)
treec727089f2ec5e0c71c6be080ca42cd0434552c91
parent6738e3c8ddba7bd55901693bc3003ce8860650ae (diff)
downloadpttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.tar
pttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.tar.gz
pttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.tar.bz2
pttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.tar.lz
pttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.tar.xz
pttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.tar.zst
pttbbs-bc4f16528510496070a05a300c0ceed15c1e5032.zip
critical memory usage
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@632 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/include/proto.h5
-rw-r--r--pttbbs/mbbsd/board.c57
-rw-r--r--pttbbs/mbbsd/mbbsd.c5
3 files changed, 61 insertions, 6 deletions
diff --git a/pttbbs/include/proto.h b/pttbbs/include/proto.h
index 708353c8..20963df0 100644
--- a/pttbbs/include/proto.h
+++ b/pttbbs/include/proto.h
@@ -1,4 +1,4 @@
-/* $Id: proto.h,v 1.35 2003/01/17 08:49:34 kcwu Exp $ */
+/* $Id: proto.h,v 1.36 2003/01/19 01:29:39 in2 Exp $ */
#ifndef INCLUDE_PROTO_H
#define INCLUDE_PROTO_H
@@ -69,6 +69,9 @@ int Boards();
int root_board();
void save_brdbuf(void);
void init_brdbuf(void);
+#ifdef CRITICAL_MEMORY
+void sigfree(int);
+#endif
/* cache */
int moneyof(int uid);
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 44241fcc..33ef661d 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.78 2003/01/18 18:10:07 kcwu Exp $ */
+/* $Id: board.c,v 1.79 2003/01/19 01:29:40 in2 Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -224,12 +224,45 @@ typedef struct {
static int *zapbuf = NULL;
static char *favbuf = NULL;
static boardstat_t *nbrd = NULL;
-char zapchange = 0, favchange = 0;
+char zapchange = 0, favchange = 0, choose_board_depth = 0;
#define STR_BBSRC ".bbsrc"
#define STR_FAV ".fav"
#define STR_FAV2 ".fav2"
+#ifdef CRITICAL_MEMORY
+void *MALLOC(int size)
+{
+ int *p;
+ p = (int *)mmap(NULL, (size + 4), PROT_READ | PROT_WRITE, MAP_ANON, -1, 0);
+ p[0] = size;
+#ifdef DEBUG
+ vmsg("critical malloc %d bytes", size);
+#endif
+ return (void *)&p[1];
+}
+
+void FREE(void *ptr)
+{
+ int size = ((int *)ptr)[-1];
+ munmap((void *)(&(((int *)ptr)[-1])), size);
+#ifdef DEBUG
+ vmsg("critical free %d bytes", size);
+#endif
+}
+
+void sigfree(int sig)
+{
+ vmsg("SIG_FREE");
+ if( !choose_board_depth ){
+ vmsg("save");
+ save_brdbuf();
+ }
+ else
+ vmsg("nosave");
+}
+#endif
+
void load_brdbuf(void)
{
static char firsttime = 1;
@@ -242,8 +275,14 @@ void load_brdbuf(void)
size += sizeof(int);
favsize += sizeof(int);
#endif
+
+#ifdef CRITICAL_MEMORY
+ zapbuf = (int *)MALLOC(size);
+#else
zapbuf = (int *)malloc(size);
+#endif
favbuf = (char *)malloc(favsize);
+
#ifdef MEM_CHECK
zapbuf[0] = MEM_CHECK;
zapbuf = &zapbuf[1];
@@ -311,7 +350,7 @@ init_brdbuf()
}
void
-save_brdbuf()
+save_brdbuf(void)
{
int fd, size;
char fname[60];
@@ -334,9 +373,17 @@ save_brdbuf()
close(fd);
}
#ifdef MEM_CHECK
+# ifdef CRITICAL_MEMORY
+ FREE(&zapbuf[-1]);
+# else
free(&zapbuf[-1]);
+# endif
#else
+# ifdef CRITICAL_MEMORY
+ FREE(zapbuf);
+# else
free(zapbuf);
+# endif
#endif
zapbuf = NULL;
}
@@ -360,6 +407,7 @@ save_brdbuf()
#endif
favbuf = NULL;
}
+ reentrant = 0;
}
int
@@ -777,7 +825,6 @@ dozap(int num)
zapbuf[ptr->bid - 1] = (ptr->myattr & BRD_ZAP ? 0 : login_start_time);
}
-
static void
choose_board(int newflag)
{
@@ -789,6 +836,7 @@ choose_board(int newflag)
setutmpmode(newflag ? READNEW : READBRD);
if( zapbuf == NULL || favbuf == NULL )
load_brdbuf();
+ ++choose_board_depth;
brdnum = 0;
if (!cuser.userlevel) /* guest yank all boards */
yank_flag = 2;
@@ -1156,6 +1204,7 @@ choose_board(int newflag)
} while (ch != 'q');
free(nbrd);
nbrd = NULL;
+ --choose_board_depth;
}
int
diff --git a/pttbbs/mbbsd/mbbsd.c b/pttbbs/mbbsd/mbbsd.c
index e85215cc..f0431a12 100644
--- a/pttbbs/mbbsd/mbbsd.c
+++ b/pttbbs/mbbsd/mbbsd.c
@@ -1,4 +1,4 @@
-/* $Id: mbbsd.c,v 1.63 2003/01/17 10:16:17 kcwu Exp $ */
+/* $Id: mbbsd.c,v 1.64 2003/01/19 01:29:40 in2 Exp $ */
#include "bbs.h"
#define SOCKET_QLEN 4
@@ -942,6 +942,9 @@ start_client()
signal(SIGFPE, abort_bbs_debug);
signal(SIGBUS, abort_bbs_debug);
signal(SIGSEGV, abort_bbs_debug);
+#ifdef CRITICAL_MEMORY
+ signal(CMSIGNAL, sigfree);
+#endif
signal_restart(SIGUSR1, talk_request);
signal_restart(SIGUSR2, write_request);