Hi,
when executing the code below (connecting and disconnecting to a local
broker without sending any messages) the memory usage increases constantly
and rapidly. After 10.000 iterations several hundred megabytes of resident
memory are used.
When commenting out the lines "connection.open()" and "close()" the memory
usage does not increase.

So, is there a memory leak in Connection open/close?

int
main(int argc, char** argv)
{
    while (1) {
        qpid::client::Connection connection;
        connection.open("localhost", 5672);
        connection.close();
    }
}

I'm running qpid 0.5 on a Debian Linux with gcc 4.3.3.

Thanks in advance,
Daniel

Reply via email to