summaryrefslogtreecommitdiffstats
path: root/lib/libpthread
diff options
context:
space:
mode:
authord <d@openbsd.org>1999-01-08 05:44:53 +0000
committerd <d@openbsd.org>1999-01-08 05:44:53 +0000
commit583566f14ce3d9e65ad28c185bfe3a0f15d24038 (patch)
treebccd50c724dd4a0c7bc1a17f10c06069333fa1c6 /lib/libpthread
parentadd fchflags and fpathconf as well. (diff)
downloadwireguard-openbsd-583566f14ce3d9e65ad28c185bfe3a0f15d24038.tar.xz
wireguard-openbsd-583566f14ce3d9e65ad28c185bfe3a0f15d24038.zip
slight structure rearrange for gdb thread support
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/uthread/pthread_private.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h
index 7b3f6a7bcd4..d3b3fead2bd 100644
--- a/lib/libpthread/uthread/pthread_private.h
+++ b/lib/libpthread/uthread/pthread_private.h
@@ -31,7 +31,7 @@
*
* Private thread definitions for the uthread kernel.
*
- * $OpenBSD: pthread_private.h,v 1.8 1999/01/08 05:42:18 d Exp $
+ * $OpenBSD: pthread_private.h,v 1.9 1999/01/08 05:44:53 d Exp $
*
*/
@@ -343,8 +343,6 @@ struct pthread {
void *stack;
struct pthread_attr attr;
- struct _machdep_struct _machdep;
-
/*
* Saved signal context used in call to sigreturn by
* _thread_kern_sched if sig_saved is TRUE.
@@ -454,6 +452,9 @@ struct pthread {
struct pthread_cleanup *cleanup;
const char *fname; /* Ptr to source file name */
int lineno; /* Source line number. */
+
+ /* Machine dependent information */
+ struct _machdep_struct _machdep;
};
/*