aboutsummaryrefslogtreecommitdiff
path: root/include/odp/arch/default/api/abi/shared_memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/odp/arch/default/api/abi/shared_memory.h')
-rw-r--r--include/odp/arch/default/api/abi/shared_memory.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/odp/arch/default/api/abi/shared_memory.h b/include/odp/arch/default/api/abi/shared_memory.h
deleted file mode 100644
index 5805f957f..000000000
--- a/include/odp/arch/default/api/abi/shared_memory.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/* Copyright (c) 2017, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#ifndef ODP_ABI_SHM_H_
-#define ODP_ABI_SHM_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/** @internal Dummy type for strong typing */
-typedef struct { char dummy; /**< @internal Dummy */ } _odp_abi_shm_t;
-
-/** @ingroup odp_shared_memory
- * @{
- */
-
-typedef _odp_abi_shm_t *odp_shm_t;
-
-#define ODP_SHM_INVALID ((odp_shm_t)0)
-#define ODP_SHM_NULL ODP_SHM_INVALID
-#define ODP_SHM_NAME_LEN 32
-
-/**
- * @}
- */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif