signal: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
parent
bf3a554bc6
commit
b88cfbc1e5
|
@ -6,16 +6,10 @@ FUNCTION
|
||||||
INDEX
|
INDEX
|
||||||
psignal
|
psignal
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
void psignal(int <[signal]>, const char *<[prefix]>);
|
void psignal(int <[signal]>, const char *<[prefix]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <stdio.h>
|
|
||||||
void psignal(<[signal]>, <[prefix]>)
|
|
||||||
int <[signal]>;
|
|
||||||
const char *<[prefix]>;
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
Use <<psignal>> to print (on standard error) a signal message
|
Use <<psignal>> to print (on standard error) a signal message
|
||||||
corresponding to the value of the signal number <[signal]>.
|
corresponding to the value of the signal number <[signal]>.
|
||||||
|
|
|
@ -12,21 +12,12 @@ INDEX
|
||||||
INDEX
|
INDEX
|
||||||
_raise_r
|
_raise_r
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
int raise(int <[sig]>);
|
int raise(int <[sig]>);
|
||||||
|
|
||||||
int _raise_r(void *<[reent]>, int <[sig]>);
|
int _raise_r(void *<[reent]>, int <[sig]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <signal.h>
|
|
||||||
int raise(<[sig]>)
|
|
||||||
int <[sig]>;
|
|
||||||
|
|
||||||
int _raise_r(<[reent]>, <[sig]>)
|
|
||||||
char *<[reent]>;
|
|
||||||
int <[sig]>;
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
Send the signal <[sig]> (one of the macros from `<<sys/signal.h>>').
|
Send the signal <[sig]> (one of the macros from `<<sys/signal.h>>').
|
||||||
This interrupts your program's normal flow of execution, and allows a signal
|
This interrupts your program's normal flow of execution, and allows a signal
|
||||||
|
|
|
@ -7,23 +7,12 @@ INDEX
|
||||||
INDEX
|
INDEX
|
||||||
_signal_r
|
_signal_r
|
||||||
|
|
||||||
ANSI_SYNOPSIS
|
SYNOPSIS
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
void (*signal(int <[sig]>, void(*<[func]>)(int))) (int);
|
void (*signal(int <[sig]>, void(*<[func]>)(int))) (int);
|
||||||
|
|
||||||
void (*_signal_r(void *<[reent]>, int <[sig]>, void(*<[func]>)(int))) (int);
|
void (*_signal_r(void *<[reent]>, int <[sig]>, void(*<[func]>)(int))) (int);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
|
||||||
#include <signal.h>
|
|
||||||
char ( * signal(<[sig]>, <[func]>) )()
|
|
||||||
int <[sig]>;
|
|
||||||
char ( * <[func]> )();
|
|
||||||
|
|
||||||
char ( * _signal_r(<[reent]>, <[sig]>, <[func]>) )()
|
|
||||||
char *<[reent]>;
|
|
||||||
int <[sig]>;
|
|
||||||
char ( * <[func]> )();
|
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
<<signal>> provides a simple signal-handling implementation for embedded
|
<<signal>> provides a simple signal-handling implementation for embedded
|
||||||
targets.
|
targets.
|
||||||
|
|
Loading…
Reference in New Issue