~ubuntu-branches/debian/sid/rlinetd/sid

« back to all changes in this revision

Viewing changes to signals.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Luberda
  • Date: 2010-03-20 18:03:45 UTC
  • mfrom: (2.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100320180345-x1srfbe2tg00ezsf
Tags: 0.7-1
* New upstream version.
* Recommend rsyslog instead of sysklogd (closes: #526922).
* update-inetd:
  + add support for enabling, disabling and removing entries;
  + use ucf for managing generated files;
  + ignore ucf files in rlinetd.conf;
  + make appropriate changes in  postinst and postrm scripts.
* Set debhelper compat level to 7
* Standards-Version: 3.8.4 (no changes). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef H_SIGNALS
2
 
#define H_SIGNALS
3
 
 
4
 
#include <sys/time.h>
5
 
#include <sys/types.h>
6
 
#include <unistd.h>
7
 
 
8
 
void rl_siginit();
9
 
void rls_block();
10
 
void rls_unblock();
11
 
 
12
 
#define RL_MAX(a,b) ((a) > (b) ? (a) : (b))
13
 
 
14
 
extern volatile int rls_need_parse;                                     /* SIGHUP flag */
15
 
extern volatile int rls_term_recv;                                      /* SIGTERM or SIGINT flag */
16
 
extern volatile struct pidtab *rls_reaped;
17
 
 
18
 
#endif /* !H_SIGNALS */
19
 
 
20
 
/* vim: set ts=2: */