4 * Copyright (c) 2006 Apple Computer, Inc. All rights reserved.
6 * @APPLE_APACHE_LICENSE_HEADER_START@
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
20 * @APPLE_APACHE_LICENSE_HEADER_END@
23 #include <sys/cdefs.h>
24 #include <sys/types.h>
25 #include <Availability.h>
27 #ifndef VPROC_HAS_TRANSACTIONS
28 #define VPROC_HAS_TRANSACTIONS
33 #pragma GCC visibility push(default)
35 typedef void * vproc_err_t
;
37 typedef struct vproc_s
* vproc_t
;
38 typedef void * vprocmgr_t
;
40 const char *vproc_strerror(vproc_err_t r
);
45 * Processes have two reference counts associated with them:
47 * Transactions Tracks unfinished work. For example: saving a modified
49 * Standby Tracks outstanding callbacks from external subsystems.
51 * Descriptive aliases:
53 * A process with no outstanding transactions is called "clean."
54 * A process with outstanding transactions is called "dirty."
55 * A process with no standby work is called "idle."
57 * Sometimes, the operating system needs processes to exit. Unix has two
58 * primary signals to kill applications:
60 * SIGKILL Not catchable by the application.
61 * SIGTERM Catchable by the application.
63 * If a process is clean, the operating system is free to SIGKILL it at
64 * shutdown or logout. This behavior is opt in.
66 * If a process is clean and idle, the operating system may send SIGKILL after
67 * a application specified timeout. This behavior is opt in.
69 * If a process is dirty and idle, the operating system may send SIGTERM after
70 * a application specified timeout. This behavior is opt in.
73 * launchd jobs should update their property lists accordingly.
75 * We plan to have LaunchServices use private methods to coordinate
76 * whether GUI applications have opted into this design.
80 * @typedef vproc_transaction_t
83 * An opaque handle used to track outstanding transactions.
85 typedef struct vproc_transaction_s
*vproc_transaction_t
;
88 * @function vproc_transaction_begin
91 * This is meant for future API improvements. Pass NULL for now.
94 * Returns an opaque handle to be passed to vproc_transaction_end().
97 * Call this API before creating data that needs to be saved via I/O later.
100 vproc_transaction_begin(vproc_t virtual_proc
) __OSX_AVAILABLE_STARTING(__MAC_10_6
, __IPHONE_5_0
);
103 * @function vproc_transaction_end
105 * @param virtual_proc
106 * This is meant for future API improvements. Pass NULL for now.
109 * The handle previously created with vproc_transaction_begin().
112 * Call this API after the data has either been flushed or otherwise resolved.
115 * Calling this API with the same handle more than once is undefined.
118 vproc_transaction_end(vproc_t virtual_proc
, vproc_transaction_t handle
) __OSX_AVAILABLE_STARTING(__MAC_10_6
, __IPHONE_5_0
);
121 * @typedef vproc_standby_t
124 * An opaque handle used to track outstanding standby requests.
126 typedef struct vproc_standby_s
*vproc_standby_t
;
129 * @function vproc_standby_begin
131 * @param virtual_proc
132 * This is meant for future API improvements. Pass NULL for now.
135 * Returns an opaque handle to be passed to vproc_standby_end().
138 * Call this API before registering notifications. For example: timers network
139 * state change, or when monitoring keyboard/mouse events.
142 * This API is undefined and is currently a no-op.
145 vproc_standby_begin(vproc_t virtual_proc
) __OSX_AVAILABLE_STARTING(__MAC_NA
, __IPHONE_NA
);
148 * @function vproc_standby_end
150 * @param virtual_proc
151 * This is meant for future API improvements. Pass NULL for now.
154 * The handle previously created with vproc_standby_begin().
157 * Call this API when deregistering notifications.
160 * Calling this API with the same handle more than once is undefined.
161 * This API is undefined and is currently a no-op.
164 vproc_standby_end(vproc_t virtual_proc
, vproc_standby_t handle
) __OSX_AVAILABLE_STARTING(__MAC_NA
, __IPHONE_NA
);
166 #pragma GCC visibility pop