Skip to content
Snippets Groups Projects
Select Git revision
22 results Searching

signal_handler.h

Blame
  • signal_handler.h 522 B
    /*\
    ||| This file a part of Pike, and is copyright by Fredrik Hubinette
    ||| Pike is distributed as GPL (General Public License)
    ||| See the files COPYING and DISCLAIMER for more information.
    \*/
    #ifndef SIGNAL_H
    #define SIGNAL_H
    
    /* Prototypes begin here */
    struct wait_data;
    struct sigdesc;
    struct pid_status;
    void f_create_process(INT32 args);
    void f_fork(INT32 args);
    void check_signals(struct callback *foo, void *bar, void *gazonk);
    void init_signals(void);
    void exit_signals(void);
    /* Prototypes end here */
    
    #endif