Re: [PATCH 1/5] shell32: Added SHCNRF_InterruptLevel flag support to SHChangeNotifyRegister
1 Feb
2011
1 Feb
'11
12:34 p.m.
Piotr Caban <piotr(a)codeweavers.com> writes:
void InitChangeNotifications(void) { + watched_directories = 0; + interrupts_server_terminate = CreateEventW(NULL, FALSE, FALSE, NULL); + interrupts_server = CreateThread(NULL, 0, interrupts_server_thread, NULL, 0, NULL); }
This needs to be done on demand. You can't create a thread in every process on the off chance that it would use interrupt notifications. Probably you can use the thread pool for this. -- Alexandre Julliard julliard(a)winehq.org
5431
Age (days ago)
5431
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard