From f14cfcd17fe31a3eb7c288b60ba46fb96e683c95 Mon Sep 17 00:00:00 2001 From: dg Date: Sun, 29 May 1994 07:50:11 +0000 Subject: Don't panic if we can't malloc a cblock...just print a console message and be happy. --- sys/kern/subr_clist.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/kern/subr_clist.c') diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index 7ce49c4..d0b1496 100644 --- a/sys/kern/subr_clist.c +++ b/sys/kern/subr_clist.c @@ -92,8 +92,10 @@ cblock_alloc_cblocks(number) for (i = 0; i < number; ++i) { tmp = malloc(sizeof(struct cblock), M_TTYS, M_NOWAIT); - if (!tmp) - panic("clist_init: could not allocate cblock"); + if (!tmp) { + printf("cblock_alloc_cblocks: could not malloc cblock"); + break; + } bzero((char *)tmp, sizeof(struct cblock)); cblock_free(tmp); } -- cgit v1.1