public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: libc-alpha@sourceware.org
Subject: Re: [PATCH v6 04/13] ARC: Atomics and Locking primitives
Date: Thu, 23 Apr 2020 14:20:10 -0300	[thread overview]
Message-ID: <03f4a9b3-b1ca-90fa-0b6a-609a3135267d@linaro.org> (raw)
In-Reply-To: <20200423014126.10417-5-vgupta@synopsys.com>



On 22/04/2020 22:41, Vineet Gupta via Libc-alpha wrote:
> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>

glibc uses copyright assignment to the FSF for contributions, and not
the DCO.

> ---
>  sysdeps/arc/atomic-machine.h      | 69 +++++++++++++++++++++++++++++++
>  sysdeps/arc/nptl/bits/semaphore.h | 32 ++++++++++++++
>  2 files changed, 101 insertions(+)
>  create mode 100644 sysdeps/arc/atomic-machine.h
>  create mode 100644 sysdeps/arc/nptl/bits/semaphore.h
> 

> diff --git a/sysdeps/arc/nptl/bits/semaphore.h b/sysdeps/arc/nptl/bits/semaphore.h
> new file mode 100644
> index 000000000000..772dc4cb9b01
> --- /dev/null
> +++ b/sysdeps/arc/nptl/bits/semaphore.h

This might a good candidate to a refactor to add a Linux default one,
thus avoiding any new architecture to copy/paste it.

> @@ -0,0 +1,32 @@
> +/* Machine-specific POSIX semaphore type layouts.  ARC version.
> +   Copyright (C) 2002-2020 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <https://www.gnu.org/licenses/>.  */
> +
> +#ifndef _SEMAPHORE_H
> +# error "Never use <bits/semaphore.h> directly; include <semaphore.h> instead."
> +#endif
> +
> +#define __SIZEOF_SEM_T	16
> +
> +/* Value returned if `sem_open' failed.  */
> +#define SEM_FAILED      ((sem_t *) 0)
> +
> +typedef union
> +{
> +  char __size[__SIZEOF_SEM_T];
> +  long int __align;
> +} sem_t;
> 

  reply	other threads:[~2020-04-23 17:20 UTC|newest]

