Module Name:    src
Committed By:   kamil
Date:           Tue Jun 18 22:40:09 UTC 2019

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

Log Message:
Stop defining in lwp.h: LSDEAD

Not used since NetBSD-5.0.

It had a confusing comment that suggested that all entries after LSDEAD
are removed, which wasn't true.


To generate a diff of this commit:
cvs rdiff -u -r1.184 -r1.185 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.184 src/sys/sys/lwp.h:1.185
--- src/sys/sys/lwp.h:1.184	Thu Jun 13 20:20:18 2019
+++ src/sys/sys/lwp.h	Tue Jun 18 22:40:09 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: lwp.h,v 1.184 2019/06/13 20:20:18 kamil Exp $	*/
+/*	$NetBSD: lwp.h,v 1.185 2019/06/18 22:40:09 kamil Exp $	*/
 
 /*
  * Copyright (c) 2001, 2006, 2007, 2008, 2009, 2010
@@ -287,8 +287,7 @@ extern int		maxlwp __read_mostly;	/* max
 #define	LSSLEEP		3	/* Sleeping on an address. */
 #define	LSSTOP		4	/* Process debugging or suspension. */
 #define	LSZOMB		5	/* Awaiting collection by parent. */
-/* unused, for source compatibility with NetBSD 4.0 and earlier. */
-#define	LSDEAD		6	/* Process is almost a zombie. */
+/* define	LSDEAD	6	Process is almost a zombie. (removed in 5.0) */
 #define	LSONPROC	7	/* Process is currently on a CPU. */
 #define	LSSUSPENDED	8	/* Not running, not signalable. */
 

Reply via email to