From af9daf66afde3c92b2c7c4f171bf3414c623892c Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Thu, 15 Oct 2009 19:29:49 -0700 Subject: [PATCH] Fix the naming of the sigprocmask parameters. --- include/libunwind_i.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/libunwind_i.h b/include/libunwind_i.h index a8186015..f20fcbc8 100644 --- a/include/libunwind_i.h +++ b/include/libunwind_i.h @@ -179,10 +179,10 @@ typedef sigset_t intrmask_t; extern intrmask_t unwi_full_mask; #if defined(CONFIG_BLOCK_SIGNALS) -# define SIGPROCMASK(how, old_mask, new_mask) \ - sigprocmask((how), (old_mask), (new_mask)) +# define SIGPROCMASK(how, new_mask, old_mask) \ + sigprocmask((how), (new_mask), (old_mask)) #else -# define SIGPROCMASK(how, old_mask, new_mask) /**/ +# define SIGPROCMASK(how, new_mask, old_mask) /**/ #endif #define define_lock(name) \