~ubuntu-branches/ubuntu/oneiric/cvsd/oneiric

« back to all changes in this revision

Viewing changes to daemon.h

  • Committer: Bazaar Package Importer
  • Author(s): Arthur de Jong
  • Date: 2004-04-17 12:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20040417120000-r8kjxyw52szursq7
Tags: 1.0.2
* added Danish (da) debconf translation by Claus Hindsgaul
  (closes: #234897)
* debconf limit choicelist is now also translated
* updated German (de) debconf translation by Jens Seidel
* updated French (fr) debconf translation by Christian Perrier
* init script now uses kill -0 <pid> to get cvsd status
* repositories debconf question now uses correct chroot jail

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  daemon.h - definition of daemon() for systems that lack it
 
3
 
 
4
  Copyright (C) 2003 Arthur de Jong
 
5
 
 
6
  This program is free software; you can redistribute it and/or modify
 
7
  it under the terms of the GNU General Public License as published by
 
8
  the Free Software Foundation; either version 2, or (at your option)
 
9
  any later version.
 
10
 
 
11
  This program is distributed in the hope that it will be useful,
 
12
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
  GNU General Public License for more details.
 
15
 
 
16
  You should have received a copy of the GNU General Public License
 
17
  along with this program; if not, write to the Free Software Foundation,
 
18
  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
*/
 
20
 
 
21
 
 
22
#ifndef _DAEMON_H
 
23
#define _DAEMON_H 1
 
24
 
 
25
 
 
26
#include <unistd.h>
 
27
 
 
28
 
 
29
/* deamonize process, optionally chdir to / and optionally close stdin,
 
30
   strdout and stderr and redirect them to /dev/null */
 
31
int daemon(int nochdir,int noclose);
 
32
 
 
33
 
 
34
#endif /* not _DAEMON_H */