127 lines
2.9 KiB
C
127 lines
2.9 KiB
C
/*
|
|
* 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_DARWIN_H
|
|
#define TDENGINE_OS_DARWIN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <arpa/inet.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <float.h>
|
|
#include <ifaddrs.h>
|
|
#include <libgen.h>
|
|
#include <limits.h>
|
|
#include <locale.h>
|
|
#include <math.h>
|
|
#include <netdb.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/ip.h>
|
|
#include <netinet/tcp.h>
|
|
#include <netinet/udp.h>
|
|
#include <pthread.h>
|
|
#include <pwd.h>
|
|
#include <regex.h>
|
|
#include <semaphore.h>
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <string.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 <syslog.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
#include <wchar.h>
|
|
#include <wordexp.h>
|
|
#include <wctype.h>
|
|
#include <inttypes.h>
|
|
#include <dispatch/dispatch.h>
|
|
#include <fcntl.h>
|
|
#include <sys/utsname.h>
|
|
#include <math.h>
|
|
|
|
#define TAOS_OS_FUNC_FILE_SENDIFLE
|
|
|
|
#define TAOS_OS_FUNC_SEMPHONE
|
|
typedef struct tsem_s *tsem_t;
|
|
int tsem_init(tsem_t *sem, int pshared, unsigned int value);
|
|
int tsem_wait(tsem_t *sem);
|
|
int tsem_post(tsem_t *sem);
|
|
int tsem_destroy(tsem_t *sem);
|
|
|
|
#define TAOS_OS_FUNC_SOCKET_SETSOCKETOPT
|
|
#define TAOS_OS_FUNC_STRING_STR2INT64
|
|
#define TAOS_OS_FUNC_SYSINFO
|
|
#define TAOS_OS_FUNC_TIMER
|
|
|
|
// specific
|
|
#define htobe64 htonll
|
|
typedef int(*__compar_fn_t)(const void *, const void *);
|
|
|
|
// for send function in tsocket.c
|
|
#if defined(MSG_NOSIGNAL)
|
|
#undef MSG_NOSIGNAL
|
|
#endif
|
|
|
|
#define MSG_NOSIGNAL 0
|
|
|
|
#define SO_NO_CHECK 0x1234
|
|
#define SOL_TCP 0x1234
|
|
#define TCP_KEEPIDLE 0x1234
|
|
|
|
#ifndef PTHREAD_MUTEX_RECURSIVE_NP
|
|
#define PTHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE
|
|
#endif
|
|
|
|
#define TAOS_OS_FUNC_PTHREAD_RWLOCK
|
|
|
|
int64_t tsosStr2int64(char *str);
|
|
|
|
#include "eok.h"
|
|
|
|
void taos_block_sigalrm(void);
|
|
|
|
#define TAOS_OS_DEF_EPOLL
|
|
#define TAOS_EPOLL_WAIT_TIME 500
|
|
typedef int32_t SOCKET;
|
|
typedef SOCKET EpollFd;
|
|
#define EpollClose(pollFd) epoll_close(pollFd)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|