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

S
os  
Shengliang Guan 已提交
19 20
#include <semaphore.h>

S
Shengliang Guan 已提交
21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

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)
S
TD-1207  
Shengliang Guan 已提交
40
  #define pthread_rwlock_t pthread_mutex_t
S
slguan 已提交
41 42
  #define pthread_rwlock_init(lock, NULL) pthread_mutex_init(lock, NULL)
  #define pthread_rwlock_destroy(lock) pthread_mutex_destroy(lock)
S
TD-1207  
Shengliang Guan 已提交
43
  #define pthread_rwlock_wrlock(lock) pthread_mutex_lock(lock)
S
slguan 已提交
44
  #define pthread_rwlock_rdlock(lock) pthread_mutex_lock(lock)
S
TD-1207  
Shengliang Guan 已提交
45
  #define pthread_rwlock_unlock(lock) pthread_mutex_unlock(lock)
S
slguan 已提交
46 47 48 49 50 51

  #define pthread_spinlock_t pthread_mutex_t
  #define pthread_spin_init(lock, NULL) pthread_mutex_init(lock, NULL)
  #define pthread_spin_destroy(lock) pthread_mutex_destroy(lock)
  #define pthread_spin_lock(lock) pthread_mutex_lock(lock)
  #define pthread_spin_unlock(lock) pthread_mutex_unlock(lock)
S
TD-1207  
Shengliang Guan 已提交
52 53
#endif

S
TD-2616  
Shengliang Guan 已提交
54 55 56 57 58
bool    taosCheckPthreadValid(pthread_t thread);
int64_t taosGetSelfPthreadId();
int64_t taosGetPthreadId(pthread_t thread);
void    taosResetPthread(pthread_t* thread);
bool    taosComparePthread(pthread_t first, pthread_t 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_*/