~noskcaj/ubuntu/saucy/xinetd/2.3.15

« back to all changes in this revision

Viewing changes to xinetd/signals.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Seyrat
  • Date: 2004-04-18 13:33:57 UTC
  • Revision ID: james.westby@ubuntu.com-20040418133357-czeqeju37433xvdd
Tags: upstream-2.3.13
ImportĀ upstreamĀ versionĀ 2.3.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (c) Copyright 1998-2001 by Rob Braun
 
3
 * All rights reserved.  The file named COPYRIGHT specifies the terms
 
4
 * and conditions for redistribution.
 
5
 */
 
6
#ifndef _X_SIGNALS
 
7
#define _X_SIGNALS
 
8
 
 
9
#include "defs.h"
 
10
 
 
11
#if defined(NO_POSIX_SIGS)
 
12
int sigprocmask(int how,sigset_t *set,sigset_t *oset);
 
13
int sigaction(int sig,struct sigaction *sap,struct sigaction *osap);
 
14
#endif
 
15
status_e signal_init(void);
 
16
char *sig_name(int sig);
 
17
void signal_default_state(void);
 
18
void check_pipe(void);
 
19
 
 
20
#endif