Files
KirkOS/user/include/mlibc/abis/linux/sigevent.h
T
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

25 lines
433 B
C

#ifndef _ABIBITS_SIGEVENT_H
#define _ABIBITS_SIGEVENT_H
#include <abi-bits/sigval.h>
#include <abi-bits/pid_t.h>
#ifdef __cplusplus
extern "C" {
#endif
struct sigevent {
union sigval sigev_value;
int sigev_notify;
int sigev_signo;
void (*sigev_notify_function)(union sigval);
struct __mlibc_threadattr *sigev_notify_attributes;
pid_t sigev_notify_thread_id;
};
#ifdef __cplusplus
}
#endif
#endif /* _ABIBITS_SIGEVENT_H */