/* * Project 3 - Shared memory and semaphores. * Dr. Silaghi's Operating System Concepts. * daemon.h - Header for daemon.c. * By Michael Rywalt - 2569 */ #ifndef _DAEMON_H_ #define _DAEMON_H_ /* Daemon exit error codes. */ #define EXIT_OK (0) #define EXIT_ERROR (1) /* The lockfile. */ #define LOCKFILE "/tmp/.rywaltP3" /* Exported functions. */ void InitDaemon(int *); void DestroyDaemon(int); #endif /* _DAEMON_H_ */