| 330 | */ |
| 331 | |
| 332 | int |
| 333 | xmlMemBlocks(void) { |
| 334 | int res; |
| 335 | |
| 336 | xmlMutexLock(&xmlMemMutex); |
| 337 | res = debugMemBlocks; |
| 338 | xmlMutexUnlock(&xmlMemMutex); |
| 339 | return(res); |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * xmlMemDisplayLast: |
nothing calls this directly
no test coverage detected