- @enum IOTimerEventSource constructor options
- @abstract Constants defining behavior of the IOTimerEventSource.
- @constant kIOTimerEventSourceOptionsPriorityHigh Importance above everything but realtime.
- Thread calls allocated with this priority execute at extremely high priority,
- above everything but realtime threads. They are generally executed in serial.
- Though they may execute concurrently under some circumstances, no fan-out is implied.
- These work items should do very small amounts of work or risk disrupting system
- responsiveness.
- @constant kIOTimerEventSourceOptionsPriorityKernelHigh Importance higher than most kernel
- threads.
- @constant kIOTimerEventSourceOptionsPriorityKernel Importance similar to that of normal kernel
- threads.
- @constant kIOTimerEventSourceOptionsPriorityUser Importance similar to that of normal user threads.
- @constant kIOTimerEventSourceOptionsPriorityLow Very low importance.
- @constant kIOTimerEventSourceOptionsPriorityWorkLoop Run the callout on the thread of the IOWorkLoop
- the event source has been added to.
- @constant kIOTimerEventSourceOptionsAllowReenter Allow the callout to be rescheduled and potentially
- re-entered, if the IOWorkLoop lock has been released (eg. with commandSleep) during its invocation.
- @constant kIOTimerEventSourceOptionsDefault Recommended default options.
+ * @enum IOTimerEventSource constructor options
+ * @abstract Constants defining behavior of the IOTimerEventSource.
+ * @constant kIOTimerEventSourceOptionsPriorityHigh Importance above everything but realtime.
+ * Thread calls allocated with this priority execute at extremely high priority,
+ * above everything but realtime threads. They are generally executed in serial.
+ * Though they may execute concurrently under some circumstances, no fan-out is implied.
+ * These work items should do very small amounts of work or risk disrupting system
+ * responsiveness.
+ * @constant kIOTimerEventSourceOptionsPriorityKernelHigh Importance higher than most kernel
+ * threads.
+ * @constant kIOTimerEventSourceOptionsPriorityKernel Importance similar to that of normal kernel
+ * threads.
+ * @constant kIOTimerEventSourceOptionsPriorityUser Importance similar to that of normal user threads.
+ * @constant kIOTimerEventSourceOptionsPriorityLow Very low importance.
+ * @constant kIOTimerEventSourceOptionsPriorityWorkLoop Run the callout on the thread of the IOWorkLoop
+ * the event source has been added to.
+ * @constant kIOTimerEventSourceOptionsAllowReenter Allow the callout to be rescheduled and potentially
+ * re-entered, if the IOWorkLoop lock has been released (eg. with commandSleep) during its invocation.
+ * @constant kIOTimerEventSourceOptionsDefault Recommended default options.