]>
git.saurik.com Git - apple/xnu.git/blob - iokit/Kernel/IOCommandGate.cpp
2 * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 #include <IOKit/IOCommandGate.h>
23 #include <IOKit/IOWorkLoop.h>
24 #include <IOKit/IOReturn.h>
25 #include <IOKit/IOTimeStamp.h>
27 #define super IOEventSource
29 OSDefineMetaClassAndStructors(IOCommandGate
, IOEventSource
)
30 OSMetaClassDefineReservedUnused(IOCommandGate
, 0);
31 OSMetaClassDefineReservedUnused(IOCommandGate
, 1);
32 OSMetaClassDefineReservedUnused(IOCommandGate
, 2);
33 OSMetaClassDefineReservedUnused(IOCommandGate
, 3);
34 OSMetaClassDefineReservedUnused(IOCommandGate
, 4);
35 OSMetaClassDefineReservedUnused(IOCommandGate
, 5);
36 OSMetaClassDefineReservedUnused(IOCommandGate
, 6);
37 OSMetaClassDefineReservedUnused(IOCommandGate
, 7);
39 bool IOCommandGate::checkForWork() { return false; }
41 bool IOCommandGate::init(OSObject
*inOwner
, Action inAction
)
43 return super::init(inOwner
, (IOEventSource::Action
) inAction
);
47 IOCommandGate::commandGate(OSObject
*inOwner
, Action inAction
)
49 IOCommandGate
*me
= new IOCommandGate
;
51 if (me
&& !me
->init(inOwner
, inAction
)) {
59 IOReturn
IOCommandGate::runCommand(void *arg0
, void *arg1
,
60 void *arg2
, void *arg3
)
65 return kIOReturnNotPermitted
;
68 return kIOReturnNoResources
;
70 // closeGate is recursive so don't worry if we already hold the lock.
71 IOTimeStampConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
72 (unsigned int) action
, (unsigned int) owner
);
75 res
= (*(Action
) action
)(owner
, arg0
, arg1
, arg2
, arg3
);
81 IOReturn
IOCommandGate::runAction(Action inAction
,
82 void *arg0
, void *arg1
,
83 void *arg2
, void *arg3
)
88 return kIOReturnNotPermitted
;
91 return kIOReturnBadArgument
;
93 IOTimeStampConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
94 (unsigned int) inAction
, (unsigned int) owner
);
96 // closeGate is recursive so don't worry if we already hold the lock.
98 res
= (*inAction
)(owner
, arg0
, arg1
, arg2
, arg3
);
104 IOReturn
IOCommandGate::attemptCommand(void *arg0
, void *arg1
,
105 void *arg2
, void *arg3
)
110 return kIOReturnNotPermitted
;
113 return kIOReturnNoResources
;
115 // Try to hold the lock if can't get return immediately.
117 return kIOReturnCannotLock
;
119 // closeGate is recursive so don't worry if we already hold the lock.
120 IOTimeStampConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
121 (unsigned int) action
, (unsigned int) owner
);
123 res
= (*(Action
) action
)(owner
, arg0
, arg1
, arg2
, arg3
);
129 IOReturn
IOCommandGate::attemptAction(Action inAction
,
130 void *arg0
, void *arg1
,
131 void *arg2
, void *arg3
)
136 return kIOReturnNotPermitted
;
139 return kIOReturnBadArgument
;
141 // Try to close the gate if can't get return immediately.
143 return kIOReturnCannotLock
;
145 IOTimeStampConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
146 (unsigned int) inAction
, (unsigned int) owner
);
148 res
= (*inAction
)(owner
, arg0
, arg1
, arg2
, arg3
);
154 IOReturn
IOCommandGate::commandSleep(void *event
, UInt32 interruptible
)
156 if (!workLoop
->inGate())
157 return kIOReturnNotPermitted
;
159 return sleepGate(event
, interruptible
);
162 void IOCommandGate::commandWakeup(void *event
, bool oneThread
)
164 wakeupGate(event
, oneThread
);