RTEMS CPU Kit with SuperCore  4.11.3
Macros | Typedefs
cyg_type.h File Reference
#include <stddef.h>
#include <stdint.h>
Include dependency graph for cyg_type.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define CYG_MACRO_START   do {
 
#define CYG_MACRO_END   } while (0)
 
#define CYG_EMPTY_STATEMENT   CYG_MACRO_START CYG_MACRO_END
 
#define CYG_UNUSED_PARAM(_type_, _name_)
 

Typedefs

typedef uint16_t cyg_uint16
 
typedef uint32_t cyg_uint32
 

Macro Definition Documentation

◆ CYG_UNUSED_PARAM

#define CYG_UNUSED_PARAM (   _type_,
  _name_ 
)
Value:
CYG_MACRO_START \
_type_ __tmp1 = (_name_); \
_type_ __tmp2 = __tmp1; \
__tmp1 = __tmp2; \
CYG_MACRO_END