summaryrefslogtreecommitdiff
path: root/sysdeps/mach/bits/spin-lock.h
diff options
context:
space:
mode:
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 */