osSemaphore.h 2.4 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>

L
Liu Jicong 已提交
25
#if defined(_TD_DARWIN_64)
wafwerar's avatar
wafwerar 已提交
26
#include <dispatch/dispatch.h>
wafwerar's avatar
wafwerar 已提交
27
// typedef struct tsem_s *tsem_t;
wafwerar's avatar
wafwerar 已提交
28
typedef dispatch_semaphore_t tsem_t;
L
Liu Jicong 已提交
29 30 31 32 33 34 35

int tsem_init(tsem_t *sem, int pshared, unsigned int value);
int tsem_wait(tsem_t *sem);
int tsem_timewait(tsem_t *sim, int64_t nanosecs);
int tsem_post(tsem_t *sem);
int tsem_destroy(tsem_t *sem);

S
TD-4088  
Shengliang Guan 已提交
36
#else
L
Liu Jicong 已提交
37 38 39 40 41 42 43 44

#define tsem_t       sem_t
#define tsem_init    sem_init
int tsem_wait(tsem_t *sem);
int tsem_timewait(tsem_t *sim, int64_t nanosecs);
#define tsem_post    sem_post
#define tsem_destroy sem_destroy

S
Shengliang Guan 已提交
45 46
#endif

L
Liu Jicong 已提交
47
#if defined(_TD_DARWIN_64)
wafwerar's avatar
wafwerar 已提交
48 49 50 51 52 53
//  #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 已提交
54

wafwerar's avatar
wafwerar 已提交
55 56 57 58 59
// #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 已提交
60 61
#endif

wafwerar's avatar
wafwerar 已提交
62
bool    taosCheckPthreadValid(TdThread thread);
S
TD-2616  
Shengliang Guan 已提交
63
int64_t taosGetSelfPthreadId();
wafwerar's avatar
wafwerar 已提交
64
int64_t taosGetPthreadId(TdThread thread);
L
Liu Jicong 已提交
65
void    taosResetPthread(TdThread *thread);
wafwerar's avatar
wafwerar 已提交
66
bool    taosComparePthread(TdThread first, TdThread second);
H
Haojun Liao 已提交
67
int32_t taosGetPId();
L
Liu Jicong 已提交
68
int32_t taosGetAppName(char *name, int32_t *len);
S
Shengliang Guan 已提交
69

S
Shengliang Guan 已提交
70 71 72 73
#ifdef __cplusplus
}
#endif

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