Module Name: src
Committed By: ad
Date: Wed Oct 4 21:56:16 UTC 2023
Modified Files:
src/sys/rump/librump/rumpkern: threads.c
Log Message:
rump now needs lwp_need_userret()
To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/rump/librump/rumpkern/threads.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/threads.c
diff -u src/sys/rump/librump/rumpkern/threads.c:1.27 src/sys/rump/librump/rumpkern/threads.c:1.28
--- src/sys/rump/librump/rumpkern/threads.c:1.27 Sat Aug 1 22:30:57 2020
+++ src/sys/rump/librump/rumpkern/threads.c Wed Oct 4 21:56:15 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: threads.c,v 1.27 2020/08/01 22:30:57 riastradh Exp $ */
+/* $NetBSD: threads.c,v 1.28 2023/10/04 21:56:15 ad Exp $ */
/*
* Copyright (c) 2007-2009 Antti Kantee. All Rights Reserved.
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: threads.c,v 1.27 2020/08/01 22:30:57 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: threads.c,v 1.28 2023/10/04 21:56:15 ad Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -377,3 +377,10 @@ lwp_userret(struct lwp *l)
rump_unschedule();
rumpuser_thread_exit();
}
+
+void
+lwp_need_userret(struct lwp *l)
+{
+
+ /* do what? */
+}