Module Name:    src
Committed By:   yamt
Date:           Sun Jun 13 03:31:28 UTC 2010

Modified Files:
        src/sys/sys: lwp.h

Log Message:
remove __dead from the prototype of lwp_exit, which actually can
return these days.


To generate a diff of this commit:
cvs rdiff -u -r1.134 -r1.135 src/sys/sys/lwp.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/lwp.h
diff -u src/sys/sys/lwp.h:1.134 src/sys/sys/lwp.h:1.135
--- src/sys/sys/lwp.h:1.134	Thu Jun 10 20:54:53 2010
+++ src/sys/sys/lwp.h	Sun Jun 13 03:31:28 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: lwp.h,v 1.134 2010/06/10 20:54:53 pooka Exp $	*/
+/*	$NetBSD: lwp.h,v 1.135 2010/06/13 03:31:28 yamt Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2006, 2007, 2008, 2009, 2010
@@ -312,7 +312,7 @@
 void	cpu_setfunc(lwp_t *, void (*)(void *), void *);
 void	startlwp(void *);
 void	upcallret(lwp_t *);
-void	lwp_exit(lwp_t *) __dead;
+void	lwp_exit(lwp_t *);
 void	lwp_exit_switchaway(lwp_t *) __dead;
 int	lwp_suspend(lwp_t *, lwp_t *);
 int	lwp_create1(lwp_t *, const void *, size_t, u_long, lwpid_t *);

Reply via email to