From 24f5cde9220b8275d1ed4016d2b55c8b23cf0e86 Mon Sep 17 00:00:00 2001 From: oao Matos Date: Thu, 4 Apr 2019 11:22:52 -0600 Subject: [PATCH] include/signal.h: Add commented out definition of the si_addr field. --- include/signal.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/signal.h b/include/signal.h index 877299a0bb..aa2507ed29 100644 --- a/include/signal.h +++ b/include/signal.h @@ -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