]> sourceware.org Git - newlib-cygwin.git/commitdiff
* cygwin.sc: Place .cygwin_dll_common.
authorChristopher Faylor <me@cgf.cx>
Thu, 9 Jun 2005 19:29:27 +0000 (19:29 +0000)
committerChristopher Faylor <me@cgf.cx>
Thu, 9 Jun 2005 19:29:27 +0000 (19:29 +0000)
* init.cc (threadfunc_ix): Use a more common name for the section name.

winsup/cygwin/ChangeLog
winsup/cygwin/cygwin.sc
winsup/cygwin/init.cc

index 43f483b1090b6f59e33876195064ec1a6ec0c947..eb1c6b2b525109b6f6b363ad2b70397fc3b95fb4 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-09  Christopher Faylor  <cgf@timesys.com>
+
+       * cygwin.sc: Place .cygwin_dll_common.
+       * init.cc (threadfunc_ix): Use a more common name for the section name.
+
 2005-06-09  Christopher Faylor  <cgf@timesys.com>
 
        * include/pthread.h (PTHREAD_MUEXT_INITIALIZER): Change to
index 83b280f4954192ff8ef93bee25e4f1cf25adabe1..598690f22b28f918c73af6e87903728d911f222f 100644 (file)
@@ -81,6 +81,10 @@ SECTIONS
     . = ALIGN(16);
     __cygheap_start = ABSOLUTE(.);
   }
+  .cygwin_dll_common ALIGN(__section_alignment__):
+  {
+    *(.cygwin_dll_common)
+  }
   .cygheap ALIGN(__section_alignment__):
   {
     __cygheap_mid = .;
index a0d34f51acf583d197182b8ae75da7511cc560e3..ed849b11be6d3ce18fca741e4e763a259c311ce5 100644 (file)
@@ -18,7 +18,7 @@ details. */
 
 int NO_COPY dynamically_loaded;
 static char *search_for = (char *) cygthread::stub;
-unsigned threadfunc_ix[8] __attribute__((section ("cygwin_dll_common"), shared));
+unsigned threadfunc_ix[8] __attribute__((section (".cygwin_dll_common"), shared));
 DWORD tls_func;
 
 HANDLE sync_startup;
This page took 0.036626 seconds and 5 git commands to generate.