Created types/sigaction.h
This commit is contained in:
15
include/types/sigaction.h
Normal file
15
include/types/sigaction.h
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#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
|
||||||
Reference in New Issue
Block a user