| 5691 | #define DumpVar(x,D) DumpMem(&x,1,sizeof(x),D) |
| 5692 | |
| 5693 | static void DumpBlock(const void* b, size_t size, DumpState* D) |
| 5694 | { |
| 5695 | if (D->status==0) |
| 5696 | { |
| 5697 | lua_unlock(D->L); |
| 5698 | D->status=(*D->writer)(D->L,b,size,D->data); |
| 5699 | lua_lock(D->L); |
| 5700 | } |
| 5701 | } |
| 5702 | |
| 5703 | static void DumpChar(int y, DumpState* D) |
| 5704 | { |
no outgoing calls
no test coverage detected