source: rtems/cpukit/score/src/objectgetinfoid.c @ 8932955

4.104.114.95
Last change on this file since 8932955 was 8932955, checked in by Joel Sherrill <joel.sherrill@…>, on 02/04/08 at 17:16:37

2008-02-04 Joel Sherrill <joel.sherrill@…>

  • rtems/src/rtemsobjectsetname.c, score/src/objectgetinfoid.c, score/src/objectgetnameasstring.c, score/src/objectidtoname.c: Handle Object Id of SELF.
  • Property mode set to 100644
File size: 574 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2008.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/system.h>
17#include <rtems/score/object.h>
18#include <rtems/score/thread.h>
19
20Objects_Information *_Objects_Get_information_id(
21  Objects_Id  id
22)
23{
24  return _Objects_Get_information(
25    _Objects_Get_API( id ),
26    _Objects_Get_class( id )
27  );
28}
Note: See TracBrowser for help on using the repository browser.