summaryrefslogblamecommitdiffstats
path: root/cpukit/rtems/src/rtemsbuildid.c
blob: 069812a3d5e972c8d15a8a53f4075910c927f787 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

        
  
                                  
  

                                                                  


   
                            



                                                           
                                         





                    
                               
 
                                



                 





                                                   
 
                        





                 
                                                    
 
/**
 * @file
 *
 * @ingroup RTEMSImplClassicObject
 *
 * @brief This source file contains the implementation of
 *   rtems_build_id() as a binding for languages other than C/C++.
 */

/*
 *  COPYRIGHT (c) 1989-2013.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/rtems/object.h>

static rtems_id _RTEMS_Build_id(
  uint32_t api,
  uint32_t class,
  uint32_t node,
  uint32_t index
)
{
  return rtems_build_id( api, class, node, index );
}

#undef rtems_build_id

rtems_id rtems_build_id(
  uint32_t api,
  uint32_t class,
  uint32_t node,
  uint32_t index
)
{
  return _RTEMS_Build_id( api, class, node, index );
}