#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