Commit 199c99d8 authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32: We no longer need the server start time in kernel32.

parent a5ff4b80
......@@ -41,8 +41,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(process);
extern int CDECL __wine_set_signal_handler(unsigned, int (*)(unsigned));
static ULONGLONG server_start_time;
/***********************************************************************
* set_entry_point
*/
......@@ -83,12 +81,8 @@ static void set_entry_point( HMODULE module, const char *name, DWORD rva )
*/
static BOOL process_attach( HMODULE module )
{
SYSTEM_TIMEOFDAY_INFORMATION ti;
RTL_USER_PROCESS_PARAMETERS *params = NtCurrentTeb()->Peb->ProcessParameters;
NtQuerySystemInformation( SystemTimeOfDayInformation, &ti, sizeof(ti), NULL );
server_start_time = ti.liKeBootTime.QuadPart;
/* Setup registry locale information */
LOCALE_InitRegistry();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment