1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-12-01 18:57:38 +01:00

Fix the naming of the sigprocmask parameters.

This commit is contained in:
Arun Sharma 2009-10-15 19:29:49 -07:00
parent b56375e76a
commit af9daf66af

View file

@ -179,10 +179,10 @@ typedef sigset_t intrmask_t;
extern intrmask_t unwi_full_mask; extern intrmask_t unwi_full_mask;
#if defined(CONFIG_BLOCK_SIGNALS) #if defined(CONFIG_BLOCK_SIGNALS)
# define SIGPROCMASK(how, old_mask, new_mask) \ # define SIGPROCMASK(how, new_mask, old_mask) \
sigprocmask((how), (old_mask), (new_mask)) sigprocmask((how), (new_mask), (old_mask))
#else #else
# define SIGPROCMASK(how, old_mask, new_mask) /**/ # define SIGPROCMASK(how, new_mask, old_mask) /**/
#endif #endif
#define define_lock(name) \ #define define_lock(name) \