Loading...
--- xnu/xnu-792.22.5/iokit/Kernel/IOPowerConnection.cpp
+++ xnu/xnu-1228/iokit/Kernel/IOPowerConnection.cpp
@@ -176,3 +176,23 @@
{
return awaitingAck;
}
+
+
+// **********************************************************************************
+// setReadyFlag
+//
+// **********************************************************************************
+void IOPowerConnection::setReadyFlag( bool flag )
+{
+ readyFlag = flag;
+}
+
+
+// **********************************************************************************
+// getReadyFlag
+//
+// **********************************************************************************
+bool IOPowerConnection::getReadyFlag( void ) const
+{
+ return readyFlag;
+}