mbox

[hurd,commited,0/7] hurd: add pshared semaphore support.

Message ID 20201216005944.3091900-1-samuel.thibault@ens-lyon.org
Headers

Message

Samuel Thibault Dec. 16, 2020, 12:59 a.m. UTC
  Samuel Thibault (7):
  hurd: Rename LLL_INITIALIZER to LLL_LOCK_INITIALIZER
  hurd: make lll_* take a variable instead of a ptr
  hurd: Add __lll_abstimed_wait_intr
  htl: Add futex-internal.h
  hurd: Add __libc_open and __libc_close
  hurd: Add LLL_PRIVATE and LLL_SHARED
  htl: Add pshared semaphore support

 htl/Makefile                               |   2 +-
 htl/pt-internal.h                          |  33 +++
 hurd/Makefile                              |   1 +
 hurd/RPC_gsync_wait_intr.c                 |   4 +
 hurd/Versions                              |   3 +-
 hurd/hurdlock.c                            |  25 +-
 hurd/hurdlock.h                            |  54 +++--
 hurd/hurdpid.c                             |   2 +-
 hurd/setauth.c                             |   2 +-
 mach/lock-intern.h                         |   8 +-
 mach/lowlevellock.h                        |  47 +++-
 mach/mutex-init.c                          |   2 +-
 sysdeps/htl/bits/semaphore.h               |  20 +-
 sysdeps/htl/futex-internal.h               |  39 +++
 sysdeps/htl/sem-destroy.c                  |  10 +-
 sysdeps/htl/sem-getvalue.c                 |  10 +-
 sysdeps/htl/sem-init.c                     |  10 +-
 sysdeps/htl/sem-post.c                     |  54 +++--
 sysdeps/htl/sem-timedwait.c                | 263 +++++++++++----------
 sysdeps/htl/sem-trywait.c                  |  15 +-
 sysdeps/htl/sem-waitfast.c                 |  55 +++++
 sysdeps/mach/hurd/close.c                  |   1 +
 sysdeps/mach/hurd/htl/pt-mutex-lock.c      |   8 +-
 sysdeps/mach/hurd/htl/pt-mutex-timedlock.c |   6 +-
 sysdeps/mach/hurd/htl/pt-mutex-trylock.c   |   8 +-
 sysdeps/mach/hurd/htl/pt-mutex-unlock.c    |   8 +-
 sysdeps/mach/hurd/htl/pt-mutex.h           |   2 +-
 sysdeps/mach/hurd/i386/Makefile            |   1 -
 sysdeps/mach/hurd/setpgid.c                |   2 +-
 sysdeps/mach/hurd/setsid.c                 |   2 +-
 sysdeps/mach/hurd/tls.h                    |   4 +-
 sysdeps/mach/libc-lock.h                   |  20 +-
 32 files changed, 466 insertions(+), 255 deletions(-)
 create mode 100644 hurd/RPC_gsync_wait_intr.c
 create mode 100644 sysdeps/htl/futex-internal.h
 create mode 100644 sysdeps/htl/sem-waitfast.c