Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump/librump/rumpkern we now use TAILQ
details: https://anonhg.NetBSD.org/src/rev/65c923b79312
branches: trunk
changeset: 791545:65c923b79312
user: christos <christos%NetBSD.org@localhost>
date: Fri Nov 22 21:56:24 2013 +0000
description:
we now use TAILQ
diffstat:
sys/rump/librump/rumpkern/signals.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 2326c394b5f2 -r 65c923b79312 sys/rump/librump/rumpkern/signals.c
--- a/sys/rump/librump/rumpkern/signals.c Fri Nov 22 21:04:11 2013 +0000
+++ b/sys/rump/librump/rumpkern/signals.c Fri Nov 22 21:56:24 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: signals.c,v 1.11 2013/04/30 00:03:53 pooka Exp $ */
+/* $NetBSD: signals.c,v 1.12 2013/11/22 21:56:24 christos Exp $ */
/*-
* Copyright (c) 2010, 2011 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.11 2013/04/30 00:03:53 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: signals.c,v 1.12 2013/11/22 21:56:24 christos Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -234,7 +234,7 @@
ksiginfo_queue_drain0(ksiginfoq_t *kq)
{
- if (!(CIRCLEQ_EMPTY(kq)))
+ if (!(TAILQ_EMPTY(kq)))
panic("how did that get there?");
}
Home |
Main Index |
Thread Index |
Old Index