summaryrefslogtreecommitdiff
path: root/usr.sbin/config/ukc.h
diff options
context:
space:
mode:
authorMats O Jansson <maja@cvs.openbsd.org>2001-02-04 20:42:13 +0000
committerMats O Jansson <maja@cvs.openbsd.org>2001-02-04 20:42:13 +0000
commit188fba77536064f7792bb8d0660180698e4673f8 (patch)
treef15de4b7f242ebf778b3c3a5ced9fa965d79737d /usr.sbin/config/ukc.h
parent1f2e1421f3ad0919744754aeb577231be4951c2e (diff)
Add support for pseudo devices. This is done by adding more information
in ioconf.c. The only thing that can be done with pseudo devices is changing the number of created units. -moj ok deraadt@
Diffstat (limited to 'usr.sbin/config/ukc.h')
-rw-r--r--usr.sbin/config/ukc.h30
1 files changed, 23 insertions, 7 deletions
diff --git a/usr.sbin/config/ukc.h b/usr.sbin/config/ukc.h
index 0188a2d26f5..a11280e1836 100644
--- a/usr.sbin/config/ukc.h
+++ b/usr.sbin/config/ukc.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: ukc.h,v 1.3 2001/01/24 20:12:27 art Exp $ */
+/* $OpenBSD: ukc.h,v 1.4 2001/02/04 20:42:12 maja Exp $ */
/*
- * Copyright (c) 1999 Mats O Jansson. All rights reserved.
+ * Copyright (c) 1999-2001 Mats O Jansson. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -47,7 +47,10 @@
#define I_HISTLEN 12
#define CA_HISTORY 13
#define TZ_TZ 14
-#define NLENTRIES 15
+#define P_PDEVNAMES 15
+#define I_PDEVSIZE 16
+#define S_PDEVINIT 17
+#define NLENTRIES 18
#ifdef UKC_MAIN
struct nlist nl[] = {
@@ -66,6 +69,9 @@ struct nlist nl[] = {
{ "_userconf_histlen" },
{ "_userconf_history" },
{ "_tz" },
+ { "_pdevnames" },
+ { "_pdevnames_size" },
+ { "_pdevinit" },
{ NULL },
};
struct nlist knl[] = {
@@ -84,30 +90,39 @@ struct nlist knl[] = {
{ "_userconf_histlen" },
{ "_userconf_history" },
{ "_tz" },
+ { "_pdevnames" },
+ { "_pdevnames_size" },
+ { "_pdevinit" },
{ NULL },
};
int maxdev = 0;
int totdev = 0;
+int maxpseudo = 0;
int maxlocnames = 0;
int base = 16;
int cnt = -1;
int lines = 18;
int oldkernel = 0;
+int nopdev = 0;
#else
extern struct nlist nl[];
extern int maxdev;
extern int totdev;
+extern int maxpseudo;
extern int maxlocnames;
extern int base;
extern int cnt;
extern int lines;
extern int oldkernel;
+extern int nopdev;
#endif
-struct cfdata *get_cfdata __P((int));
-short *get_locnamp __P((int));
-caddr_t *get_locnames __P((int));
-int *get_extraloc __P((int));
+struct cfdata *get_cfdata __P((int));
+short *get_locnamp __P((int));
+caddr_t *get_locnames __P((int));
+int *get_extraloc __P((int));
+caddr_t *get_pdevnames __P((int));
+struct pdevinit *get_pdevinit __P((int));
int more __P(());
void pnum __P((int));
@@ -139,3 +154,4 @@ void process_history __P((int, char *));
#endif _UTIL_H
+