Que tal listeros, hoy les adjunto una consulta para ayudar a un compañero de trabajo, se las paso por si alguien puede ayudar, desde ya muchas gracias a todos de antemano:
Esta funcion que viene atrás definida devuelve 4 parametros, pero hay dos (lpKernelTime y lpUserTime)que según el MSDN da una cantidad que representa el nro de intervalos de 100 nanosegundos c/u desde el 1ro de enero de 1601. Ahora.....como hacemos para pasar eso a un tiempo normal???, por ejemplo segundos????? Y la otra pregunta seria, si hago la diferencia lpExitTime menos lpCreationTime Me da igual a lpKernelTime + lpUserTime??? Es decir lpExitTime - lpCreationTime = lpKernelTime + lpUserTime Nos estamos volviendo locos con esta cuestion y ya probamos 40 formas distintas de conversión pero no llegamos a nada. Gracias!!!! GetThreadTimes Send Feedback <mailto:[EMAIL PROTECTED]: Windows CE | Version: 5.0 FP NMD | Release: Platform Builder | Title: GetThreadTimes | Filename: wce50lrfgetthreadtimes.htm | Built on: Thursday, February 02, 2006&body=We cannot answer technical su This function obtains timing information about a specified thread. BOOL GetThreadTimes ( HANDLE hThread, LPFILETIME lpCreationTime, LPFILETIME lpExitTime, LPFILETIME lpKernelTime, LPFILETIME lpUserTime ); Parameters hThread [in] Open handle that specifies the thread whose timing information is sought. This handle must be created with THREAD_QUERY_INFORMATION access. lpCreationTime [out] Long pointer to a FILETIME <http://msdn.microsoft.com/en-us/library/ms885586.aspx> structure that receives the creation time of the thread. lpExitTime [out] Long pointer to a FILETIME structure that receives the exit time of the thread. If the thread has not exited, the content of this structure is undefined. lpKernelTime [out] Long pointer to a FILETIME structure that receives the amount of time the thread executed in kernel mode. lpUserTime [out] Pointer to a FILETIME structure that receives the amount of time the thread executed in user mode. Return Values Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError <http://msdn.microsoft.com/en-us/library/ms885627.aspx>. Remarks All times are expressed using FILETIME data structures. Such a structure contains two 32-bit values that combine to form a 64-bit count of 100-nanosecond time units. Thread creation and exit times are points in time expressed as the amount of time that has elapsed since midnight on January 1, 1601 at Greenwich, England. Thread kernel mode and user mode times are amounts of time. For example, if a thread spends one second in kernel mode, this function fills the FILETIME structure specified by lpKernelTime with a 64-bit value of ten million. That is the number of 100-nanosecond units in one second. The following support restrictions are for GetThreadTimes for Windows CE 2.10 through 2.12: * The lpCreationTime, lpExitTime, and lpKernelTime parameters are not supported. They are always returned as zero. * The lpUserTime parameter reports the total time a thread has been running. There is no distinction between user and kernel modes. * The lpUserTime parameter is not valid when the thread exits. Gustavo Alvarez Organizaciòn y Sistemas, Cabal Coop. Ltda. ?4891-2600 Int. 2372 [EMAIL PROTECTED] Nancy Galletti Dpto. de Sistemas - Cabal C.L. TE : 4891-2600 Int.: 2387 / 4891-2654 [EMAIL PROTECTED]
