c++ Programming Glossary: maximum_wait_objects
Is MAXIMUM_WAIT_OBJECTS really 64? http://stackoverflow.com/questions/5131807/is-maximum-wait-objects-really-64 MAXIMUM_WAIT_OBJECTS really 64 MSDN says that The maximum number of object handles.. 64 MSDN says that The maximum number of object handles is MAXIMUM_WAIT_OBJECTS for waitformultipleobjects... On my computer that was defined..
Increasing MAXIMUM_WAIT_OBJECTS for WaitforMultipleObjects http://stackoverflow.com/questions/5136775/increasing-maximum-wait-objects-for-waitformultipleobjects MAXIMUM_WAIT_OBJECTS for WaitforMultipleObjects What is the simplest way to wait.. What is the simplest way to wait for more objects than MAXIMUM_WAIT_OBJECTS MSDN lists this Create a thread to wait on MAXIMUM_WAIT_OBJECTS.. MSDN lists this Create a thread to wait on MAXIMUM_WAIT_OBJECTS handles then wait on that thread plus the other handles. Use..
|