Changeset 9975 for trunk/src/kernel32/thread.cpp
- Timestamp:
- Apr 2, 2003, 2:58:58 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/thread.cpp
r9945 r9975 1 /* $Id: thread.cpp,v 1.5 3 2003-03-27 14:00:54sandervl Exp $ */1 /* $Id: thread.cpp,v 1.54 2003-04-02 12:58:31 sandervl Exp $ */ 2 2 3 3 /* … … 276 276 //****************************************************************************** 277 277 //****************************************************************************** 278 /***************************************************************************** 279 * Name : BOOL SetThreadPriorityBoost 280 * Purpose : The SetThreadPriorityBoost function disables or enables 281 * the ability of the system to temporarily boost the priority 282 * of a thread. 283 * Parameters: Unknown (wrong) 284 * Variables : 285 * Result : Unknown 286 * Remark : 287 * Status : UNTESTED STUB 288 * 289 * Author : Patrick Haller [Tue, 1999/06/08 21:44] 290 *****************************************************************************/ 291 292 BOOL WIN32API SetThreadPriorityBoost(HANDLE hThread, 293 BOOL DisablePriorityBoost) 294 { 295 dprintf(("KERNEL32: SetThreadPriorityBoost(%08xh, %08xh) not implemented\n", 296 hThread,DisablePriorityBoost)); 297 298 return FALSE; 299 } 300 //****************************************************************************** 301 //****************************************************************************** 278 302 Win32Thread::Win32Thread(LPTHREAD_START_ROUTINE pUserCallback, LPVOID lpData, DWORD dwFlags, HANDLE hThread) 279 303 {
Note:
See TracChangeset
for help on using the changeset viewer.