Files
quark-kernel/include/types/sigaction.h

15 lines
238 B
C

#ifndef QUARK_SIGACTION_H
#define QUARK_SIGACTION_H
#include "types/pid.h"
#include "types/sighandler.h"
struct signal_action_t
{
pid_t pid;
signal_handler_t func_ptr;
void (*trampoline_ptr)();
void *userdata;
};
#endif