summaryrefslogtreecommitdiff
path: root/sysdeps/mach/bits/spin-lock.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-19 01:59:16 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-19 01:59:16 +0100
commit23deccd65c65f8e695bdf88321bcb7ee9a0d475d (patch)
treee371e63d9b13a7291436250dca0af2b6e72af591 /sysdeps/mach/bits/spin-lock.h
parente708e2af80f403ba868d5cd095bd87913fc88c56 (diff)
Move bits/spin-lock.h to bits/types/__pthread_spinlock_t.h
* sysdeps/mach/bits/spin-lock.h: Move file to... * sysdeps/mach/bits/types/__pthread_spinlock_t.h: ... here. * Makefile (headers): Move bits/spin-lock.h to bits/types/__pthread_spinlock_t.h. * pthread/pt-spin-inlines.c: Update accordingly. * sysdeps/generic/pthread.h: Likewise. * sysdeps/mach/bits/spin-lock-inline.h: Likewise. * sysdeps/pthread/bits/barrier.h: Likewise. * sysdeps/pthread/bits/condition.h: Likewise. * sysdeps/pthread/bits/mutex.h: Likewise. * sysdeps/pthread/bits/once.h: Likewise. * sysdeps/pthread/bits/pthreadtypes.h: Likewise. * sysdeps/pthread/bits/rwlock.h: Likewise. * sysdeps/pthread/bits/semaphore.h: Likewise.
Diffstat (limited to 'sysdeps/mach/bits/spin-lock.h')
-rw-r--r--sysdeps/mach/bits/spin-lock.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/sysdeps/mach/bits/spin-lock.h b/sysdeps/mach/bits/spin-lock.h
deleted file mode 100644
index ef210fc..0000000
--- a/sysdeps/mach/bits/spin-lock.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Definitions of user-visible names for spin locks.
- Copyright (C) 1994-2018 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
- <http://www.gnu.org/licenses/>. */
-
-#ifndef _BITS_SPIN_LOCK_H
-#define _BITS_SPIN_LOCK_H 1
-
-#include <features.h>
-
-__BEGIN_DECLS
-
-/* The type of a spin lock object. */
-typedef volatile int __pthread_spinlock_t;
-
-/* Initializer for a spin lock object. */
-#define __PTHREAD_SPIN_LOCK_INITIALIZER 0
-
-__END_DECLS
-
-#endif /* bits/spin-lock.h */