From 66065a39eab06c0f841282f402be9b4cf4a1c592 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 2 Aug 2004 19:32:28 +0000 Subject: [PATCH] taskqueue_create() should use M_INTWAIT rather then M_NOWAIT. --- sys/sys/taskqueue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/taskqueue.h b/sys/sys/taskqueue.h index 213d651227..07f4e508db 100644 --- a/sys/sys/taskqueue.h +++ b/sys/sys/taskqueue.h @@ -24,7 +24,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/sys/taskqueue.h,v 1.3.2.2 2003/09/10 00:40:39 ken Exp $ - * $DragonFly: src/sys/sys/taskqueue.h,v 1.3 2003/12/29 06:42:07 dillon Exp $ + * $DragonFly: src/sys/sys/taskqueue.h,v 1.4 2004/08/02 19:32:28 dillon Exp $ */ #ifndef _SYS_TASKQUEUE_H_ @@ -98,7 +98,7 @@ static void \ taskqueue_define_##name(void *arg) \ { \ taskqueue_##name = \ - taskqueue_create(#name, M_NOWAIT, (enqueue), (context)); \ + taskqueue_create(#name, M_INTWAIT, (enqueue), (context)); \ init; \ } \ \ -- 2.41.0