osInc.h 2.9 KB
Newer Older
S
TD-4088  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

S
TD-4088  
Shengliang Guan 已提交
16 17
#ifndef TDENGINE_OS_INC_H
#define TDENGINE_OS_INC_H
S
TD-4088  
Shengliang Guan 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74

#ifdef __cplusplus
extern "C" {
#endif

#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <inttypes.h>
#include <locale.h>
#include <math.h>
#include <pthread.h>
#include <semaphore.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#if defined(_TD_LINUX_64) || defined(_TD_LINUX_32) || defined(_TD_MIPS_64)  || defined(_TD_ARM_32) || defined(_TD_ARM_64)  || defined(_TD_DARWIN_64)
  #include <arpa/inet.h>
  #include <dirent.h>
  #include <fcntl.h>
  #include <inttypes.h>
  #include <libgen.h>
  #include <limits.h>
  #include <netdb.h>
  #include <netinet/in.h>
  #include <netinet/ip.h>
  #include <netinet/tcp.h>
  #include <netinet/udp.h>
  #include <pwd.h>
  #include <regex.h>
  #include <stddef.h>
  #include <strings.h>
  #include <sys/file.h>
  #include <sys/ioctl.h>
  #include <sys/mman.h>
  #include <sys/socket.h>
  #include <sys/stat.h>
  #include <sys/syscall.h>
  #include <sys/statvfs.h>
  #include <sys/time.h>
  #include <sys/types.h>
  #include <sys/uio.h>
  #include <sys/un.h>
  #include <sys/utsname.h>
  #include <syslog.h>
  #include <termios.h>
  #include <unistd.h>
  #include <wchar.h>
  #include <wordexp.h>
  #include <wctype.h>

S
TD-4088  
Shengliang Guan 已提交
75
  #if defined(_TD_DARWIN_64)
S
TD-4088  
Shengliang Guan 已提交
76 77 78
    #include <dispatch/dispatch.h>
    #include "osEok.h"
  #else
H
Haojun Liao 已提交
79 80
    #include <argp.h>
    #include <dlfcn.h>
S
TD-4088  
Shengliang Guan 已提交
81 82 83 84 85 86 87
    #include <endian.h>
    #include <linux/sysctl.h>
    #include <poll.h>
    #include <sys/epoll.h>
    #include <sys/eventfd.h>
    #include <sys/resource.h>
    #include <sys/sendfile.h>
88
    #include <sys/prctl.h>
S
TD-4088  
Shengliang Guan 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120

    #if !(defined(_ALPINE))
      #include <error.h>
    #endif
  #endif
#endif

#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)
  #include <intrin.h>
  #include <io.h>
  #include "winsock2.h"
  #include <WS2tcpip.h>
  #include <winbase.h>
  #include <Winsock2.h>
  #include <time.h>
  #include <conio.h>
  #include "msvcProcess.h"
  #include "msvcDirect.h"
  #include "msvcFcntl.h"
  #include "msvcLibgen.h"
  #include "msvcStdio.h"
  #include "msvcUnistd.h"
  #include "msvcLibgen.h"
  #include "sys/msvcStat.h"
  #include "sys/msvcTypes.h"
#endif

#ifdef __cplusplus
}
#endif

#endif