From 9a089f21ea4862705c6c996502c089b8d18fc833 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sun, 28 Jan 2001 06:23:42 +0000 Subject: * cygheap.cc (init_cheap): Move username initialization. (cygheap_init): Here. * shared_info.h (mount_info): Add a sys_mount_table_counter field. (shared_info): Ditto. * path.cc (mount_info::conv_to_win32_path): Check that our mount table is in sync with the system mount table and reinitialize it if not. (mount_info::add_reg_mount): Bump sys_mount_table counters if the system mount table changes. (mount_info::del_reg_mount): Ditto. (mount_info::write_cygdrive_info_to_registry): Ditto. (mount_info::remove_cygdrive_info_from_registry): Ditto. --- winsup/cygwin/cygheap.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'winsup/cygwin/cygheap.cc') diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index c9081aa5d..10c16d1a2 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -32,14 +32,6 @@ init_cheap () if (!cygheap) api_fatal ("Couldn't reserve space for cygwin's heap, %E"); cygheap_max = cygheap + 1; - - char username[MAX_USER_NAME]; - DWORD username_len = MAX_USER_NAME; - - if (!GetUserName (username, &username_len)) - cygheap->user.set_name ("unknown"); - else - cygheap->user.set_name (username); } #define pagetrunc(x) ((void *) (((DWORD) (x)) & ~(4096 - 1))) @@ -75,6 +67,14 @@ cygheap_init () { cygheap_protect = new_muto (FALSE, "cygheap_protect"); _csbrk (0); + + char username[MAX_USER_NAME]; + DWORD username_len = MAX_USER_NAME; + + if (!GetUserName (username, &username_len)) + cygheap->user.set_name ("unknown"); + else + cygheap->user.set_name (username); } /* Copyright (C) 1997, 2000 DJ Delorie */ -- cgit v1.2.3