summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-02-27 13:50:41 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-02-27 13:50:41 +0800
commit74129f0f1d53e8ddc9c71783cb0745581f5a5fa4 (patch)
tree23f5ffc700aa3397f81f2a5e0b10728de6044479
parentfe15113c18cd5757c6490db2becd37fcb4c8f040 (diff)
downloadpttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.tar
pttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.tar.gz
pttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.tar.bz2
pttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.tar.lz
pttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.tar.xz
pttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.tar.zst
pttbbs-74129f0f1d53e8ddc9c71783cb0745581f5a5fa4.zip
SHM should be created by uhash_loader, NOT by mbbsd
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@678 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/cache.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/pttbbs/mbbsd/cache.c b/pttbbs/mbbsd/cache.c
index 023ac8a7..992b6721 100644
--- a/pttbbs/mbbsd/cache.c
+++ b/pttbbs/mbbsd/cache.c
@@ -1,4 +1,4 @@
-/* $Id: cache.c,v 1.58 2003/02/10 17:41:45 in2 Exp $ */
+/* $Id: cache.c,v 1.59 2003/02/27 05:50:41 in2 Exp $ */
#include "bbs.h"
#ifndef __FreeBSD__
@@ -70,12 +70,8 @@ attach_shm(int shmkey, int shmsize)
shmid = shmget(shmkey, shmsize, 0);
if (shmid < 0) {
- shmid = shmget(shmkey, shmsize, IPC_CREAT | 0600);
- if (shmid < 0)
- attach_err(shmkey, "shmget");
- shmptr = (void *)shmat(shmid, NULL, 0);
- if (shmptr == (void *)-1)
- attach_err(shmkey, "shmat");
+ // SHM should be created by uhash_loader, NOT mbbsd.
+ attach_err(shmkey, "shmget");
} else {
shmptr = (void *)shmat(shmid, NULL, 0);
if (shmptr == (void *)-1)