2022-08-13 20:11:56 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_ITIMERVAL_INTERNAL_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_ITIMERVAL_INTERNAL_H_
|
|
|
|
#include "libc/calls/struct/itimerval.h"
|
|
|
|
#include "libc/mem/alloca.h"
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-07-24 15:31:54 +00:00
|
|
|
int sys_getitimer(int, struct itimerval *);
|
|
|
|
int sys_setitimer(int, const struct itimerval *, struct itimerval *);
|
|
|
|
int sys_setitimer_nt(int, const struct itimerval *, struct itimerval *);
|
2022-08-13 20:11:56 +00:00
|
|
|
|
2023-06-15 20:50:42 +00:00
|
|
|
const char *DescribeItimerval(char[90], int, const struct itimerval *);
|
|
|
|
#define DescribeItimerval(rc, ts) DescribeItimerval(alloca(90), rc, ts)
|
2022-08-13 20:11:56 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_ITIMERVAL_INTERNAL_H_ */
|