1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
5 # Licensed under the Apache License, Version 2.0 (the "License"); #
6 # you may not use this file except in compliance with the License. #
7 # You may obtain a copy of the License at #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
11 # Unless required by applicable law or agreed to in writing, software #
12 # distributed under the License is distributed on an "AS IS" BASIS, #
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
14 # See the License for the specific language governing permissions and #
15 # limitations under the License. #
16 ################################################################################
17 *******************************************************************************/
19 /********************************************************************20**
21 Name: Radisys Logging Framework
23 Desc: This file contains logging framework include file.
26 *********************************************************************21*/
27 /***************************************************************************
28 @ description: This is header file is used for platform specific
30 ****************************************************************************/
32 #ifndef __RL_PLATFORME_H__
34 void* rlAlloc(size_t memSize);
35 void rlFree(void* pMem);
36 void* rlCalloc(size_t memSize);
37 void deInitThread(void* pThreadData);
38 void* rlGetThreadSpecData(void);
39 void rlSetThreadSpecificData(const void *pThrData);
40 void rlInitPlatformSpecific(void);
42 #endif /* __RL_PLATFORME_H__ */
44 /**********************************************************************
46 **********************************************************************/