]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/Arm/machine/lock.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / StdLib / Include / Arm / machine / lock.h
diff --git a/StdLib/Include/Arm/machine/lock.h b/StdLib/Include/Arm/machine/lock.h
deleted file mode 100644 (file)
index be11a47..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-/*     $NetBSD: lock.h,v 1.7 2005/12/28 19:09:29 perry Exp $   */\r
-\r
-/*-\r
- * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.\r
- * All rights reserved.\r
- *\r
- * This code is derived from software contributed to The NetBSD Foundation\r
- * by Jason R. Thorpe.\r
- *\r
- * Redistribution and use in source and binary forms, with or without\r
- * modification, are permitted provided that the following conditions\r
- * are met:\r
- * 1. Redistributions of source code must retain the above copyright\r
- *    notice, this list of conditions and the following disclaimer.\r
- * 2. Redistributions in binary form must reproduce the above copyright\r
- *    notice, this list of conditions and the following disclaimer in the\r
- *    documentation and/or other materials provided with the distribution.\r
- * 3. All advertising materials mentioning features or use of this software\r
- *    must display the following acknowledgement:\r
- *     This product includes software developed by the NetBSD\r
- *     Foundation, Inc. and its contributors.\r
- * 4. Neither the name of The NetBSD Foundation nor the names of its\r
- *    contributors may be used to endorse or promote products derived\r
- *    from this software without specific prior written permission.\r
- *\r
- * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
- * POSSIBILITY OF SUCH DAMAGE.\r
- */\r
-\r
-/*\r
- * Machine-dependent spin lock operations.\r
- *\r
- * NOTE: The SWP insn used here is available only on ARM architecture\r
- * version 3 and later (as well as 2a).  What we are going to do is\r
- * expect that the kernel will trap and emulate the insn.  That will\r
- * be slow, but give us the atomicity that we need.\r
- */\r
-\r
-#ifndef _ARM_LOCK_H_\r
-#define        _ARM_LOCK_H_\r
-\r
-static __inline int\r
-__swp(int __val, volatile int *__ptr)\r
-{\r
-\r
-       __asm volatile("swp %0, %1, [%2]"\r
-           : "=r" (__val) : "r" (__val), "r" (__ptr) : "memory");\r
-       return __val;\r
-}\r
-\r
-static __inline void __attribute__((__unused__))\r
-__cpu_simple_lock_init(__cpu_simple_lock_t *alp)\r
-{\r
-\r
-       *alp = __SIMPLELOCK_UNLOCKED;\r
-}\r
-\r
-static __inline void __attribute__((__unused__))\r
-__cpu_simple_lock(__cpu_simple_lock_t *alp)\r
-{\r
-\r
-       while (__swp(__SIMPLELOCK_LOCKED, alp) != __SIMPLELOCK_UNLOCKED)\r
-               continue;\r
-}\r
-\r
-static __inline int __attribute__((__unused__))\r
-__cpu_simple_lock_try(__cpu_simple_lock_t *alp)\r
-{\r
-\r
-       return (__swp(__SIMPLELOCK_LOCKED, alp) == __SIMPLELOCK_UNLOCKED);\r
-}\r
-\r
-static __inline void __attribute__((__unused__))\r
-__cpu_simple_unlock(__cpu_simple_lock_t *alp)\r
-{\r
-\r
-       *alp = __SIMPLELOCK_UNLOCKED;\r
-}\r
-\r
-#endif /* _ARM_LOCK_H_ */\r