From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1062) id 729BB3858401; Sat, 12 Aug 2023 01:00:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 729BB3858401 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Alan Modra To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] gcc: Add 'mcf' thread model support from mcfgthread X-Act-Checkin: binutils-gdb X-Git-Author: LIU Hao X-Git-Refname: refs/heads/master X-Git-Oldrev: 9f2c14223f04597b29bbaeab961aedfceacc52c3 X-Git-Newrev: 3a712247e2c3fee69e682b2bea336df1b9649e60 Message-Id: <20230812010028.729BB3858401@sourceware.org> Date: Sat, 12 Aug 2023 01:00:28 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Aug 2023 01:00:28 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D3a712247e2c3= fee69e682b2bea336df1b9649e60 commit 3a712247e2c3fee69e682b2bea336df1b9649e60 Author: LIU Hao Date: Mon Aug 7 13:07:22 2023 +0200 gcc: Add 'mcf' thread model support from mcfgthread =20 This patch adds the new thread model `mcf`, which implements mutexes and condition variables with the mcfgthread library. =20 Source code for mcfgthread is available at . =20 config/ * gthr.m4 (GCC_AC_THREAD_HEADER): Add new case for `mcf` thread model Diff: --- config/gthr.m4 | 1 + 1 file changed, 1 insertion(+) diff --git a/config/gthr.m4 b/config/gthr.m4 index 4b937306ad0..11996247f15 100644 --- a/config/gthr.m4 +++ b/config/gthr.m4 @@ -22,6 +22,7 @@ case $1 in tpf) thread_header=3Dconfig/s390/gthr-tpf.h ;; vxworks) thread_header=3Dconfig/gthr-vxworks.h ;; win32) thread_header=3Dconfig/i386/gthr-win32.h ;; + mcf) thread_header=3Dconfig/i386/gthr-mcf.h ;; esac AC_SUBST(thread_header) ])