Ignore:
Timestamp:
Feb 4, 2003, 12:29:03 PM (23 years ago)
Author:
sandervl
Message:

Support DuplicateHandle for threads; cleaned up semaphore code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r9653 r9748  
    1 /* $Id: stubs.cpp,v 1.37 2003-01-10 12:57:14 sandervl Exp $
     1/* $Id: stubs.cpp,v 1.38 2003-02-04 11:29:02 sandervl Exp $
    22 *
    33 * Win32 KERNEL32 Subsystem for OS/2
     
    10611061
    10621062
    1063 /*****************************************************************************
    1064  * Name      : BOOL GetThreadTimes
    1065  * Purpose   : The GetThreadTimes function obtains timing information about a specified thread.
    1066  * Parameters: HANDLE     hThread       specifies the thread of interest
    1067  *             LPFILETIME lpCreationTime when the thread was created
    1068  *             LPFILETIME lpExitTime     when the thread exited
    1069  *             LPFILETIME lpKernelTime   time the thread has spent in kernel mode
    1070  *             LPFILETIME lpUserTime     time the thread has spent in user mode
    1071  * Variables :
    1072  * Result    : TRUE / FALSE
    1073  * Remark    :
    1074  * Status    : UNTESTED STUB
    1075  *
    1076  * Author    : Patrick Haller [Mon, 1998/06/15 08:00]
    1077  *****************************************************************************/
    1078 
    1079 BOOL WIN32API GetThreadTimes(HANDLE     hThread,
    1080                                 LPFILETIME lpCreationTime,
    1081                                 LPFILETIME lpExitTime,
    1082                                 LPFILETIME lpKernelTime,
    1083                                 LPFILETIME lpUserTime)
    1084 {
    1085   dprintf(("Kernel32: GetThreadTimes(%08xh,%08xh,%08xh,%08xh,%08xh) not implemented.\n",
    1086            hThread,
    1087            lpCreationTime,
    1088            lpExitTime,
    1089            lpKernelTime,
    1090            lpUserTime));
    1091 
    1092   return (FALSE);
    1093 }
    10941063
    10951064
Note: See TracChangeset for help on using the changeset viewer.