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 Fix rump build failure after sleep...
details: https://anonhg.NetBSD.org/src/rev/fff50682c28b
branches: trunk
changeset: 368230:fff50682c28b
user: knakahara <knakahara%NetBSD.org@localhost>
date: Thu Jun 30 07:47:07 2022 +0000
description:
Fix rump build failure after sleepq.h:r1.35.
diffstat:
sys/rump/librump/rumpkern/sleepq.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 28a8790095e2 -r fff50682c28b sys/rump/librump/rumpkern/sleepq.c
--- a/sys/rump/librump/rumpkern/sleepq.c Thu Jun 30 06:30:44 2022 +0000
+++ b/sys/rump/librump/rumpkern/sleepq.c Thu Jun 30 07:47:07 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sleepq.c,v 1.22 2022/04/09 23:45:23 riastradh Exp $ */
+/* $NetBSD: sleepq.c,v 1.23 2022/06/30 07:47:07 knakahara Exp $ */
/*
* Copyright (c) 2008 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sleepq.c,v 1.22 2022/04/09 23:45:23 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sleepq.c,v 1.23 2022/06/30 07:47:07 knakahara Exp $");
#include <sys/param.h>
#include <sys/condvar.h>
@@ -69,7 +69,7 @@
}
int
-sleepq_block(int timo, bool catch)
+sleepq_block(int timo, bool catch, struct syncobj *syncobj __unused)
{
struct lwp *l = curlwp;
int error = 0;
Home |
Main Index |
Thread Index |
Old Index