summaryrefslogtreecommitdiffstats
path: root/spec/if/rtems/basedefs/container-of.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/if/rtems/basedefs/container-of.yml')
-rw-r--r--spec/if/rtems/basedefs/container-of.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/spec/if/rtems/basedefs/container-of.yml b/spec/if/rtems/basedefs/container-of.yml
deleted file mode 100644
index 1d4070f5..00000000
--- a/spec/if/rtems/basedefs/container-of.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
-brief: |
- Returns the pointer to the container of a specified member pointer.
-copyrights:
-- Copyright (C) 2014 embedded brains GmbH (http://www.embedded-brains.de)
-definition:
- default: |
- ( (_type *) ( (${/if/c/uintptr_t:/name}) ( _m ) - ${/if/c/offsetof:/name}( _type, _member_name ) ) )
- variants: []
-description: null
-enabled-by: true
-interface-type: macro
-links:
-- role: interface-placement
- uid: header
-- role: interface-ingroup
- uid: group
-name: RTEMS_CONTAINER_OF
-notes: null
-params:
-- description: |
- is the pointer to a member of the container.
- dir: null
- name: _m
-- description: |
- is the type of the container.
- dir: null
- name: _type
-- description: |
- is the designator name of the container member.
- dir: null
- name: _member_name
-return:
- return: |
- Returns the pointer to the container of a specified member pointer.
- return-values: []
-type: interface