Tagged Questions
2
votes
1answer
136 views
Is there a bug in the boost asio HTTP Server 3 example or boost bug?
boost library version 1.53
Debian Linux 6.0 ( Linux 2.6.32-5-amd64 on x86_64 )
It is hard to test own software when valgrind log contains lots of warnings.
So with no changes I built the HTTP server3 ...
11
votes
2answers
261 views
Why does Valgrind show increasing stack usage with boost::thread?
Wrote a simple test:
#include <iostream>
#include <boost/thread.hpp>
using namespace std;
void myThreadRun() {
cout << "Thread id: " << boost::this_thread::get_id() ...
2
votes
0answers
461 views
valgrind drd reports errors for a simple c++ program w/ boost::thread or pthread
I just copy an example program from boost
http://www.boost.org/doc/libs/1_31_0/libs/thread/example/thread_group.cpp
#include <boost/thread/thread.hpp>
#include <iostream>
int ...
7
votes
1answer
302 views
Valgrind reports 'possibly lost' memory when working with Boost threads
I have a program that runs some action in a separate therad, then joins on the thread, such as this one:
#include <boost/thread.hpp>
#include <iostream>
using namespace std;
void f() {
...
5
votes
1answer
305 views
Debug boost::thread application, high false positive rate
I have programmed a boost::thread application, where I might have some race conditions. I want to debug this program. Therefore I used the following valgrind tools:
halgrind
drd
unfortunately they ...
