This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


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

Re: PATCH: Re: eh_globals.cc compilation errors with -threads under hpux 10.20


In article <200105232245.SAA21482@hiauly1.hia.nrc.ca>,
"John David Anglin" <dave@hiauly1.hia.nrc.ca> writes:

> Here how thing stand.  Thoughts?  I know there are more testsuite errors
> than before under i686 linux and I don't know why.  On the otherhand,
> we weren't reaaly using the posix thread stuff.

I have to go to a hockey game right now.  I will review this in detail
tonight.

Quick comment: I would like to see this entire hunk go away not be
extended.  If we use gthr.h properly, then it should be unneeded:

    no | none | single)
       THREADH=threads-no.h
       ;;
+    dce)
+      THREADH=threads-dce.h
+      ;;
     posix | pthreads)
       THREADH=threads-posix.h
       ;;
-    decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
+    decosf1 | irix | mach | os2 | solaris | win32 | vxworks)
       AC_MSG_WARN(disabling unsupported thread package $target_thread_file)
       THREADH=threads-no.h
       ;;

Otherwise, in general, I think you took it the way I was thinking.


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