include/signal.h: Add commented out definition of the si_addr field.

This commit is contained in:
oao Matos 2019-04-04 11:22:52 -06:00 committed by Gregory Nutt
parent abf91df188
commit 24f5cde922

View File

@ -329,6 +329,9 @@ struct siginfo
pid_t si_pid; /* Sending task ID */
int si_status; /* Exit value or signal (SIGCHLD only). */
#endif
#if 0 /* Not implemented */
FAR void *si_addr; /* Report address with SIGFPE, SIGSEGV, or SIGBUS */
#endif
};
#ifndef __SIGINFO_T_DEFINED