diff options
author | Rich Felker <dalias@aerifal.cx> | 2016-12-06 22:57:15 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-12-06 22:57:15 -0500 |
commit | 6f1866768a86239672ed811777dfe89994d64a65 (patch) | |
tree | c54b75027a36c165522c57878366ab5c4cff815c /src | |
parent | 54991729fd1e3d3a0cb71884d758d86afe6da9e0 (diff) | |
download | musl-6f1866768a86239672ed811777dfe89994d64a65.tar.gz musl-6f1866768a86239672ed811777dfe89994d64a65.tar.xz musl-6f1866768a86239672ed811777dfe89994d64a65.zip |
remove largish unused field from pthread structure
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/pthread_impl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index 7a679dbf..757b86ad 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -30,7 +30,6 @@ struct pthread { void *result; struct __ptcb *cancelbuf; void **tsd; - pthread_attr_t attr; volatile int dead; struct { volatile void *volatile head; |