Rename readwritesplit member variables

Prefixed the variables with the `m_` prefix and changed some of them to be
more descriptive.
This commit is contained in:
Markus Mäkelä
2018-04-04 14:59:56 +03:00
parent 5e64695492
commit 0771701d94
6 changed files with 259 additions and 259 deletions

View File

@ -104,7 +104,7 @@ bool RWSplitSession::handle_target_is_all(route_target_t route_target, GWBUF *qu
if (errbuf)
{
client_dcb->func.write(client_dcb, errbuf);
m_client->func.write(m_client, errbuf);
result = true;
}
@ -115,7 +115,7 @@ bool RWSplitSession::handle_target_is_all(route_target_t route_target, GWBUF *qu
{
result = true;
atomic_add_uint64(&router->stats().n_all, 1);
atomic_add_uint64(&m_router->stats().n_all, 1);
}
return result;