Mercurial > routeflapper
annotate src/daemon.h @ 8:69a5dcf953df default tip
routeflapper runs as root to read the log files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 04 Sep 2014 08:57:50 -0700 |
parents | 48d06780cf77 |
children |
rev | line source |
---|---|
0 | 1 /* |
2 * File: daemon.h | |
3 * Author: shasn | |
4 * | |
5 * Created on 22 Декабрь 2006 г., 15:28 | |
6 */ | |
7 | |
8 #ifndef _daemon_H | |
9 #define _daemon_H | |
10 | |
11 #ifdef __cplusplus | |
12 extern "C" { | |
13 #endif | |
14 | |
15 int daemon(int nochdir, int noclose); | |
16 | |
17 | |
18 #ifdef __cplusplus | |
19 } | |
20 #endif | |
21 | |
22 #endif /* _daemon_H */ | |
23 |