Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Feb 2003 13:24:57 -0800 (PST)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 26039 for review
Message-ID:  <200302272124.h1RLOvga051842@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=26039

Change 26039 by jhb@jhb_laptop on 2003/02/27 13:24:18

	Remove panic(2) implementation.

Affected files ...

.. //depot/projects/smpng/sys/kern/subr_eventhandler.c#15 edit

Differences ...

==== //depot/projects/smpng/sys/kern/subr_eventhandler.c#15 (text+ko) ====

@@ -209,7 +209,8 @@
     /* scan looking for the requested list */
     mtx_lock(&eventhandler_mutex);
     list = _eventhandler_find_list(name);
-    EHL_LOCK(list);
+    if (list != NULL)
+	EHL_LOCK(list);
     mtx_unlock(&eventhandler_mutex);
     
     return(list);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302272124.h1RLOvga051842>