Thread overview: 77+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-23  1:41 [PATCH v6 00/13] glibc port to ARC processors Vineet Gupta
2020-04-23  1:41 ` [PATCH v6 01/13] ARC: ABI Implementation Vineet Gupta
2020-05-27 18:26   ` Adhemerval Zanella
2020-05-27 22:15     ` Vineet Gupta
2020-05-29 13:56       ` Adhemerval Zanella
2020-06-03 20:05     ` Vineet Gupta
2020-06-04  9:04       ` Florian Weimer
2020-06-04 19:01         ` Vineet Gupta
2020-06-04 23:56           ` Vineet Gupta
2020-04-23  1:41 ` [PATCH v6 02/13] ARC: startup and dynamic linking code Vineet Gupta
2020-05-27 19:05   ` Adhemerval Zanella
2020-05-28  1:14     ` Vineet Gupta
2020-04-23  1:41 ` [PATCH v6 03/13] ARC: Thread Local Storage support Vineet Gupta
2020-05-27 19:17   ` Adhemerval Zanella
2020-05-28  1:36     ` Vineet Gupta
2020-06-01 18:53       ` Adhemerval Zanella
2020-04-23  1:41 ` [PATCH v6 04/13] ARC: Atomics and Locking primitives Vineet Gupta
2020-04-23 17:20   ` Adhemerval Zanella [this message]
2020-04-24  7:23     ` Vineet Gupta
2020-04-27 21:59     ` [PATCH] semaphore: consolidate arch headers into a generic one Vineet Gupta
2020-04-27 22:13       ` Vineet Gupta
2020-05-05 21:02         ` Adhemerval Zanella
2020-05-04 21:21       ` Vineet Gupta
2020-05-05 19:05       ` Adhemerval Zanella
2020-05-05 19:38         ` Vineet Gupta
2020-05-05 21:37           ` Adhemerval Zanella
2020-05-05 22:59         ` Vineet Gupta
2020-05-08 13:32           ` Adhemerval Zanella
2020-04-23  1:41 ` [PATCH v6 05/13] ARC: math soft float support Vineet Gupta
2020-05-29 14:02   ` Adhemerval Zanella
2020-05-29 23:57     ` Vineet Gupta
2020-04-23  1:41 ` [PATCH v6 06/13] ARC: hardware floating point support Vineet Gupta
2020-05-29 14:12   ` Adhemerval Zanella
2020-05-29 22:28     ` Vineet Gupta
2020-05-29 23:50       ` Vineet Gupta
2020-06-02  0:50         ` static inline math functions (was Re: [PATCH v6 06/13] ARC: hardware floating point support) Vineet Gupta
2020-06-02 18:13           ` Joseph Myers
2020-06-02 18:35             ` Adhemerval Zanella
2020-06-02 17:51         ` [PATCH v6 06/13] ARC: hardware floating point support Joseph Myers
2020-06-05  4:44         ` Vineet Gupta
2020-06-05 17:22           ` Adhemerval Zanella
2020-06-02 17:48       ` Joseph Myers
2020-04-23  1:41 ` [PATCH v6 07/13] ARC: Linux Syscall Interface Vineet Gupta
2020-05-29 16:49   ` Adhemerval Zanella
2020-05-30  2:02     ` Vineet Gupta
2020-06-03 19:46     ` Vineet Gupta
2020-06-03 20:04       ` Adhemerval Zanella
2020-06-03 20:17         ` Vineet Gupta
2020-06-04 11:06           ` Adhemerval Zanella
2020-04-23  1:41 ` [PATCH v6 08/13] ARC: Linux ABI Vineet Gupta
2020-05-29 17:05   ` Adhemerval Zanella
2020-05-30  0:16     ` Vineet Gupta
2020-04-23  1:41 ` [PATCH v6 09/13] ARC: Linux Startup and Dynamic Loading Vineet Gupta
2020-06-03 18:02   ` Adhemerval Zanella
2020-04-23  1:41 ` [PATCH v6 10/13] ARC: ABI lists Vineet Gupta
2020-06-03 19:29   ` Adhemerval Zanella
2020-06-05  2:22     ` Vineet Gupta
2020-06-05 18:02       ` Adhemerval Zanella
2020-06-05 21:14         ` Vineet Gupta
2020-06-08  4:12           ` Vineet Gupta
2020-06-08  8:44         ` Florian Weimer
2020-06-08 18:17           ` Adhemerval Zanella
2020-04-23  1:41 ` [PATCH v6 11/13] ARC: Build Infrastructure Vineet Gupta
2020-06-03 19:58   ` Adhemerval Zanella
2020-06-04 15:25     ` Vineet Gupta
2020-06-04 17:05       ` Adhemerval Zanella
2020-06-08  4:18         ` Vineet Gupta
2020-04-23  1:41 ` [PATCH v6 12/13] build-many-glibcs.py: Enable ARC builds Vineet Gupta
2020-06-04 12:08   ` Adhemerval Zanella
2020-04-23  1:41 ` [PATCH v6 13/13] Documentation for ARC port Vineet Gupta
2020-06-04 12:16   ` Adhemerval Zanella
2020-06-04 15:36     ` Vineet Gupta
2020-05-04 21:21 ` [PATCH v6 00/13] glibc port to ARC processors Vineet Gupta
2020-05-15  0:45   ` Vineet Gupta
2020-05-27  1:49     ` Vineet Gupta
2020-05-27 16:41       ` Adhemerval Zanella
2020-05-27 18:38         ` Vineet Gupta

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=03f4a9b3-b1ca-90fa-0b6a-609a3135267d@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).