You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
structsigaction
{
/* Signal handler. */#ifdef__USE_POSIX199309union
{
/* Used if SA_SIGINFO is not set. */__sighandler_tsa_handler;
/* Used if SA_SIGINFO is set. */void (*sa_sigaction) (int, siginfo_t*, void*);
}
__sigaction_handler;
# definesa_handler __sigaction_handler.sa_handler
# definesa_sigaction __sigaction_handler.sa_sigaction
#else__sighandler_tsa_handler;
#endif/* Additional set of signals to be blocked. */__sigset_tsa_mask;
/* Special flags. */intsa_flags;
/* Restore handler. */void (*sa_restorer) (void);
};
Without special requirement or using obsolescent compiler, the compiler usually chooses the #else so that sa_handler is one of members.
But irony doesn't show any candidates for sa_handler, my irony gives
There are duplicated items for the same candidate. That's because I'm using both irony and rtags. Both of them don't show sa_handler. But since they use clang as backend. I suspect it is a problem of clang, isn't it? There is another possible reason that I can come up with, that is there may be an option about compiler definition which should be given to irony but omitted.
Can anyone help? Thank ahead.
The text was updated successfully, but these errors were encountered:
The definition of
struct sigaction
isWithout special requirement or using obsolescent compiler, the compiler usually chooses the
#else
so thatsa_handler
is one of members.But irony doesn't show any candidates for
sa_handler
, my irony givesThere are duplicated items for the same candidate. That's because I'm using both irony and rtags. Both of them don't show
sa_handler
. But since they use clang as backend. I suspect it is a problem of clang, isn't it? There is another possible reason that I can come up with, that is there may be an option about compiler definition which should be given to irony but omitted.Can anyone help? Thank ahead.
The text was updated successfully, but these errors were encountered: