| 463 | } |
| 464 | |
| 465 | void lock_destroy(LOCK lock) |
| 466 | { |
| 467 | #if defined(CONF_FAMILY_UNIX) |
| 468 | pthread_mutex_destroy((LOCKINTERNAL *)lock); |
| 469 | #elif defined(CONF_FAMILY_WINDOWS) |
| 470 | DeleteCriticalSection((LPCRITICAL_SECTION)lock); |
| 471 | #else |
| 472 | #error not implemented on this platform |
| 473 | #endif |
| 474 | mem_free(lock); |
| 475 | } |
| 476 | |
| 477 | int lock_try(LOCK lock) |
| 478 | { |
nothing calls this directly
no test coverage detected