diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-28 20:29:08 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-28 20:29:08 -0400 |
commit | 83b6c9e052ed8c813c03a5517943b61caef6b065 (patch) | |
tree | b999a8a9909e28945c7b431aeb2b1823377658c9 /src/internal | |
parent | 05b694028e0537954ea2d5e69774e0c24bf9ab47 (diff) | |
download | musl-83b6c9e052ed8c813c03a5517943b61caef6b065.tar.gz |
remove useless field in pthread struct (wasted a good bit of space)
Diffstat (limited to 'src/internal')
-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 e3a9a0e0..c8fa4b11 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -30,7 +30,6 @@ struct pthread { void *start_arg; void *(*start)(void *); void *result; - jmp_buf exit_jmp_buf; int detached; int exitlock; struct __ptcb *cancelbuf; |