- Timestamp:
- Jun 11, 2002, 6:36:06 PM (23 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/hmcomm.h
r7564 r8647 1 /* $Id: hmcomm.h,v 1.1 3 2001-12-07 11:28:10sandervl Exp $ */1 /* $Id: hmcomm.h,v 1.14 2002-06-11 16:36:06 sandervl Exp $ */ 2 2 3 3 /* … … 15 15 #include <handlemanager.h> 16 16 #include "hmdevice.h" 17 #include "overlappedio.h"17 #include <overlappedio.h> 18 18 19 19 #define MAX_COMPORTS 8 20 20 #define MAGIC_COM 0x12abcd34 21 21 22 #define TIMEOUT_COMM 5022 #define TIMEOUT_COMM 10 23 23 24 24 typedef struct -
trunk/src/kernel32/overlappedio.cpp
r8644 r8647 1 /* $Id: overlappedio.cpp,v 1.1 6 2002-06-11 12:51:43sandervl Exp $ */1 /* $Id: overlappedio.cpp,v 1.17 2002-06-11 16:36:06 sandervl Exp $ */ 2 2 3 3 /* … … 94 94 threadparam->lpOverlappedObj = this; 95 95 hThreadPoll = ::CreateThread(NULL, 32*1024, OverlappedIOThread, (LPVOID)threadparam, 0, &dwThreadId); 96 SetThreadPriority(hThreadPoll, THREAD_PRIORITY_TIME_CRITICAL); 96 97 } 97 98
Note:
See TracChangeset
for help on using the changeset viewer.