PERFORCE change 83319 for review
soc-tyler
soc-tyler at FreeBSD.org
Fri Sep 9 20:07:05 PDT 2005
http://perforce.freebsd.org/chv.cgi?CH=83319
Change 83319 by soc-tyler at soc-tyler_launchd on 2005/09/10 03:06:52
Pointless submit, just need to reboot and cleanup workspace
Affected files ...
.. //depot/projects/soc2005/launchd/init.c#12 edit
.. //depot/projects/soc2005/launchd/launchctl/launchctl.c#23 edit
.. //depot/projects/soc2005/launchd/launchd.c#23 edit
Differences ...
==== //depot/projects/soc2005/launchd/init.c#12 (text+ko) ====
@@ -149,7 +149,7 @@
void transition(state_t);
/* this is something of old init.c, the state nonsense */
-state_t requested_transition = runcom;
+state_t requested_transition; //= runcom;
void setctty(const char *);
@@ -175,7 +175,7 @@
void free_session(session_t *);
session_t *new_session(session_t *, int, struct ttyent *);
-static TAILQ_HEAD(sesshead, session_t) *sessions = TAILQ_HEAD_INITIALIZER(*sessions);
+static TAILQ_HEAD(sesshead, session_t) *sessions;
char **construct_argv(char *);
void start_window_system(session_t *);
@@ -214,7 +214,7 @@
/* init_pre_kevent() was borrowed from launchd(8)'s original init.c file */
void init_pre_kevent(void) {
#ifdef _BE_INIT_
- session_t s;
+ //session_t s;
if (single_user_mode && single_user_pid == 0)
single_user();
==== //depot/projects/soc2005/launchd/launchctl/launchctl.c#23 (text+ko) ====
==== //depot/projects/soc2005/launchd/launchd.c#23 (text+ko) ====
More information about the p4-projects
mailing list