]> git.saurik.com Git - apple/syslog.git/blobdiff - aslcommon/asl_ipc.defs
syslog-385.tar.gz
[apple/syslog.git] / aslcommon / asl_ipc.defs
index 1fe5bce8b45c48ea6c7864c53a12922c3dd3cf3b..c5b3c62fabcca0c6e0f90fdac0a1fbfafaaab247 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2007-2008 Apple Inc. All rights reserved.
+ * Copyright (c) 2007-2011 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -24,7 +24,7 @@
 #include <mach/std_types.defs>
 #include <mach/mach_types.defs>
 
-subsystem asl_ipc 1;
+subsystem asl_ipc 114;
 serverprefix _;
 
 import <sys/types.h>;
@@ -32,44 +32,66 @@ import <sys/types.h>;
 type ooline_data = ^ array [] of MACH_MSG_TYPE_BYTE
        ctype : caddr_t;
 
-routine _asl_server_query
+skip; /* removed: _asl_server_query */
+
+skip; /* removed: _asl_server_query_timeout */
+
+skip; /* removed: _asl_server_prune */
+
+routine _asl_server_create_aux_link
 (
        server : mach_port_t;
-       request : ooline_data, dealloc;
-       startid : uint64_t;
-       count : int;
-       flags : int;
-       out reply : ooline_data, dealloc;
-       out lastid : uint64_t;
+       message : ooline_data, dealloc;
+       out fileport : mach_port_move_send_t;
+       out url : ooline_data, dealloc;
        out status : int;
-       SecToken token : security_token_t
+       ServerAuditToken token : audit_token_t
+);
+
+simpleroutine _asl_server_message
+(
+       server : mach_port_t;
+       message : ooline_data, dealloc;
+       ServerAuditToken token : audit_token_t
+);
+
+simpleroutine _asl_server_register_direct_watch
+(
+       server : mach_port_t;
+       port : int;
+       ServerAuditToken token : audit_token_t
+);
+
+simpleroutine _asl_server_cancel_direct_watch
+(
+       server : mach_port_t;
+       port : int;
+       ServerAuditToken token : audit_token_t
 );
 
-routine _asl_server_query_timeout
+routine _asl_server_query_2
 (
        server : mach_port_t;
        request : ooline_data, dealloc;
        startid : uint64_t;
        count : int;
        flags : int;
-       WaitTime timeout: natural_t;
        out reply : ooline_data, dealloc;
        out lastid : uint64_t;
        out status : int;
-       SecToken token : security_token_t
+       ServerAuditToken token : audit_token_t
 );
 
-routine _asl_server_prune
+routine _asl_server_match
 (
        server : mach_port_t;
        request : ooline_data, dealloc;
+       startid : uint64_t;
+       count : uint64_t;
+       duration : uint32_t;
+       direction : int;
+       out reply : ooline_data, dealloc;
+       out lastid : uint64_t;
        out status : int;
-       SecToken token : security_token_t
-);
-
-simpleroutine _asl_server_message
-(
-       server : mach_port_t;
-       message : ooline_data, dealloc;
        ServerAuditToken token : audit_token_t
 );