~noskcaj/ubuntu/saucy/xinetd/2.3.15

« back to all changes in this revision

Viewing changes to xinetd/child.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_CHILD
 
7
#define _X_CHILD
 
8
 
 
9
#include "defs.h"
 
10
 
 
11
#ifdef __GNUC__
 
12
__attribute__ ((noreturn))
 
13
#endif
 
14
void child_process(struct server *serp);
 
15
void child_exit(void);
 
16
#ifdef __GNUC__
 
17
__attribute__ ((noreturn))
 
18
#endif
 
19
void exec_server( const struct server *serp );
 
20
 
 
21
#endif