Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Sep 2005 03:07:03 GMT
From:      soc-tyler <soc-tyler@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 83319 for review
Message-ID:  <200509100307.j8A373UO092928@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=83319

Change 83319 by soc-tyler@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) ====




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200509100307.j8A373UO092928>