[launchd-changes] [23731] branches/PR-6248586

source_changes at macosforge.org source_changes at macosforge.org
Thu Oct 16 13:26:33 PDT 2008


Revision: 23731
          http://trac.macosforge.org/projects/launchd/changeset/23731
Author:   kvv at apple.com
Date:     2008-10-16 13:26:33 -0700 (Thu, 16 Oct 2008)
Log Message:
-----------
fixed mach_exc_server

Modified Paths:
--------------
    branches/PR-6248586/launchd/src/launchd_runtime.c
    branches/PR-6248586/launchd.xcodeproj/project.pbxproj

Modified: branches/PR-6248586/launchd/src/launchd_runtime.c
===================================================================
--- branches/PR-6248586/launchd/src/launchd_runtime.c	2008-10-16 19:56:25 UTC (rev 23730)
+++ branches/PR-6248586/launchd/src/launchd_runtime.c	2008-10-16 20:26:33 UTC (rev 23731)
@@ -61,7 +61,7 @@
 #include "launchd_internalServer.h"
 #include "launchd_internal.h"
 #include "notifyServer.h"
-#include "excServer.h"
+#include "mach_excServer.h"
 
 /* We shouldn't be including these */
 #include "launch.h"
@@ -848,6 +848,8 @@
 	return r;
 }
 
+boolean_t mach_exc_server(mach_msg_header_t *, mach_msg_header_t *);
+
 boolean_t
 launchd_internal_demux(mach_msg_header_t *Request, mach_msg_header_t *Reply)
 {
@@ -856,7 +858,7 @@
 	} else if (notify_server_routine(Request)) {
 		return notify_server(Request, Reply);
 	} else {
-		return exc_server(Request, Reply);
+		return mach_exc_server(Request, Reply);
 	}
 }
 

Modified: branches/PR-6248586/launchd.xcodeproj/project.pbxproj
===================================================================
--- branches/PR-6248586/launchd.xcodeproj/project.pbxproj	2008-10-16 19:56:25 UTC (rev 23730)
+++ branches/PR-6248586/launchd.xcodeproj/project.pbxproj	2008-10-16 20:26:33 UTC (rev 23731)
@@ -3,7 +3,7 @@
 	archiveVersion = 1;
 	classes = {
 	};
-	objectVersion = 45;
+	objectVersion = 46;
 	objects = {
 
 /* Begin PBXAggregateTarget section */
@@ -663,10 +663,12 @@
 			inputPaths = (
 			);
 			outputPaths = (
+				"$(DERIVED_FILE_DIR)/mach_excServer.c",
+				"$(DERIVED_FILE_DIR)/mach_excServer.h",
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
-			shellScript = "/usr/bin/mig $MIGFLAGS \\\n\t-header /dev/null \\\n\t-user /dev/null \\\n\t-sheader \"$SYMROOT\"/excServer.h \\\n\t\"$SDKROOT\"/usr/include/mach/exc.defs";
+			shellScript = "/usr/bin/mig $MIGFLAGS \\\n\t-header /dev/null \\\n\t-user /dev/null \\\n\t-server \"$DERIVED_FILE_DIR\"/mach_excServer.c \\\n\t-sheader \"$DERIVED_FILE_DIR\"/mach_excServer.h \\\n\t\"$SDKROOT\"/usr/include/mach/exc.defs";
 			showEnvVarsInLog = 0;
 		};
 		FC7B87B20EA7195F00542082 /* ShellScript */ = {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/launchd-changes/attachments/20081016/f9977b11/attachment.html 


More information about the launchd-changes mailing list