2022-08-13 13:11:56 -07:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGINFO_INTERNAL_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGINFO_INTERNAL_H_
|
|
|
|
#include "libc/calls/struct/siginfo.h"
|
2022-10-10 07:36:07 -07:00
|
|
|
#include "libc/mem/alloca.h"
|
2022-08-13 13:11:56 -07:00
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-07-24 08:31:54 -07:00
|
|
|
int sys_sigqueueinfo(int, const siginfo_t *);
|
2022-08-13 13:11:56 -07:00
|
|
|
|
2024-08-24 18:10:22 -07:00
|
|
|
const char *_DescribeSiginfo(char[300], int, const siginfo_t *);
|
|
|
|
#define DescribeSiginfo(x, y) _DescribeSiginfo(alloca(300), x, y)
|
2022-10-10 07:36:07 -07:00
|
|
|
|
2022-08-13 13:11:56 -07:00
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGINFO_INTERNAL_H_ */
|