Changeset 11712
- Timestamp:
- Feb 11, 2009, 1:14:59 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/thread_manager.c
r11710 r11712 61 61 62 62 BOOL (*pCancelIoEx)(HANDLE, OVERLAPPED*) = NULL; 63 64 ; 63 BOOL (*pCancelSynchronousIo)(HANDLE) = NULL; 64 65 65 66 66 … … 119 119 } 120 120 } 121 if (pCancelSynchronousIo) { 122 pCancelSynchronousIo(hthread); 123 } 121 124 QueueUserAPC(nullAPC, hthread, 0); 122 125 ResumeThread(hthread); … … 1618 1621 lisp_global(TCR_KEY) = TlsAlloc(); 1619 1622 pCancelIoEx = windows_find_symbol(NULL, "CancelIoEx"); 1623 pCancelSynchronousIo = windows_find_symbol(NULL, "CancelSynchronousIo"); 1620 1624 #else 1621 1625 pthread_key_create((pthread_key_t *)&(lisp_global(TCR_KEY)), shutdown_thread_tcr);
Note: See TracChangeset
for help on using the changeset viewer.