Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys remove __dead from the prototype of lwp_exit, which ...



details:   https://anonhg.NetBSD.org/src/rev/13559b8527ac
branches:  trunk
changeset: 755631:13559b8527ac
user:      yamt <yamt%NetBSD.org@localhost>
date:      Sun Jun 13 03:31:28 2010 +0000

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

diffstat:

 sys/sys/lwp.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 991e410cdd68 -r 13559b8527ac sys/sys/lwp.h
--- a/sys/sys/lwp.h     Sun Jun 13 03:09:32 2010 +0000
+++ b/sys/sys/lwp.h     Sun Jun 13 03:31:28 2010 +0000
@@ -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 *);



Home | Main Index | Thread Index | Old Index