diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-10-17 13:40:46 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-10-17 13:40:46 -0700 |
commit | 327ae2570744dabf7f065a6b529d16cc22438603 (patch) | |
tree | 1ceb494203f9a8c6419d6f76d9ad155951646ea1 /nptl/allocatestack.c | |
parent | b0643088bc7387e04cf53dcf7331d02f7fa62c72 (diff) | |
download | glibc-327ae2570744dabf7f065a6b529d16cc22438603.tar.gz glibc-327ae2570744dabf7f065a6b529d16cc22438603.tar.xz glibc-327ae2570744dabf7f065a6b529d16cc22438603.zip |
NPTL: Conditionalize more uses of SIGCANCEL and SIGSETXID.
Diffstat (limited to 'nptl/allocatestack.c')
-rw-r--r-- | nptl/allocatestack.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index d95ffe9d36..b19d9b3e95 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -978,6 +978,7 @@ __find_thread_by_id (pid_t tid) #endif +#ifdef SIGSETXID static void internal_function setxid_mark_thread (struct xid_command *cmdp, struct pthread *t) @@ -1185,6 +1186,8 @@ __nptl_setxid (struct xid_command *cmdp) lll_unlock (stack_cache_lock, LLL_PRIVATE); return result; } +#endif /* SIGSETXID. */ + static inline void __attribute__((always_inline)) init_one_static_tls (struct pthread *curp, struct link_map *map) |