f90f4c58235b2ff616aa4d6b3e6aa1f1fb34f75a
[o-du/l2.git] / src / rlog / rl_platform.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
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                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
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 *******************************************************************************/
18
19 /********************************************************************20**
20
21      Name:     Radisys Logging Framework
22      Type:     C include file
23      Desc:     This file contains logging framework include file.
24      File:     rl_interface.h
25
26 *********************************************************************21*/
27 /***************************************************************************
28 @ description: This is header file is used for platform specific 
29 implementaion.
30 ****************************************************************************/
31
32 #ifndef __RL_PLATFORME_H__
33
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);
41
42 #endif /* __RL_PLATFORME_H__ */
43
44 /**********************************************************************
45          End of file
46 **********************************************************************/