snp-lab-code/P09_Prozesse_und_Threads/Daemon_Prozesse/Daemonizer.h

16 lines
520 B
C
Raw Permalink Normal View History

2020-04-26 15:02:50 +02:00
/*********************************************************************
* File: Daemonizer.h
* Original Autor: M. Thaler (Modul BSY)
* Aufgabe: einen Daemon-Prozess erzeugen
*********************************************************************/
#ifndef DAEMONIZER_H
#define DAEMONIZER_H
int Daemonizer(void Daemon(void *), void *data,
const char *LockFile, const char *LogFile, const char *LivDir);
#endif
//------------------------------------------------------------------------