RTI Connext Micro
Version 2.4.1.0
Main Page
RTI Connext Micro Documentation
Data Structures
Files
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
osapi_utility_impl.h
Go to the documentation of this file.
1
/*
2
* FILE: osapi_utility_impl.h - Implementation of utility functions
3
*
4
* Copyright 2012-2014 Real-Time Innovations, Inc.
5
*
6
* No duplications, whole or partial, manual or electronic, may be made
7
* without express written permission. Any such copies, or
8
* revisions thereof, must display this notice unaltered.
9
* This code contains trade secrets of Real-Time Innovations, Inc.
10
*
11
* Modification History
12
* --------------------
13
* 24mar2012,tk Written
14
*/
15
/*ce
16
* \file
17
* \brief Utility function implementation
18
*/
19
#ifndef osapi_utility_impl_h
20
#define osapi_utility_impl_h
21
22
23
#define OSAPI_Utility_max(l, r) (((l) > (r)) ? (l) : (r))
24
#define OSAPI_Utility_min(l, r) (((l) < (r)) ? (l) : (r))
25
26
#endif
/* osapi_utility_impl_h */
RTI Connext Micro Version 2.4.1.0
Copyright © Thu Nov 20 2014
Real-Time Innovations, Inc