| 329 | Firebird::Mutex* mutex = NULL; |
| 330 | |
| 331 | void create() |
| 332 | { |
| 333 | static char place[sizeof(Firebird::Mutex) + FB_ALIGNMENT]; |
| 334 | mutex = new((void*) FB_ALIGN(place, FB_ALIGNMENT)) Firebird::Mutex; |
| 335 | } |
| 336 | |
| 337 | void release() |
| 338 | { |
no test coverage detected