我想访问_addr驻留在_sigfault中,这是siginfo结构的一部分。 asm-generic / siginfo中定义的siginfo结构如下 -
typedef struct siginfo {
int si_signo;
int si_errno;
int si_code;
union {
int _pad[SI_PAD_SIZE];
/* kill() */
struct {
pid_t _pid; /* sender's pid */
__ARCH_SI_UID_T _uid; /* sender's uid */
} _kill;
/* POSIX.1b timers */
struct {
timer_t _tid; /* timer id */
int _overrun; /* overrun count */
char _pad[sizeof( __ARCH_SI_UID_T) - sizeof(int)];
sigval_t _sigval; /* same as below */
int _sys_private; /* not to be passed to user */
} _timer;
/* POSIX.1b signals */
struct {
pid_t _pid; /* sender's pid */
__ARCH_SI_UID_T _uid; /* sender's uid */
sigval_t _sigval;
} _rt;
/* SIGCHLD */
struct {
pid_t _pid; /* which child */
__ARCH_SI_UID_T _uid; /* sender's uid */
int _status; /* exit code */
clock_t _utime;
clock_t _stime;
} _sigchld;
/* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
struct {
void *_addr; /* faulting insn/memory ref. */
#ifdef __ARCH_SI_TRAPNO
int _trapno; /* TRAP # which caused the signal */
#endif
} _sigfault;
/* SIGPOLL */
struct {
__ARCH_SI_BAND_T _band; /* POLL_IN, POLL_OUT, POLL_MSG */
int _fd;
} _sigpoll;
} _sifields;
} siginfo_t;
我无法访问_addr字段。以下是我为访问它而编写的代码 - siginfo_t sigInfo。 的printf( “%X”,sigInfo._sifields._sigfault._addr);
编译过程中得到的错误是 - sampleTrace.c:在函数'main'中: sampleTrace.c:12:错误:'struct'没有名为'_addr'的成员
你能否告诉我在这里做错了什么?
答案 0 :(得分:2)
您希望si_addr
使用<signal.h>
。
/* ... */ void *si_addr Address of faulting instruction.
标头应将siginfo_t类型定义为结构, 至少应包括以下成员:siginfo_t *info; /* ... */ printf("%x", info->si_addr);
尝试:
{{1}}