diff options
author | Robert Mustacchi <rm@joyent.com> | 2018-09-11 21:21:18 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2018-09-11 21:32:22 +0000 |
commit | a1c95bbb7c9625aab345559b448cd77dad78b4b3 (patch) | |
tree | ef63dc1c09fee5444552280179b6660c7b8fee80 /usr/src/lib/libc/inc | |
parent | 6816448c8b777064c5a9cf6729bcfa0efeb29e4f (diff) | |
download | illumos-joyent-a1c95bbb7c9625aab345559b448cd77dad78b4b3.tar.gz |
backout OS-7200 would like thread name API (triggers OS-7240)
Reviewed by: John Levon <john.levon@joyent.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/lib/libc/inc')
-rw-r--r-- | usr/src/lib/libc/inc/thr_uberdata.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/lib/libc/inc/thr_uberdata.h b/usr/src/lib/libc/inc/thr_uberdata.h index 7f08a0b8c4..2c56e76f17 100644 --- a/usr/src/lib/libc/inc/thr_uberdata.h +++ b/usr/src/lib/libc/inc/thr_uberdata.h @@ -57,7 +57,6 @@ #include <sys/priocntl.h> #include <thread_db.h> #include <setjmp.h> -#include <sys/thread.h> #include "libc_int.h" #include "tdb_agent.h" #include "thr_debug.h" @@ -1238,7 +1237,6 @@ typedef struct _thrattr { int policy; int inherit; size_t guardsize; - char name[THREAD_NAME_MAX]; } thrattr_t; typedef struct _rwlattr { @@ -1499,7 +1497,7 @@ extern int rw_read_held(rwlock_t *); extern int rw_write_held(rwlock_t *); extern int _thrp_create(void *, size_t, void *(*)(void *), void *, long, - thread_t *, size_t, const char *); + thread_t *, size_t); extern int _thrp_suspend(thread_t, uchar_t); extern int _thrp_continue(thread_t, uchar_t); |