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/hmdevice.cpp

    r9653 r9748  
    1 /* $Id: hmdevice.cpp,v 1.33 2003-01-10 12:57:12 sandervl Exp $ */
     1/* $Id: hmdevice.cpp,v 1.34 2003-02-04 11:28:56 sandervl Exp $ */
    22
    33/*
     
    135135 * Author    : Patrick Haller [Wed, 1998/02/11 20:44]
    136136 *****************************************************************************/
    137 BOOL HMDeviceHandler::DuplicateHandle(PHMHANDLEDATA pHMHandleData, HANDLE  srcprocess,
     137BOOL HMDeviceHandler::DuplicateHandle(HANDLE srchandle, PHMHANDLEDATA pHMHandleData, HANDLE  srcprocess,
    138138                               PHMHANDLEDATA pHMSrcHandle,
    139139                               HANDLE  destprocess,
     
    15071507  return FALSE;
    15081508}
     1509/*****************************************************************************
     1510 * Name      : DWORD HMDeviceHandler::SetThreadContext
     1511 * Purpose   :
     1512 * Variables :
     1513 * Result    :
     1514 * Remark    :
     1515 * Status    :
     1516 *
     1517 * Author    : SvL
     1518 *****************************************************************************/
     1519BOOL HMDeviceHandler::GetThreadTimes(HANDLE        hThread,
     1520                                     PHMHANDLEDATA pHMHandleData,
     1521                                     LPFILETIME lpCreationTime,
     1522                                     LPFILETIME lpExitTime,
     1523                                     LPFILETIME lpKernelTime,
     1524                                     LPFILETIME lpUserTime)
     1525{
     1526  dprintf(("Kernel32: ERROR: GetThreadTimes(%08xh,%08xh,%08xh,%08xh,%08xh) not implemented.\n",
     1527           hThread,
     1528           lpCreationTime,
     1529           lpExitTime,
     1530           lpKernelTime,
     1531           lpUserTime));
     1532
     1533  return FALSE;
     1534}
     1535
    15091536/*****************************************************************************
    15101537 * Name      : DWORD HMDeviceHandler::TerminateThread
Note: See TracChangeset for help on using the changeset viewer.