Lines Matching defs:rwlock

1485 static int pthread_rwlock_wrlock_WRK(pthread_rwlock_t* rwlock)
1491 fprintf(stderr, "<< pthread_rwl_wlk %p", rwlock); fflush(stderr);
1495 pthread_rwlock_t*,rwlock,
1498 CALL_FN_W_W(ret, fn, rwlock);
1502 pthread_rwlock_t*,rwlock, long,1/*isW*/);
1514 pthread_rwlock_t* rwlock) {
1515 return pthread_rwlock_wrlock_WRK(rwlock);
1519 pthread_rwlock_t* rwlock) {
1520 return pthread_rwlock_wrlock_WRK(rwlock);
1533 static int pthread_rwlock_rdlock_WRK(pthread_rwlock_t* rwlock)
1539 fprintf(stderr, "<< pthread_rwl_rlk %p", rwlock); fflush(stderr);
1543 pthread_rwlock_t*,rwlock,
1546 CALL_FN_W_W(ret, fn, rwlock);
1550 pthread_rwlock_t*,rwlock, long,0/*!isW*/);
1562 pthread_rwlock_t* rwlock) {
1563 return pthread_rwlock_rdlock_WRK(rwlock);
1567 pthread_rwlock_t* rwlock) {
1568 return pthread_rwlock_rdlock_WRK(rwlock);
1581 static int pthread_rwlock_trywrlock_WRK(pthread_rwlock_t* rwlock)
1587 fprintf(stderr, "<< pthread_rwl_trywlk %p", rwlock); fflush(stderr);
1591 pthread_rwlock_t*,rwlock,
1594 CALL_FN_W_W(ret, fn, rwlock);
1603 pthread_rwlock_t*,rwlock, long,1/*isW*/);
1616 pthread_rwlock_t* rwlock) {
1617 return pthread_rwlock_trywrlock_WRK(rwlock);
1621 pthread_rwlock_t* rwlock) {
1622 return pthread_rwlock_trywrlock_WRK(rwlock);
1635 static int pthread_rwlock_tryrdlock_WRK(pthread_rwlock_t* rwlock)
1641 fprintf(stderr, "<< pthread_rwl_tryrlk %p", rwlock); fflush(stderr);
1645 pthread_rwlock_t*,rwlock,
1648 CALL_FN_W_W(ret, fn, rwlock);
1657 pthread_rwlock_t*,rwlock, long,0/*!isW*/);
1670 pthread_rwlock_t* rwlock) {
1671 return pthread_rwlock_tryrdlock_WRK(rwlock);
1675 pthread_rwlock_t* rwlock) {
1676 return pthread_rwlock_tryrdlock_WRK(rwlock);
1688 static int pthread_rwlock_unlock_WRK(pthread_rwlock_t* rwlock)
1694 fprintf(stderr, "<< pthread_rwl_unlk %p", rwlock); fflush(stderr);
1698 pthread_rwlock_t*,rwlock);
1700 CALL_FN_W_W(ret, fn, rwlock);
1704 pthread_rwlock_t*,rwlock);
1716 pthread_rwlock_t* rwlock) {
1717 return pthread_rwlock_unlock_WRK(rwlock);
1721 pthread_rwlock_t* rwlock) {
1722 return pthread_rwlock_unlock_WRK(rwlock);