Boost.Thread enables the use of multiple threads of execution with shared data in portable C++ code.
3
votes
1answer
25 views
How does the upgradable ownership of a mutex affect other threads?
the situation is:
a thread acquires an upgradable ownership of a boost::shared_mutex and is calling unlock_upgrade_and_lock(), which blocks because the other threads are possessing shared ownership ...
0
votes
0answers
14 views
Error in building boost library for Android framework on Linux
I am facing a problem while building boost library from latest version 1.53.0.
While following all steps as described in most of the tutorials for building boost library on Linux system for Android ...
0
votes
1answer
15 views
Translating boost::thread->native_handle() to XP ThreadId
I've managed to get the Windows ThreadId out of the native_handle() from a boost::thread by using GetThreadId(HANDLE). Sadly that call is not available on Windows XP and after searching around I found ...
1
vote
1answer
53 views
boost c++ libraries: sleep_for wait (almost) twice
I'm using the Boost C++ Libraries but I've some problems with `sleep_for` function: it takes very long time!!! If I want to sleep a thread for just 1 second it sleep the thread for 2 seconds!!!
I'm ...
1
vote
1answer
59 views
boost::threadpool::pool vs.boost::thread_group
I'm trying to understand the different use cases. and the difference between the 2 thread uses.
This is a great tutorial I have read which explains boost::thread_group.
and here is a code I'm using:
...
1
vote
2answers
27 views
VC10 PPL or prepare for STL thread
I'm using MSVC 2010 starting a new MFC-project and now trying to decide which lib to use for concurrent tasks. I know of the new C++0x thread features but it's not implemented in VC10. VC12 is not yet ...
0
votes
0answers
61 views
Excessive Kernel Launches on Context Creation
Recently I began extending a very boost dependent project to use CUDA for its innermost loop. I thought it would be worth posting here about some odd behaviour I've been seeing though. Simply ...
0
votes
1answer
30 views
Why should call lock_upgrade() of a boost::thread::shared_mutex block?
I'm studying manual on boost::thread and they say that effect of calling lock_upgrade() of shared_mutex is
"The current thread blocks until upgrade ownership can be obtained for the current thread.".
...
8
votes
2answers
93 views
boost::thread - Simple example doesn't work (C++)
To get started with boost::thread, I've written a very simple example -- which doesn't work. Could anyone point out my mistake?
I wrote a very simple functor-type class to do the work. It's ...
0
votes
1answer
49 views
Boost Async Threading
So I have been using boost as a solution for threading.
I seem to be having an issue where the threads I create dont let the main thread that was executing them continue.
Eg:
int main(){
...
0
votes
0answers
67 views
why does my multithreaded application hang when trying to join? [closed]
I have created an application using boost threads, this application works fine on one machine, however on another it hangs after attempting to join. Here is a rough pseudocode of what is happening:
...
0
votes
1answer
26 views
boost::_bi::unwrapper<F>::unwrap cannot be used as a function?
Was trying to use a thread class I created in Windows, in Linux. Chose Netbeans for it, and in the project settings I've specified Linker > Additional Library Directories as /usr/local/boost_1_53_0
...
0
votes
0answers
90 views
c++ -std=c++11 -stdlib=libc++ with boost.thread gives Segmentation fault: 11 on OSX
Tried to run some sample code.
But something unexpected occured.
I wonder is there any known issus about boost.thread used with libc++ together ?
Program compiled with -std=c++11 or no option runs ...
1
vote
1answer
49 views
Boost: Threading and mutexes in a functor
I'm trying something simple with threads and mutexes in C++ with boost.
This is the code:
#include <iostream>
#include <boost/thread/thread.hpp>
class mutex_test
{
private:
...
0
votes
1answer
51 views
Difference between Boost and Pthread condition variables
I found some code using boost threads, mutexes and condition variables but I wanna try to rewrite this code with posix threads.
This is the Boost code, I´ve found here:
void push(Data const& ...
0
votes
2answers
42 views
How to pass function parameters to boost::thread_groups::create_thread()
I am new to Boost.Threads and am trying to understand how to pass function arguments to the boost::thread_groups::create_thread() function. After reading some tutorials and the boost documentations, I ...
0
votes
1answer
52 views
'CObject::CObject' : cannot access private member declared in class 'CObject'
My problem is:
Error 1 error C2248: 'CObject::CObject' : cannot access private member declared in class 'CObject' c:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin.h 1991 ...
1
vote
2answers
58 views
Building Boost.Thread without interruption
How can I build boost.thread without default interruption point. I think that my application crash in a predefined interruption points. I'm using boost 1.53.0 with msvc10
I've the following code
...
0
votes
1answer
41 views
notify_all causes segmentation fault
I am using boost threads, upon calling notify_all() within the destructor i am seeing a segmentation fault. Here is the stack:
(gdb) where
#0 0x00007ffff752de84 in pthread_mutex_lock ()
from ...
3
votes
1answer
49 views
Struggling to get boost shared memory segments to construct
I have some code with which I'm trying to make a shared memory segment. This segment is managed, on this end, from within a class. The shared segment will be used in a "bulletin board" fashion. ...
3
votes
1answer
83 views
Different behavior of boost::condition_variable under VC++ and GCC
On my computer, running on Windows 7, the following code, compiled in Visual C++ 2010 with Boost 1.53, outputs
no timeout
elapsed time (ms): 1000
The same code compiled with GCC 4.8 (online link) ...
0
votes
1answer
52 views
boost::condition_variable with boost::mutex::scoped_lock
Initially I was using boost::mutex::scoped_lock as such (which worked)
boost::mutex::scoped_lock lock(mutex_name);
condition.wait(lock); //where condition = boost::condition_variable
However later ...
1
vote
1answer
127 views
C++ linker error using Boost Thread
Attempting to build a standard Boost::thread example I found on the internet, I get multiple errors thrown by the Boost header file thread_data.hpp, which I don't link to directly but which I presume ...
0
votes
1answer
52 views
boost thread and socket
I have a very weird problem. In server class, if I comment t1.join() I can not read anything from the socket in the HandleFunction. But if I uncomment t1.join(), that works just fine.
But I need this ...
2
votes
2answers
108 views
Interrupting threads if not joined
I am looking for a way(preferably with boost threads), to interrupt a thread if it has not joined. I start multiple threads, and would like to end any of them that have not finished by 200 ...
0
votes
0answers
78 views
Multithreaded logger
I am trying to create a logger for multithreaded c++ code using boost. Here's my code:
class logger
{
private:
boost::mutex logMtx;
public:
logger()
{
}
~logger()
{
}
...
0
votes
1answer
21 views
copy to a list, pool, set of threads (1:n) / each thread local storage
I'm currently exploring boost::thread/threadpool and thread local storage basically to achieve a copy of one datagram to the job-queues for a pool of threads.
The current setup uses a 1:1 setup to ...
5
votes
1answer
96 views
Communication b/w two threads over a common datastructure. Design Issue
I currently have two threads a producer and a consumer. The producer is a static methods that inserts data in a Deque type static container and informs the consumer through boost::condition_variable ...
5
votes
5answers
128 views
Acquire lock as soon as it's available
I have two threads trying to lock the same boost::mutex. One of those threads is continuously processing some data, and the other is periodically displaying the current state. The processing thread, ...
0
votes
1answer
82 views
Cannot use boost::threads in Visual Studio 2012
I get the following error using boost::threads in visual studio 2012 (CTP Nov 2012). I'm using boost 1.53.
1>boost/config/requires_threads.hpp(29): fatal error C1189: #error : "Threading support ...
0
votes
1answer
34 views
WT widget not updating in boost thread
I have run into an interesting problem with WT, I have solved it, but I do not understand WHY my solution solved the problem. I've dug through WT documentation for the widgets and have come up empty ...
0
votes
1answer
26 views
boost::condition_variable thread safety?
This boost example on condition variables shows that the mutex does not have to to held during the call to cond.notify_one(). Does this imply that boost::condition_variable is thread-safe? i.e. what ...
2
votes
2answers
153 views
C++ boost sleep accuracy
I'm experiencing strange issues with boost::sleep() function. I have this basic code:
#include <sys/time.h>
#include <boost/chrono.hpp>
#include <boost/thread.hpp>
void ...
1
vote
1answer
76 views
Initialize boost thread in object constructor?
I want to write a wrapper for boost thread to specialize a threading model. My run() function is going to be a member function of the same class that is using boost::thread as the aggregate thread ...
1
vote
0answers
50 views
Mixing boost mutexes with native threads?
I have some code that uses native threads. I'd like to modify a tiny fraction of it, but use some boost features. In particular, I'd like to use boost::mutex::scoped_lock() and boost::condition's ...
2
votes
1answer
142 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 ...
0
votes
1answer
41 views
Boost thread interrupted when qt crashes
I have a qt application with a few boost threads running. When I get an unhandled exception (ex. std::runtime_error) in one of my qt event handlers, the boost threads also catch thread_interrupted ...
0
votes
1answer
95 views
How to check boost thread is running and Kill it
In my program, it start a boost thread and keep the handler as a member of the main thread.
When user press the cancel button I need to check the started thread still running and if it is running ...
0
votes
1answer
45 views
'boost shared_ptr' and 'boost lock' together = messed up
I am new to both concepts shared_ptr and mutex (boost or not boost). I am trying to use it in my classes :
typedef boost::shared_mutex Lock;
typedef boost::unique_lock< Lock > WriteLock;
...
2
votes
1answer
38 views
Spurios wake up and condition variables
I was reading this
nice blog from A Williams:
http://www.justsoftwaresolutions.co.uk/threading/condition-variable-spurious-wakes.html
and one thing bugs me:
when thread wakes up because of the ...
0
votes
1answer
175 views
boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::thread_resource_error> >
I need some help with this exception, I am implementing a NPAPI plugin to be able to use local sockets from browser extensions, to do that I am using Firebreath framework.
For socket and connectivity ...
0
votes
1answer
39 views
timed_join(0) : no operator found which takes a right-hand operand of type 'const int'
I tried to check if a thread is running with use of timed_join(0). But unlike others, I get this error:
1>c:...\boost\thread\detail\thread.hpp(538): error C2679: binary '+' : no operator found ...
0
votes
2answers
95 views
ofstream shared by mutiple threads - crashes after awhile
this function takes a ofstream as a reference, then builds struct packets and threads off the structs with the ofstream to a trie matching class. A stack is returned with n matches in order of match ...
0
votes
1answer
183 views
boost thread bad access in Xcode
UPDATE: if i use libc++ to compile, then I'm getting the error but when I change the compiler to libstdc++ (GNU C++ standard library), the program will run without showing any errors.
I'm trying out ...
0
votes
1answer
68 views
Boost bind object freed on read handler
I am using Boost asio to open several sockets I use a collection with shared pointers to a custom class with all that socket info. This class also has the handle_read function for async_receive as I ...
0
votes
1answer
103 views
Boost io_service stopping?
I am working on an NPAPI plugin that allows to use sockets with local inside browsers and I am using Boost sockets for this.
My usage right now is just open the socket write a meesage, read, send a ...
0
votes
0answers
46 views
NetBeans + Boost + Cygwin_4.x
I'm starting studies with C++ and need to create a project that uses threads.
My big problem is that I can't configure the boost library. I always get the same error message:
make[2]: Leaving ...
3
votes
2answers
307 views
boost::mutex::scoped_lock has been used and It sometimes throws the exception
I am using scoped_lock in my multithread code to exclusively access to some part of code, but sometimes it throws to the exception Access violation writing location ....
boost::mutex mMutex;
...
1
vote
1answer
187 views
Issue with ASIO io_service to run multiple time
In my question. I am a client and my purpose is only to write at server whenever required not everytime.
I have one singleton class(Caller class) in which I call my client program(Client) to write ...
0
votes
1answer
63 views
Launch method in new thread
I have a vector with pointers of objects and I'm trying to launch object's method in a new thread (method have a parameter).
This is code, which I can't compile:
class CanaSynchDynamic {
...
...


