prevented HeapMmgr::allocMem() and HeapMmgr::reallocMem() from thrown an exception

This commit is contained in:
2018-07-01 07:59:06 +00:00
parent 9ff9cb1d55
commit 1a102644ed
5 changed files with 17 additions and 21 deletions

View File

@ -29,7 +29,7 @@ public:
qse_ssize_t n;
cliaddr->toStrBuf(addrbuf, QSE_COUNTOF(addrbuf));
//qse_printf (QSE_T("hello word..from %s\n"), addrbuf);
qse_printf (QSE_T("hello word..from %s\n"), addrbuf);
while (!server->isStopRequested())
{
@ -41,7 +41,7 @@ public:
clisock->send (bb, n);
}
//qse_printf (QSE_T("byte to %s\n"), addrbuf);
qse_printf (QSE_T("byte to %s\n"), addrbuf);
return 0;
}
};
@ -74,7 +74,7 @@ static int test1 (void)
}
clisock->send (bb, n);
}
qse_printf (QSE_T("byte to %s\n"), addrbuf);
return 0;
}),