move signal.h definition of stack_t to arch-specific bits

it's different at least on mips. mips version will be fixed in a
separate commit to show the change.
This commit is contained in:
Rich Felker
2014-03-18 23:12:40 -04:00
parent 25faa2034d
commit bd5f221eaa
9 changed files with 48 additions and 6 deletions

View File

@ -77,12 +77,6 @@ extern "C" {
#define CLD_STOPPED 5
#define CLD_CONTINUED 6
typedef struct sigaltstack {
void *ss_sp;
int ss_flags;
size_t ss_size;
} stack_t;
union sigval {
int sival_int;
void *sival_ptr;