htl: Drop common tcbhead_t definition

This would conflict when including pt-internal.h outside libpthread, while
we can actually just include <tls.h>
This commit is contained in:
Samuel Thibault 2020-01-04 18:52:00 +01:00
parent af7be496c9
commit 12e166dd80
1 changed files with 2 additions and 10 deletions

View File

@ -37,6 +37,8 @@
# include <ldsodefs.h>
#endif
#include <tls.h>
/* Thread state. */
enum pthread_state
{
@ -58,16 +60,6 @@ enum pthread_state
# define PTHREAD_SYSDEP_MEMBERS
#endif
#if !(IS_IN (libpthread))
/* Type of the TCB. */
typedef struct
{
void *tcb; /* Points to this structure. */
void *dtv; /* Vector of pointers to TLS data. */
thread_t self; /* This thread's control port. */
} tcbhead_t;
#endif /* ! IS_IN (libpthread) */
/* This structure describes a POSIX thread. */
struct __pthread
{