Module Name: src
Committed By: christos
Date: Sun Aug 28 10:13:03 UTC 2011
Modified Files:
src/sbin/init: init.c
Log Message:
make it compile with SMALLPROG
To generate a diff of this commit:
cvs rdiff -u -r1.101 -r1.102 src/sbin/init/init.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/init/init.c
diff -u src/sbin/init/init.c:1.101 src/sbin/init/init.c:1.102
--- src/sbin/init/init.c:1.101 Sat Aug 27 13:43:42 2011
+++ src/sbin/init/init.c Sun Aug 28 06:13:03 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: init.c,v 1.101 2011/08/27 17:43:42 joerg Exp $ */
+/* $NetBSD: init.c,v 1.102 2011/08/28 10:13:03 christos Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -42,7 +42,7 @@
#if 0
static char sccsid[] = "@(#)init.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: init.c,v 1.101 2011/08/27 17:43:42 joerg Exp $");
+__RCSID("$NetBSD: init.c,v 1.102 2011/08/28 10:13:03 christos Exp $");
#endif
#endif /* not lint */
@@ -127,12 +127,14 @@
#define CATATONIA 'c'
static state_func_t single_user(void);
+#ifndef LETS_GET_SMALL
static state_func_t runcom(void);
static state_func_t read_ttys(void);
static state_func_t multi_user(void);
static state_func_t clean_ttys(void);
static state_func_t catatonia(void);
static state_func_t death(void);
+#endif
static enum { AUTOBOOT, FASTBOOT } runcom_mode = AUTOBOOT;
@@ -155,32 +157,29 @@
struct init_session *se_next;
} session_t;
-static void free_session(session_t *);
-static session_t *new_session(session_t *, int, struct ttyent *);
-static session_t *sessions;
-
-static char **construct_argv(char *);
-static void start_window_system(session_t *);
static void collect_child(pid_t, int);
-static pid_t start_getty(session_t *);
+static int clang;
static void transition_handler(int);
static void alrm_handler(int);
static int has_securelevel(void);
-static void setsecuritylevel(int);
-static int getsecuritylevel(void);
static int securelevel_present;
-static int setupargv(session_t *, struct ttyent *);
-static int clang;
+#ifndef LETS_GET_SMALL
+static int do_setttyent(void);
+static void start_window_system(session_t *);
+static char **construct_argv(char *);
+static int setupargv(session_t *, struct ttyent *);
+static pid_t start_getty(session_t *);
+static void free_session(session_t *);
+static session_t *new_session(session_t *, int, struct ttyent *);
+static session_t *sessions;
+static void setsecuritylevel(int);
+static int getsecuritylevel(void);
static int start_session_db(void);
static void add_session(session_t *);
static void del_session(session_t *);
static session_t *find_session(pid_t);
static DB *session_db;
-
-static int do_setttyent(void);
-
-#ifndef LETS_GET_SMALL
static state_t requested_transition = runcom;
static void clear_session_logs(session_t *, int);
@@ -1727,6 +1726,7 @@
}
#endif
+#ifndef LETS_GET_SMALL
static int
do_setttyent(void)
{
@@ -1742,6 +1742,7 @@
#endif /* CHROOT */
return setttyent();
}
+#endif
#if !defined(LETS_GET_SMALL) && defined(CHROOT)