aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/SAM7S256/Include/xmtx.h
diff options
context:
space:
mode:
authorNicolas Schodet2023-03-06 17:11:21 +0100
committerNicolas Schodet2023-03-06 17:15:07 +0100
commitf013e6c23adb9d068f1ee5a372f9454e5db09797 (patch)
tree8b71d25d6fa0a217bb91bb0347ea051c987d457b /AT91SAM7S256/SAM7S256/Include/xmtx.h
parent391a0d987af64721ad2d8487b60e1c15af0083ff (diff)
Remove unused IAR only files
Building with IAR is no longer supported.
Diffstat (limited to 'AT91SAM7S256/SAM7S256/Include/xmtx.h')
-rw-r--r--AT91SAM7S256/SAM7S256/Include/xmtx.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/AT91SAM7S256/SAM7S256/Include/xmtx.h b/AT91SAM7S256/SAM7S256/Include/xmtx.h
deleted file mode 100644
index 1119946..0000000
--- a/AT91SAM7S256/SAM7S256/Include/xmtx.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* xmtx.h internal header */
-#ifndef _XMTX
-#define _XMTX
-
-#ifndef _SYSTEM_BUILD
-#pragma system_include
-#endif
-
-#include <stdlib.h>
-#ifndef _YVALS
- #include <yvals.h>
-#endif
-
-_C_LIB_DECL
-typedef void *_Rmtx;
-
-__INTRINSIC void _Mtxinit(_Rmtx *);
-__INTRINSIC void _Mtxdst(_Rmtx *);
-__INTRINSIC void _Mtxlock(_Rmtx *);
-__INTRINSIC void _Mtxunlock(_Rmtx *);
-
-#if !_MULTI_THREAD
- #define _Mtxinit(mtx)
- #define _Mtxdst(mtx)
- #define _Mtxlock(mtx)
- #define _Mtxunlock(mtx)
-
- typedef char _Once_t;
-
- #define _Once(cntrl, func) if (*(cntrl) == 0) (func)(), *(cntrl) = 2
- #define _ONCE_T_INIT 0
-#else
- #error "unknown library type"
-#endif /* _MULTI_THREAD */
-_END_C_LIB_DECL
-#endif /* _XMTX */
-
-/*
- * Copyright (c) 1992-2002 by P.J. Plauger. ALL RIGHTS RESERVED.
- * Consult your license regarding permissions and restrictions.
-V3.12:0576 */