commit e5a13e24ff940d24842666430b833bea08f2325c
parent db7ffe9b863be5cc0114cf2dfef31208df296d8b
Author: leitner <leitner>
Date: Thu, 12 May 2005 15:39:50 +0000
don't overwrite system shutdown
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
@@ -78,7 +78,7 @@ install-files:
install minit pidfilehack $(DESTDIR)/sbin
install write_proc hard-reboot minit-update $(DESTDIR)/sbin
install msvc serdo $(DESTDIR)/bin
- install -m 4750 shutdown $(DESTDIR)/sbin
+ if test -f $(DESTDIR)/sbin/shutdown; then install shutdown $(DESTDIR)/sbin/mshutdown; else install shutdown $(DESTDIR)/sbin/shutdown; fi
test -f $(DESTDIR)/sbin/init || ln $(DESTDIR)/sbin/minit $(DESTDIR)/sbin/init
install -m 644 hard-reboot.8 minit-list.8 minit-shutdown.8 minit-update.8 minit.8 msvc.8 pidfilehack.8 serdo.8 $(DESTDIR)$(MANDIR)/man8
diff --git a/minit.c b/minit.c
@@ -30,9 +30,9 @@
extern void* __libc_malloc(size_t size);
extern void* __libc_realloc(void* x,size_t size);
extern void __libc_free(void* x);
-static char malloc_buf[2048];
+static char malloc_buf[1024];
static unsigned long n;
-static struct process procbuf[100];
+static struct process procbuf[50];
void *malloc(size_t size) {
if (n+size<sizeof(malloc_buf)) {
char* tmp=malloc_buf+n;