Commit 3511385c authored by unknown's avatar unknown

fix merge problem

parent 1b7ac273
...@@ -169,8 +169,8 @@ void Dbtup::execCONTINUEB(Signal* signal) ...@@ -169,8 +169,8 @@ void Dbtup::execCONTINUEB(Signal* signal)
case ZREPORT_MEMORY_USAGE:{ case ZREPORT_MEMORY_USAGE:{
ljam(); ljam();
static int c_currentMemUsed = 0; static int c_currentMemUsed = 0;
Uint32 sz = c_page_pool.getSize(); Uint32 tmp = c_page_pool.getSize();
int now = sz ? (cnoOfAllocatedPages * 100)/sz : 0; int now = tmp ? (cnoOfAllocatedPages * 100)/tmp : 0;
const int thresholds[] = { 100, 90, 80, 0 }; const int thresholds[] = { 100, 90, 80, 0 };
Uint32 i = 0; Uint32 i = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment