Click here to Skip to main content
15,887,683 members
Please Sign up or sign in to vote.
2.00/5 (3 votes)
See more:
I have problem with my program writed in c++, using libsoup and queue.

C++
void operator()()
{
    ELEMENT e;
    while(1)
    {
        if(!fq->empty())
        {

            mutex.lock();
            e = fq->front();


            run(server, &e);


            fq->pop();

            mutex.unlock();
        }


It works good before I add ExecuteLoop to make an queue. When I run it and start to make requests to the server I see memory vialation error. From time to time it gives me more information:

*** glibc detected *** ./fifo: double free or corruption (!prev): 

0x0a23e758 ***
======= Backtrace: =========
(...)


I have no idea where I make a mistake. Can you help me?
Posted
Updated 21-May-13 4:57am
v7

1 solution

I don't claim to understand what all this is doing but consider these lines:

if(!fq->empty())
  {

      queue_mutex.lock();
      e = fq->front();


What happens if the the queue is not empty when the condition is tested but it is empty before the lock is asserted?
This can happen which is the same as to say it will happen. Perhaps you need to move the lock before the check or redo the check inside the lock?
 
Share this answer
 
Comments
Matthew Faithfull 8-Apr-13 7:59am    
Not sure in that case. I would start by confirming that the error occurs during the fq->pop(); call. Perhaps even comment that out to confirm it then doesn't crash although of course the fifo will fill up and the same message will get processed repeatedly. Anyway it seems like its claiming there's a pop from an empty queue which is wierd. Sorry I can't really help you futher.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900