diff options
Diffstat (limited to 'nptl/allocatestack.c')
-rw-r--r-- | nptl/allocatestack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index f9600ccbd1..343dd683d6 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -352,7 +352,7 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, #ifdef NEED_DL_SYSINFO /* Copy the sysinfo value from the parent. */ - pd->header.sysinfo = THREAD_GETMEM (THREAD_SELF, header.sysinfo); + THREAD_SYSINFO(pd) = THREAD_SELF_SYSINFO; #endif /* The process ID is also the same as that of the caller. */ @@ -488,7 +488,7 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, #ifdef NEED_DL_SYSINFO /* Copy the sysinfo value from the parent. */ - pd->header.sysinfo = THREAD_GETMEM (THREAD_SELF, header.sysinfo); + THREAD_SYSINFO(pd) = THREAD_SELF_SYSINFO; #endif /* The process ID is also the same as that of the caller. */ |