From 9b628c0619e3af92854a5af2cb3614649300855c Mon Sep 17 00:00:00 2001 From: "David C. Jedlinsky" Date: Mon, 29 Jun 1987 16:38:59 +0000 Subject: Initial revision --- zhm/zhm.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 zhm/zhm.h (limited to 'zhm/zhm.h') diff --git a/zhm/zhm.h b/zhm/zhm.h new file mode 100644 index 0000000..d7f4b7b --- /dev/null +++ b/zhm/zhm.h @@ -0,0 +1,38 @@ +#ifndef __HM_H__ +#define __HM_H__ +/* This file is part of the Project Athena Zephyr Notification System. + * It contains the hostmanager header file. + * + * Created by: David C. Jedlinsky + * + * $Source$ + * $Author$ + * $Header$ + * + * Copyright (c) 1987 by the Massachusetts Institute of Technology. + * For copying and distribution information, see the file + * "mit-copyright.h". + */ + +#include +#include + +#ifdef DEBUG +#define DPR(a) fprintf(stderr, a); fflush(stderr) +#define DPR2(a,b) fprintf(stderr, a, b); fflush(stderr) +#else +#define DPR(a) +#define DPR2(a,b) +#endif + +#define ever (;;) +#define Zperr(e) fprintf(stderr, "Error = %d\n", e) + +#define SERV_TIMEOUT 20 +#define NOTICE_TIMEOUT 5 +#define BOOTING 1 +#define NOTICES 2 + +extern char *malloc(); + +#endif !__HM_H__ -- cgit v1.2.3