Move the "dumping" variable from systm.h to conf.h.

This commit is contained in:
Poul-Henning Kamp 2002-03-30 19:58:31 +00:00
parent f0654170d1
commit eaf1c66cbf
3 changed files with 6 additions and 1 deletions

View File

@ -353,6 +353,9 @@ typedef void (*dev_clone_fn)(void *arg, char *name, int namelen, dev_t *result);
int dev_stdclone(char *name, char **namep, const char *stem, int *unit);
EVENTHANDLER_DECLARE(dev_clone, dev_clone_fn);
extern int dumping; /* system is dumping */
#endif /* _KERNEL */
#endif /* !_SYS_CONF_H_ */

View File

@ -353,6 +353,9 @@ typedef void (*dev_clone_fn)(void *arg, char *name, int namelen, dev_t *result);
int dev_stdclone(char *name, char **namep, const char *stem, int *unit);
EVENTHANDLER_DECLARE(dev_clone, dev_clone_fn);
extern int dumping; /* system is dumping */
#endif /* _KERNEL */
#endif /* !_SYS_CONF_H_ */

View File

@ -51,7 +51,6 @@ extern int suser_enabled; /* suser_xxx() is permitted to return 0 */
extern int cold; /* nonzero if we are doing a cold boot */
extern const char *panicstr; /* panic message */
extern int dumping; /* system is dumping */
extern char version[]; /* system version */
extern char copyright[]; /* system copyright */