From: Rich Felker Date: Tue, 29 Mar 2011 00:29:08 +0000 (-0400) Subject: remove useless field in pthread struct (wasted a good bit of space) X-Git-Tag: v0.7.5~35 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=83b6c9e052ed8c813c03a5517943b61caef6b065;p=oweals%2Fmusl.git remove useless field in pthread struct (wasted a good bit of space) --- 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;