| 368 | |
| 369 | #ifdef ACL_BCB_COMPILER |
| 370 | static void LOCK_TABLE_READ(const ACL_HTABLE *table) |
| 371 | { |
| 372 | if (table->rwlock && _RWLOCK_RDLOCK(table->rwlock) != 0) { |
| 373 | acl_msg_fatal("%s(%d): read lock error", __FILE__, __LINE__); |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | static void LOCK_TABLE_WRITE(const ACL_HTABLE *table) |
| 378 | { |
no test coverage detected
searching dependent graphs…