- Timestamp:
- Oct 21, 2011, 4:44:13 PM (14 years ago)
- Location:
- branches/gcc-kmk
- Files:
-
- 2 edited
-
include/overlappedio.h (modified) (1 diff)
-
src/kernel32/overlappedio.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/include/overlappedio.h
r8838 r21729 146 146 LPASYNCIOREQUEST pending[NR_ASYNC_OPERATIONS]; 147 147 148 friendDWORD CALLBACK OverlappedIOThread(LPVOID lpThreadParam);148 static DWORD CALLBACK OverlappedIOThread(LPVOID lpThreadParam); 149 149 }; 150 150 -
branches/gcc-kmk/src/kernel32/overlappedio.cpp
r10185 r21729 179 179 //****************************************************************************** 180 180 //****************************************************************************** 181 DWORD CALLBACK OverlappedIO Thread(LPVOID lpThreadParam)181 DWORD CALLBACK OverlappedIOHandler::OverlappedIOThread(LPVOID lpThreadParam) 182 182 { 183 183 LPOVERLAPPED_THREAD_PARAM threadparam = (LPOVERLAPPED_THREAD_PARAM)lpThreadParam; … … 281 281 else lpRequest->dwLastError = lpWriteHandler(lpRequest, &dwResult, NULL); 282 282 283 if(!lpRequest->fCancelled) 283 if(!lpRequest->fCancelled) 284 284 { 285 285 lpOverlapped->Internal = lpRequest->dwLastError; … … 533 533 for(int i=ASYNC_INDEX_READ;i<NR_ASYNC_OPERATIONS;i++) 534 534 { 535 while(TRUE) 535 while(TRUE) 536 536 { 537 537 lpRequest = findAndRemoveRequest(i, hHandle);
Note:
See TracChangeset
for help on using the changeset viewer.
