Revision
23590
Author
zarzycki@apple.com
Date
2008-04-03 10:39:19 -0700 (Thu, 03 Apr 2008)

Log Message

Move _vproc_logv() from internal API to private API.

Modified Paths

Diff

Modified: trunk/launchd/src/libvproc_internal.h (23589 => 23590)


--- trunk/launchd/src/libvproc_internal.h	2008-04-02 20:57:44 UTC (rev 23589)
+++ trunk/launchd/src/libvproc_internal.h	2008-04-03 17:39:19 UTC (rev 23590)
@@ -99,7 +99,6 @@
 };
 
 
-void _vproc_logv(int pri, int err, const char *msg, va_list ap);
 vproc_err_t _vprocmgr_log_forward(mach_port_t mp, void *data, size_t len);
 
 

Modified: trunk/launchd/src/libvproc_private.h (23589 => 23590)


--- trunk/launchd/src/libvproc_private.h	2008-04-02 20:57:44 UTC (rev 23589)
+++ trunk/launchd/src/libvproc_private.h	2008-04-03 17:39:19 UTC (rev 23590)
@@ -67,6 +67,7 @@
 
 void _vproc_log(int pri, const char *msg, ...) __attribute__((format(printf, 2, 3)));
 void _vproc_log_error(int pri, const char *msg, ...) __attribute__((format(printf, 2, 3)));
+void _vproc_logv(int pri, int err, const char *msg, va_list ap) __attribute__((format(printf, 3, 0)));
 
 #define VPROCMGR_SESSION_LOGINWINDOW	"LoginWindow"
 #define VPROCMGR_SESSION_BACKGROUND	"Background"