Changeset 988 for vendor/current/source4/heimdal/include
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/heimdal/include/heim_threads.h
r414 r988 68 68 #define HEIMDAL_RWLOCK rwlock_t 69 69 #define HEIMDAL_RWLOCK_INITIALIZER RWLOCK_INITIALIZER 70 #define HEIMDAL_RWLOCK_init(l) rwlock_init(l, NULL) 71 #define HEIMDAL_RWLOCK_rdlock(l) rwlock_rdlock(l) 72 #define HEIMDAL_RWLOCK_wrlock(l) rwlock_wrlock(l) 73 #define HEIMDAL_RWLOCK_tryrdlock(l) rwlock_tryrdlock(l) 74 #define HEIMDAL_RWLOCK_trywrlock(l) rwlock_trywrlock(l) 75 #define HEIMDAL_RWLOCK_unlock(l) rwlock_unlock(l) 76 #define HEIMDAL_RWLOCK_destroy(l) rwlock_destroy(l) 70 #define HEIMDAL_RWLOCK_init(l) rwlock_init(l, NULL) 71 #define HEIMDAL_RWLOCK_rdlock(l) rwlock_rdlock(l) 72 #define HEIMDAL_RWLOCK_wrlock(l) rwlock_wrlock(l) 73 #define HEIMDAL_RWLOCK_tryrdlock(l) rwlock_tryrdlock(l) 74 #define HEIMDAL_RWLOCK_trywrlock(l) rwlock_trywrlock(l) 75 #define HEIMDAL_RWLOCK_unlock(l) rwlock_unlock(l) 76 #define HEIMDAL_RWLOCK_destroy(l) rwlock_destroy(l) 77 77 78 78 #define HEIMDAL_thread_key thread_key_t … … 95 95 #define HEIMDAL_RWLOCK rwlock_t 96 96 #define HEIMDAL_RWLOCK_INITIALIZER RWLOCK_INITIALIZER 97 #define HEIMDAL_RWLOCK_init(l) pthread_rwlock_init(l, NULL) 98 #define HEIMDAL_RWLOCK_rdlock(l) pthread_rwlock_rdlock(l) 99 #define HEIMDAL_RWLOCK_wrlock(l) pthread_rwlock_wrlock(l) 100 #define HEIMDAL_RWLOCK_tryrdlock(l) pthread_rwlock_tryrdlock(l) 101 #define HEIMDAL_RWLOCK_trywrlock(l) pthread_rwlock_trywrlock(l) 102 #define HEIMDAL_RWLOCK_unlock(l) pthread_rwlock_unlock(l) 103 #define HEIMDAL_RWLOCK_destroy(l) pthread_rwlock_destroy(l) 97 #define HEIMDAL_RWLOCK_init(l) pthread_rwlock_init(l, NULL) 98 #define HEIMDAL_RWLOCK_rdlock(l) pthread_rwlock_rdlock(l) 99 #define HEIMDAL_RWLOCK_wrlock(l) pthread_rwlock_wrlock(l) 100 #define HEIMDAL_RWLOCK_tryrdlock(l) pthread_rwlock_tryrdlock(l) 101 #define HEIMDAL_RWLOCK_trywrlock(l) pthread_rwlock_trywrlock(l) 102 #define HEIMDAL_RWLOCK_unlock(l) pthread_rwlock_unlock(l) 103 #define HEIMDAL_RWLOCK_destroy(l) pthread_rwlock_destroy(l) 104 104 105 105 #define HEIMDAL_thread_key pthread_key_t
Note:
See TracChangeset
for help on using the changeset viewer.