Module Name: src
Committed By: simonb
Date: Mon Mar 29 01:46:26 UTC 2021
Modified Files:
src/sys/arch/mips/include: frame.h
Log Message:
Add an lwp_trapframe() interface to return an LWP's user trapframe.
Needed by dtrace.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mips/include/frame.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/arch/mips/include/frame.h
diff -u src/sys/arch/mips/include/frame.h:1.11 src/sys/arch/mips/include/frame.h:1.12
--- src/sys/arch/mips/include/frame.h:1.11 Wed Mar 24 05:35:05 2021
+++ src/sys/arch/mips/include/frame.h Mon Mar 29 01:46:26 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: frame.h,v 1.11 2021/03/24 05:35:05 simonb Exp $ */
+/* $NetBSD: frame.h,v 1.12 2021/03/29 01:46:26 simonb Exp $ */
/*
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -42,6 +42,8 @@
#include <sys/signal.h>
void *getframe(struct lwp *, int, int *);
+#define lwp_trapframe(l) ((l)->l_md.md_utf)
+
#if defined(COMPAT_16) || defined(COMPAT_ULTRIX)
void sendsig_sigcontext(const ksiginfo_t *, const sigset_t *);
#endif