osSemaphore.h 2.2 KB
Newer Older
S
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
Shengliang Guan 已提交
16 17
#ifndef _TD_OS_SEMPHONE_H_
#define _TD_OS_SEMPHONE_H_
S
Shengliang Guan 已提交
18 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

23 24
#include <semaphore.h>

S
TD-4088  
Shengliang Guan 已提交
25 26 27 28 29 30 31
#if defined (_TD_DARWIN_64)
  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);
#else
S
Shengliang Guan 已提交
32 33
  #define tsem_t sem_t
  #define tsem_init sem_init
S
TD-4088  
Shengliang Guan 已提交
34
  int tsem_wait(tsem_t* sem);
S
Shengliang Guan 已提交
35 36 37 38
  #define tsem_post sem_post
  #define tsem_destroy sem_destroy
#endif

S
TD-4088  
Shengliang Guan 已提交
39
#if defined (_TD_DARWIN_64)
wafwerar's avatar
wafwerar 已提交
40 41 42 43 44 45
//  #define TdThreadRwlock TdThreadMutex
//  #define taosThreadRwlockInit(lock, NULL) taosThreadMutexInit(lock, NULL)
//  #define taosThreadRwlockDestroy(lock) taosThreadMutexDestroy(lock)
// #define taosThreadRwlockWrlock(lock) taosThreadMutexLock(lock)
//  #define taosThreadRwlockRdlock(lock) taosThreadMutexLock(lock)
//  #define taosThreadRwlockUnlock(lock) taosThreadMutexUnlock(lock)
S
slguan 已提交
46

wafwerar's avatar
wafwerar 已提交
47 48 49 50 51
  #define TdThreadSpinlock TdThreadMutex
  #define taosThreadSpinInit(lock, NULL) taosThreadMutexInit(lock, NULL)
  #define taosThreadSpinDestroy(lock) taosThreadMutexDestroy(lock)
  #define taosThreadSpinLock(lock) taosThreadMutexLock(lock)
  #define taosThreadSpinUnlock(lock) taosThreadMutexUnlock(lock)
S
TD-1207  
Shengliang Guan 已提交
52 53
#endif

wafwerar's avatar
wafwerar 已提交
54
bool    taosCheckPthreadValid(TdThread thread);
S
TD-2616  
Shengliang Guan 已提交
55
int64_t taosGetSelfPthreadId();
wafwerar's avatar
wafwerar 已提交
56 57 58
int64_t taosGetPthreadId(TdThread thread);
void    taosResetPthread(TdThread* thread);
bool    taosComparePthread(TdThread first, TdThread second);
H
Haojun Liao 已提交
59
int32_t taosGetPId();
60
int32_t taosGetAppName(char* name, int32_t* len);
S
Shengliang Guan 已提交
61

S
Shengliang Guan 已提交
62 63 64 65
#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
66
#endif /*_TD_OS_SEMPHONE_H_*/