summaryrefslogtreecommitdiff
path: root/yhttpd/src/sign.h
blob: a8ec1e1b8ce31980a172c0ffac9029d4da755aa0 (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);
#ifdef CTCSEGV

  static void sigsev_received(int i_param);
#endif

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

#endif