Module Name:    src
Committed By:   christos
Date:           Sun Nov  1 20:56:13 UTC 2020

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

Log Message:
turned sleepq_destroy this into a macro


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/sys/sleepq.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/sleepq.h
diff -u src/sys/sys/sleepq.h:1.33 src/sys/sys/sleepq.h:1.34
--- src/sys/sys/sleepq.h:1.33	Sun Nov  1 15:55:15 2020
+++ src/sys/sys/sleepq.h	Sun Nov  1 15:56:13 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: sleepq.h,v 1.33 2020/11/01 20:55:15 christos Exp $	*/
+/*	$NetBSD: sleepq.h,v 1.34 2020/11/01 20:56:13 christos Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2006, 2007, 2008, 2009, 2019, 2020
@@ -48,7 +48,6 @@
 typedef struct sleepq sleepq_t;
 
 void	sleepq_init(sleepq_t *);
-void	sleepq_destroy(sleepq_t *);
 void	sleepq_remove(sleepq_t *, lwp_t *);
 void	sleepq_enqueue(sleepq_t *, wchan_t, const char *, struct syncobj *,
 	    bool);

Reply via email to