Re: Buildbot (Sourceware): gcc - failed configure (failure) (master)

2023-01-31 Thread LIU Hao via Fortran
在 2023-01-31 21:13, Thomas Schwinge 写道: Hi! On 2023-01-30T14:50:08-0800, Steve Kargl via Fortran wrote: Does the skull and crossbones convey anymore info than the rest of the subject line Buildbot (Sourceware): gcc - failed configure (failure) (master) They convey as much additional i

Re: Adding a new thread model to GCC

2022-10-04 Thread LIU Hao via Fortran
在 2022-10-03 13:03, Bernhard Reutner-Fischer 写道: No, sorry for my brevity. Using __gthread_t like in your patch is correct. I see. In 'libgfortran/io/async.c' there is ``` async_unit *au = u->au; LOCK (&au->lock); thread_unit = u; au->thread = __gthread_self (); ``` so i

Re: Adding a new thread model to GCC

2022-10-02 Thread LIU Hao via Fortran
在 2022-10-02 04:02, Bernhard Reutner-Fischer 写道: On 1 October 2022 20:34:45 CEST, LIU Hao via Gcc-patches wrote: Greetings. The first patch is necessary because somewhere in libgfortran, `pthread_t` is referenced. If the thread model is not `posix`, it fails to compile. One of several sh