]> sourceware.org Git - newlib-cygwin.git/commitdiff
* shared.cc (shared_info::initialize): Remove myself check since hMainProc
authorChristopher Faylor <me@cgf.cx>
Fri, 10 Oct 2003 19:07:08 +0000 (19:07 +0000)
committerChristopher Faylor <me@cgf.cx>
Fri, 10 Oct 2003 19:07:08 +0000 (19:07 +0000)
initialization will allow user initialization to work.

winsup/cygwin/ChangeLog
winsup/cygwin/shared.cc

index dfff4fc4ffbdfb892f4dfae00f2895ad28b2e42b..ebfec726d05fafc1f4d24ef012ccf1247f85025a 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-10  Christopher Faylor  <cgf@redhat.com>
+
+       * shared.cc (shared_info::initialize): Remove myself check since
+       hMainProc initialization will allow user initialization to work.
+
 2003-10-09  Yitzchak Scott-Thoennes <sthoenna@efn.org>
 
        * include/sys/mman.h (MAP_FAILED): Define as void *.
@@ -6,8 +11,8 @@
 
        * dcrt0.cc (hMainProc): Initialize to useful value for use when dll is
        dynamically loaded.
-       (shared_info::initialize): Don't initialize user stuff if myself
-       doesn't exist.
+       * shared.cc (shared_info::initialize): Don't initialize user stuff if
+       myself doesn't exist.
 
 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
 
index b3da33b666035445025fd5acbd6030546bcd7fb8..911465aeaed7ebc554209ecee0861a8c563352d2 100644 (file)
@@ -220,8 +220,7 @@ shared_info::initialize ()
   if (!cygheap)
     {
       cygheap_init ();
-      if (myself)
-       cygheap->user.init ();
+      cygheap->user.init ();
     }
 
   heap_init ();
This page took 0.0381 seconds and 5 git commands to generate.