/* * Copyright (c) 2002 by Louis Zechtzer * * Permission to use, copy and distribute this software is hereby granted * under the terms of version 2 or any later version of the GNU General Public * License, as published by the Free Software Foundation. * * THIS SOFTWARE IS PROVIDED IN ITS "AS IS" CONDITION, WITH NO WARRANTY * WHATSOEVER. NO LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING * FROM THE USE OF THIS SOFTWARE WILL BE ACCEPTED. */ /* * Authors: Louis Zechtzer (lou@clarity.net) */ #ifndef __SYS_H #define __SYS_H #define SYS_DAEMON 0x1 #define SYS_FOREGROUND 0x2 #define SYS_GOT_SIGINT 0x1 #define SYS_GOT_SIGHUP 0x2 /* Ignoring sighup for now */ #define SYS_GOT_SIGUSR1 0x4 /* Use this to increase debug level */ #define SYS_GOT_SIGUSR2 0x8 /* Use this to decrease debug level */ void sys_initialize(int flags); #endif /* __SYS_H */