diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2011-03-04 13:04:13 +0100 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2011-03-04 13:04:13 +0100 |
commit | 37525c04e45bb37bbc1532e11b5ab821a10f3cf4 (patch) | |
tree | b2fffe2f62ee22c0e6d2635bd9e75e2c172a4f80 /libpthread | |
parent | 4e431d5f5cbdde5e4330c2961b084471de14c101 (diff) |
nptl: fix use of IS_IN_LIBPTHREAD macro
IS_IN_LIBPTHREAD should be IS_IN_libpthread instead.
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/nptl/unwind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/nptl/unwind.c b/libpthread/nptl/unwind.c index 8f60ae410..671d70208 100644 --- a/libpthread/nptl/unwind.c +++ b/libpthread/nptl/unwind.c @@ -117,7 +117,7 @@ unwind_cleanup (_Unwind_Reason_Code reason, struct _Unwind_Exception *exc) void attribute_protected __cleanup_fct_attribute __attribute ((noreturn)) -#if !defined SHARED && !defined IS_IN_LIBPTHREAD +#if !defined SHARED && !defined IS_IN_libpthread weak_function #endif __pthread_unwind (__pthread_unwind_buf_t *buf) |