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 remove a const to allow building w...
details: https://anonhg.NetBSD.org/src/rev/c49381413bc1
branches: trunk
changeset: 979909:c49381413bc1
user: chs <chs%NetBSD.org@localhost>
date: Sat Jan 16 23:50:49 2021 +0000
description:
remove a const to allow building with QUEUEDEBUG.
diffstat:
sys/rump/librump/rumpkern/rump.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 36958e2592ce -r c49381413bc1 sys/rump/librump/rumpkern/rump.c
--- a/sys/rump/librump/rumpkern/rump.c Sat Jan 16 23:19:50 2021 +0000
+++ b/sys/rump/librump/rumpkern/rump.c Sat Jan 16 23:50:49 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.c,v 1.351 2020/12/06 09:03:29 skrll Exp $ */
+/* $NetBSD: rump.c,v 1.352 2021/01/16 23:50:49 chs Exp $ */
/*
* Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.351 2020/12/06 09:03:29 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.352 2021/01/16 23:50:49 chs Exp $");
#include <sys/systm.h>
#define ELFSIZE ARCH_ELFSIZE
@@ -605,7 +605,7 @@
void
rump_component_init(enum rump_component_type type)
{
- const struct rump_component *rc, *rc_safe;
+ struct rump_component *rc, *rc_safe;
KASSERT(curlwp == bootlwp);
KASSERT(!compinited[type]);
Home |
Main Index |
Thread Index |
Old Index