Events and Threads
-
Hello at all, imagine the following situation: You have created an auto-signaled event, and multiple Threads are waiting for this event to get signaled. The event in addition gets signaled, and one thread starts its execution which implied the event has gotton nonsignaled. So my question is, when does the event gets again signaled ? Thanks in advance!
-
Hello at all, imagine the following situation: You have created an auto-signaled event, and multiple Threads are waiting for this event to get signaled. The event in addition gets signaled, and one thread starts its execution which implied the event has gotton nonsignaled. So my question is, when does the event gets again signaled ? Thanks in advance!
What made it get signalled originally? If some process/thread is running and periodically signalling, then presumably it can signal again. If not, something has to happen to kick-start. Would the thread that was started not signal the thread prior to waiting on the event? Steve S
-
What made it get signalled originally? If some process/thread is running and periodically signalling, then presumably it can signal again. If not, something has to happen to kick-start. Would the thread that was started not signal the thread prior to waiting on the event? Steve S