Loading...
iokit/Kernel/IOPowerConnection.cpp xnu-792.21.3 xnu-1228
--- xnu/xnu-792.21.3/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;
+}