os.h 1.5 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef TDENGINE_OS_H
#define TDENGINE_OS_H

#ifdef __cplusplus
extern "C" {
#endif

#ifdef _TD_DARWIN_64
S
slguan 已提交
24
#include "osDarwin.h"
S
Shengliang Guan 已提交
25 26
#endif

S
TD-1530  
Shengliang Guan 已提交
27
#ifdef _TD_ARM_64
28 29 30
#include "osArm64.h"
#endif

S
TD-1530  
Shengliang Guan 已提交
31
#ifdef _TD_ARM_32
S
TD-1530  
Shengliang Guan 已提交
32 33 34
#include "osArm32.h"
#endif

35 36 37 38
#ifdef _TD_MIPS_64
#include "osMips64.h"
#endif

S
Shengliang Guan 已提交
39
#ifdef _TD_LINUX_64
40
#include "osLinux64.h"
S
Shengliang Guan 已提交
41 42 43 44 45 46
#endif

#ifdef _TD_LINUX_32
#include "osLinux32.h"
#endif

H
Hui Li 已提交
47
#ifdef _ALPINE
S
Shengliang Guan 已提交
48 49 50
#include "osAlpine.h"
#endif

S
TD-1530  
Shengliang Guan 已提交
51
#ifdef _TD_NINGSI_60
H
Hui Li 已提交
52 53 54
#include "osNingsi.h"
#endif

S
slguan 已提交
55 56
#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)
#include "osWindows.h"
S
Shengliang Guan 已提交
57 58
#endif

S
TD-1912  
Shengliang Guan 已提交
59
#include "osDef.h"
S
Shengliang Guan 已提交
60
#include "osAtomic.h"
S
TD-1057  
Shengliang Guan 已提交
61
#include "osCommon.h"
S
Shengliang Guan 已提交
62 63 64 65 66 67 68
#include "osDir.h"
#include "osFile.h"
#include "osLz4.h"
#include "osMath.h"
#include "osMemory.h"
#include "osRand.h"
#include "osSemphone.h"
S
TD-1207  
Shengliang Guan 已提交
69
#include "osSignal.h"
S
Shengliang Guan 已提交
70 71 72 73 74 75 76
#include "osSocket.h"
#include "osString.h"
#include "osSysinfo.h"
#include "osTime.h"
#include "osTimer.h"

void osInit();
S
Shengliang Guan 已提交
77 78 79 80 81 82

#ifdef __cplusplus
}
#endif

#endif