osSemphone.h 2.1 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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_SEMPHONE_H
#define TDENGINE_OS_SEMPHONE_H

#ifdef __cplusplus
extern "C" {
#endif

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

S
TD-4088  
Shengliang Guan 已提交
37
#if defined (_TD_DARWIN_64)
S
TD-1207  
Shengliang Guan 已提交
38
  #define pthread_rwlock_t pthread_mutex_t
S
slguan 已提交
39 40
  #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 已提交
41
  #define pthread_rwlock_wrlock(lock) pthread_mutex_lock(lock)
S
slguan 已提交
42
  #define pthread_rwlock_rdlock(lock) pthread_mutex_lock(lock)
S
TD-1207  
Shengliang Guan 已提交
43
  #define pthread_rwlock_unlock(lock) pthread_mutex_unlock(lock)
S
slguan 已提交
44 45 46 47 48 49

  #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 已提交
50 51
#endif

S
TD-2616  
Shengliang Guan 已提交
52 53 54 55 56
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 已提交
57
int32_t taosGetPId();
S
TD-2616  
Shengliang Guan 已提交
58
int32_t taosGetCurrentAPPName(char* name, int32_t* len);
S
Shengliang Guan 已提交
59

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

#endif