source: rtems/cpukit/score/src/objectgetinfoid.c @ 8a8b95aa

5
Last change on this file since 8a8b95aa was 4c20da4b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/04/19 at 07:18:11

doxygen: Rename Score* groups in RTEMSScore*

Update #3706

  • Property mode set to 100644
File size: 605 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Get Information of an Object from an ID
5 *
6 * @ingroup RTEMSScore
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2008.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifdef HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/score/objectimpl.h>
23
24Objects_Information *_Objects_Get_information_id(
25  Objects_Id  id
26)
27{
28  return _Objects_Get_information(
29    _Objects_Get_API( id ),
30    _Objects_Get_class( id )
31  );
32}
Note: See TracBrowser for help on using the repository browser.