summaryrefslogtreecommitdiff
path: root/src/sign.h
blob: ece9f85047e65d9d6e6dd7f3dd49b7190f116ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef SIGN_H
#define SIGN_H

#include "incl.h"
#include <signal.h>

class sign
{
private:
  static void clean_template_cache(int i_param); 
  static void reload_dlopen_modules(int i_param); //<<
#ifdef CTCSEGV
  static void sigsev_received(int i_param);
#endif

public:
  static void init_signal_handlers();
  static void terminate_received(int i_param);
};

#endif