os.h 1.4 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

27
#ifdef _TD_ARM_64_
28 29 30
#include "osArm64.h"
#endif

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

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

#ifdef _TD_ALPINE
#include "osAlpine.h"
#endif

H
Hui Li 已提交
43 44 45 46
#ifdef _TD_NINGSI_60_
#include "osNingsi.h"
#endif

S
slguan 已提交
47 48
#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)
#include "osWindows.h"
S
Shengliang Guan 已提交
49 50
#endif

S
Shengliang Guan 已提交
51
#include "osAtomic.h"
S
TD-1057  
Shengliang Guan 已提交
52
#include "osCommon.h"
S
Shengliang Guan 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
#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 已提交
68 69 70 71 72 73

#ifdef __cplusplus
}
#endif

#endif