Loading...
--- xnu/xnu-344.23/iokit/Kernel/IOWorkLoop.cpp
+++ xnu/xnu-792.6.76/iokit/Kernel/IOWorkLoop.cpp
@@ -57,18 +57,6 @@
#define fFlags loopRestart
-extern "C" extern void stack_privilege( thread_t thread);
-
-void IOWorkLoop::launchThreadMain(void *self)
-{
- register thread_t mythread = current_thread();
-
- // Make sure that this thread always has a kernel stack
- stack_privilege(mythread);
- thread_set_cont_arg((int) self);
- threadMainContinuation();
-}
-
bool IOWorkLoop::init()
{
// The super init and gateLock allocation MUST be done first
@@ -96,7 +84,7 @@
if (addEventSource(controlG) != kIOReturnSuccess)
return false;
- workThread = IOCreateThread(launchThreadMain, (void *) this);
+ workThread = IOCreateThread((thread_continue_t)threadMainContinuation, this);
if (!workThread)
return false;
@@ -109,7 +97,7 @@
IOWorkLoop *me = new IOWorkLoop;
if (me && !me->init()) {
- me->free();
+ me->release();
return 0;
}
@@ -252,12 +240,9 @@
#endif /* KDEBUG */
-void IOWorkLoop::threadMainContinuation()
-{
- IOWorkLoop* self;
- self = (IOWorkLoop *) thread_get_cont_arg();
-
- self->threadMain();
+void IOWorkLoop::threadMainContinuation(IOWorkLoop *self)
+{
+ self->threadMain();
}
void IOWorkLoop::threadMain()
@@ -300,8 +285,7 @@
assert_wait((void *) &workToDo, false);
IOSimpleLockUnlockEnableInterrupt(workToDoLock, is);
- thread_set_cont_arg((int) this);
- thread_block(&threadMainContinuation);
+ thread_block_parameter((thread_continue_t)threadMainContinuation, this);
/* NOTREACHED */
}
@@ -373,8 +357,8 @@
}
IOReturn IOWorkLoop::runAction(Action inAction, OSObject *target,
- void *arg0 = 0, void *arg1 = 0,
- void *arg2 = 0, void *arg3 = 0)
+ void *arg0, void *arg1,
+ void *arg2, void *arg3)
{
IOReturn res;