RTEMS
objectapimaximumclass.c
Go to the documentation of this file.
1 
8 /*
9  * COPYRIGHT (c) 1989-2008.
10  * On-Line Applications Research Corporation (OAR).
11  *
12  * The license and distribution terms for this file may be
13  * found in the file LICENSE in this distribution or at
14  * http://www.rtems.org/license/LICENSE.
15  */
16 
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20 
21 #include <rtems/score/objectimpl.h>
22 
24  uint32_t api
25 )
26 {
27  switch (api) {
28  case OBJECTS_INTERNAL_API:
30  case OBJECTS_CLASSIC_API:
32  case OBJECTS_POSIX_API:
34  case OBJECTS_NO_API:
35  default:
36  break;
37  }
38  return 0;
39 }
40 
#define OBJECTS_RTEMS_CLASSES_LAST
Definition: objectimpl.h:54
Inlined Routines in the Object Handler.
#define OBJECTS_INTERNAL_CLASSES_LAST
Definition: objectimpl.h:51
#define OBJECTS_POSIX_CLASSES_LAST
Definition: objectimpl.h:57
unsigned int _Objects_API_maximum_class(uint32_t api)
Returns highest numeric value of a valid API for the specified API.