This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: what's new


   From: Ulrich Drepper <drepper@cygnus.com>
   Date: 27 Jun 1998 00:10:50 -0700

   So, please compile using --fstrict-aliasing on other platforms as
   well so that we can signal ok to the egcs people to add this
   optimization to -O2.

Looks fine on sparc32 with latest egcs as well.

Although I had to make the following change to linuxthreads to get a
link:

--- manager.c.~1~	Sat Jun 27 02:58:32 1998
+++ manager.c	Sat Jun 27 04:31:56 1998
@@ -121,7 +121,7 @@
   ufd.events = POLLIN;
   /* Enter server loop */
   while(1) {
-    n = __poll(&ufd, 1, 2000);
+    n = poll(&ufd, 1, 2000);
 
     /* Check for termination of the main thread */
     if (getppid() == 1) {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]