mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
Add some debugging for virNetClient reference counting
* src/rpc/virnetclient.c: Add debugging of ref counts
This commit is contained in:
parent
97ee0953c6
commit
06c0d1841c
@ -146,6 +146,7 @@ static virNetClientPtr virNetClientNew(virNetSocketPtr sock,
|
||||
client) < 0)
|
||||
VIR_DEBUG("Failed to add event watch, disabling events");
|
||||
|
||||
VIR_DEBUG("client=%p refs=%d", client, client->refs);
|
||||
return client;
|
||||
|
||||
no_memory:
|
||||
@ -214,6 +215,7 @@ void virNetClientRef(virNetClientPtr client)
|
||||
{
|
||||
virNetClientLock(client);
|
||||
client->refs++;
|
||||
VIR_DEBUG("client=%p refs=%d", client, client->refs);
|
||||
virNetClientUnlock(client);
|
||||
}
|
||||
|
||||
@ -226,6 +228,7 @@ void virNetClientFree(virNetClientPtr client)
|
||||
return;
|
||||
|
||||
virNetClientLock(client);
|
||||
VIR_DEBUG("client=%p refs=%d", client, client->refs);
|
||||
client->refs--;
|
||||
if (client->refs > 0) {
|
||||
virNetClientUnlock(client);
|
||||
|
Loading…
x
Reference in New Issue
Block a user