what's new

David S. Miller davem@dm.cobaltmicro.com
Sat Jun 27 05:48:00 GMT 1998


   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) {



More information about the Libc-hacker mailing list