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

S
Shengliang Guan 已提交
35
#ifdef _TD_LINUX_64
36
#include "osLinux64.h"
S
Shengliang Guan 已提交
37 38 39 40 41 42
#endif

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

H
Hui Li 已提交
43
#ifdef _ALPINE
S
Shengliang Guan 已提交
44 45 46
#include "osAlpine.h"
#endif

S
TD-1530  
Shengliang Guan 已提交
47
#ifdef _TD_NINGSI_60
H
Hui Li 已提交
48 49 50
#include "osNingsi.h"
#endif

S
slguan 已提交
51 52
#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)
#include "osWindows.h"
S
Shengliang Guan 已提交
53 54
#endif

S
Shengliang Guan 已提交
55
#include "osAtomic.h"
S
TD-1057  
Shengliang Guan 已提交
56
#include "osCommon.h"
S
Shengliang Guan 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
#include "osDef.h"
#include "osDir.h"
#include "osFile.h"
#include "osLz4.h"
#include "osMath.h"
#include "osMemory.h"
#include "osRand.h"
#include "osSemphone.h"
#include "osSocket.h"
#include "osString.h"
#include "osSysinfo.h"
#include "osTime.h"
#include "osTimer.h"

void osInit();
S
Shengliang Guan 已提交
72 73 74 75 76 77

#ifdef __cplusplus
}
#endif

#endif