BarryServer : Git

All the code for all my projects
// BarryServer : Git / Orion / blob / 1628fcfdfdf2978ed9ccac96ee7d13bb3dc43a01 / task / signal.h

// Related

Orion

Barry Adding pipes e59e4fe (2 years, 4 months ago)
#ifndef KERNEL_TASK_SIGNAL_H
#define KERNEL_TASK_SIGNAL_H

/* Structure for Signal Handlers namespace */
typedef struct SigHandlers {
	sighandler_t sig_handler[32];
	refcount_t usage;
} SigHandlers;

#endif