diff options
author | 2002-12-11 23:21:19 +0000 | |
---|---|---|
committer | 2002-12-11 23:21:19 +0000 | |
commit | 701d45da4fcb8a6312f3fffb79a4de78c2c05777 (patch) | |
tree | 3ceeabce38f179af566d7335cf7c3c806fcfe843 /lib/libpthread/uthread/pthread_private.h | |
parent | Convert ctype.h macros into inline functions. This fixes the issues we (diff) | |
download | wireguard-openbsd-701d45da4fcb8a6312f3fffb79a4de78c2c05777.tar.xz wireguard-openbsd-701d45da4fcb8a6312f3fffb79a4de78c2c05777.zip |
add a debugging function not normally called
Diffstat (limited to 'lib/libpthread/uthread/pthread_private.h')
-rw-r--r-- | lib/libpthread/uthread/pthread_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpthread/uthread/pthread_private.h b/lib/libpthread/uthread/pthread_private.h index a4ab5f48044..83389b6008b 100644 --- a/lib/libpthread/uthread/pthread_private.h +++ b/lib/libpthread/uthread/pthread_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pthread_private.h,v 1.39 2002/12/08 04:06:01 marc Exp $ */ +/* $OpenBSD: pthread_private.h,v 1.40 2002/12/11 23:21:19 marc Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>. * All rights reserved. @@ -1095,6 +1095,7 @@ void _waitq_clearactive(void); __dead void _thread_exit(const char *, int, const char *) __attribute__((__noreturn__)); void *_thread_cleanup(pthread_t); void _thread_cleanupspecific(void); +void _thread_dump_data(const void *, int); void _thread_dump_info(void); void _thread_init(void); void _thread_kern_sched(struct sigcontext *); |