#ifndef _INIT_H #define _INIT_H #define SOCK_PATH "/dev/initctrl" #define BOOTRL -1 #define HALTRL -2 #define REBOOTRL -3 #define INVALRL -4 struct initcmd { enum { NEWLEVEL, ASKLEVEL } command; int data; }; #endif