I am porting some code from windows to Linux (Ubuntu 9.10). I have a simple class (please see below), which uses windows functions to implement simple mutex locking. I want to use Boost.Threads to rei
Closed. This qu开发者_如何学Goestion does not meet Stack Overflow guidelines. It is not currently accepting answers.
I made a small program with Boost in Li开发者_StackOverflow中文版nux 2 yrs ago. Now I want to make it work in Windows. I found there are few .a files in my libs folder. I am wondering how to make it w
I have this simple piece of code that uses boost::bind: #include <boost/bind.hpp> #include <utility>
There is a possibility to compile BOOST libraries in theso-called thread-aware mode. If so you will see \"...-mt...\" appeared in the library name. I can\'t understand what it gives me and when do I n
I use the boost lexical_cast library for parsing text data into numer开发者_开发技巧ic values quite often. In several situations however, I only need to check if values are numeric; I don\'t actually
When I use boost::bind with a method name which is declared both const and non-const I am getting in ambiguous error, for example
g++ simple_wget.cpp -lssl -lboost_system -lpthread -lcrypto -lboost_filesystem /tmp/cc2jNHvk.o: In function `__static_initialization_and_destruction_0(int, int)\':
I am not familiar with the usual build technique in linux I am using boost c++ library. Can any body guide me in installin开发者_开发百科g and configuring boost c++ library. Thanks in advance My envir
Which is preferred boost::lock_guard or boost::mutex::scoped_lock? I\'m using Boost.Thread with the hope to move to C++11 threading when it becomes available.