diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index c8e26278d34..213f75d751e 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -4019,10 +4019,12 @@ between Nuttx and a MoBY application:
The following structure defines the action to take for given signal:
- struct sigaction {
- union {
- saHandType *_sa_handler;
- saVxHandType *_sa_sigaction;
+ struct sigaction
+ {
+ union
+ {
+ void (*_sa_handler)(int);
+ void (*_sa_sigaction)(int, siginfo_t *, void *);
} sa_u;
sigset_t sa_mask;
int sa_flags;
@@ -4031,13 +4033,6 @@ The following structure defines the action to take for given signal:
#define sa_sigaction sa_u._sa_sigaction
--where: -
- typedef void saHandType( int signo ); - typedef void saVxHandType( int signo, siginfo_t *info, void *context ); --