Wakes up all threads that are waiting on this object's monitor.
void __cdecl monitorNotifyAll(UINT_PTR object);
object | The synchronization object. |
You can use the ObjectMonitorNotifyAll macro to automatically cast the synchronization object to an integer and call this method. This method is the native equivalent of the Java.lang.Object.notifyAll method.