0
votes
1answer
51 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
1answer
137 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
164 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
181 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
67 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
100 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 ...
1
vote
1answer
184 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
78 views

Boost Asio, asynchronous server and video tracking

I need to trasmit with a (Boost) tcp server information collected in real time by the ARToolKit video tracking library. Which is the right way of doing it? I'm actually doing it with Boost threads ...
1
vote
2answers
690 views

Using boost::asio::io_service::post()

First i asked this Running a function on the main thread from a boost thread and passing parameters to that function so now i am trying this: The following is a console c++ project where i perfectly ...
0
votes
1answer
137 views

Running a function on the main thread from a boost thread and passing parameters to that function

I have some code running in a boost thread that modifies stuff handled by the main thread which is not working and it makes sense. On android i would have the Handler which is a message queue that ...
-1
votes
1answer
235 views

Multithreaded Game Loop Rendering/Updating (boost-asio)

So I have a single-threaded game engine class, which has separate functions for input, update and rendering, and I've just started learning to use the wonderful boost library (asio and thread ...
0
votes
1answer
67 views

Boost asio io service memcpy()

I have build application based on boost::asio. Sometimes I got this kind of core dump (not regullary). I tried investigate what's going on but I haven't more ideas to solve it. In my point of view I ...
0
votes
1answer
157 views

Boost synchronous Client and Server - infinite loop blocking the rest

i'm using a synch server and client that reads in an infinite loop. for (;;){ boost::system::error_code error; read(socket,boost::asio::buffer(&abc, sizeof(abc))); ... } what would be the ...
0
votes
0answers
93 views

Lost in threads - how can I extend this example correctly?

I am adapting this example here http://pastebin.com/sTFQ8NR2 to check, if a message has taken too long to receive. read_complete is called, when read_start has finished. However, I have to check, if ...
3
votes
1answer
405 views

boost async sockets and boost::thread

I writing TCP client which should be able to send and receive data at the same time. Could you tell me how should I call async_send and async_receive is separate threads? In the other words how to ...
1
vote
2answers
109 views

Linux: application responsiveness and select()

I have a C++ console app that uses open() [O_RDWR | O_NONBLOCK], write(), select(), read() and close() to work with device file. Also ioctl() can be called to cancel current operation. At any given ...
2
votes
1answer
393 views

creating a boost::asio worker thread with boost::thread under linux

I've been using boost under windows for a while, and now have a need to migrate a couple of existing apps to run on Ubuntu 12 box for a demonstration. This app creates two worker threads, one to log ...
1
vote
1answer
417 views

Got “Bad file descriptor” when use boost::asio and boost::thread

int func(boost::asio::ip::tcp::socket &socket) { boost::system::error_code ec; socket.write_some(boost::asio::buffer("hello world!"), ec); cout << socket.is_open() << endl; ...
0
votes
2answers
193 views

boost::asio::async_write from outside class

If programming a tcp server using boost.asio using the example of the echo server , i have modified some of its codes to meet my requirements where i want to process the incoming data and send back ...
1
vote
1answer
235 views

boost::asio multiple outgoing SSL connections using worker threads

I am in the process of better learning boost::asio, in the recent past I already used it for some basic server applications. So I guess I know (a bit of) the basics. But today I have a problem that I ...
1
vote
3answers
528 views

Compilation error when including boost/thread.cpp

I have the following code using Boost ASIO to setup a TCP client. Here is my code adapted from the Boost doc's chat example. class AsioCommunicationService { ...
0
votes
0answers
222 views

multiple objects with boost acceptor in each using same port

I was wondering if I had multiple objects which contains a boost acceptor which I wanted to bind to the same port how would I go about it ? I cannot use a global acceptor as it is not threadsafe.So ...
0
votes
2answers
234 views

Boost.asio in Visual C++ Form project

I have successfully implemented a network application in visual CLR project using boost.asio. but when i tried to use the same code in windows form project with Common "Language Runtime Support ...
0
votes
1answer
343 views

Boost async_read_some not exactly asynchronous

This is my server code: socket_.async_read_some(boost::asio::buffer(data_read.data(), Message::header_length), boost::bind(&TcpConnection::handle_read_header, shared_from_this(), ...
0
votes
1answer
1k views

Do we need multiple io_service per thread for threaded boost::asio server with a single acceptor

I am not much experienced in boost::asio. I've some pretty basic questions. Do I need to have a different io_service, and a different socket under a different thread but one single acceptor, to ...
1
vote
1answer
548 views

How can I start a boost Thread running a class function?

im doing a C++ class where, internally, i want to create a thread to execute a function of the class, how can I do this? I show you some code. Member function i want to run in a thread: void ...
1
vote
2answers
444 views

C++ private access to other classes' members

I'm writing a multi-threaded server using boost::asio (for sockets), boost::thread (for threading), libconfig++ (for configuration files reading) and protocol buffers (for the protocol ...
0
votes
0answers
349 views

Threadpool in a Server - boost

I am trying to create a server that accepts connection and a thread handles the request, and the main thread goes back to listening. I am planning on using thread pool because handling is very ...
6
votes
3answers
503 views

“Compiler threading support is not turned on.”

Normally I can google my way around and find solutions, but not this time. I'm using 64 bit Linux Ubuntu 11.04 to compile a 32 bit windows application. I'm using i586-mingw32msvc-gcc to compile my ...
4
votes
1answer
838 views

Is using shared_ptr and weak_ptr to manage lifetime of std::function safe?

I've created a wrapper around boost::asio::io_service to handle asynchronous tasks on the GUI thread of an OpenGL application. Tasks might be created from other threads so boost::asio seems ideal ...
1
vote
1answer
384 views

boost asio semaphore-like solution

This question is follow up of this question. Anyhow, this is the motivation - a bit of c/p from original question's comment: I'd like to be able to post one group of jobs on multiple threads (CalcFib ...
1
vote
1answer
487 views

boost asio need to post n jobs only after m jobs have finished

I'm looking for a way to wait for a number of jobs to finish, and then execute another completely different number of jobs. With threads, of course. A brief explanation: I created two worker threads, ...
2
votes
0answers
872 views

Creating a thread Pool for boost threads

There seems to be two approaches to create thread pool for boost threads as boost thread does not provide thread pool directly. The first one is asio::io_service io_service; ...
1
vote
1answer
469 views

Boost bind inside Boost packaged_task. Why boost asio thinks its not CompletionHandler?

So all my work happens inside of a class named thread_pool. This code will work no matter what run_item takes into itself: template <class task_return_t> void thread_pool::pool_item( ...
-3
votes
3answers
560 views

boost::thread data structure sizes on the ridiculous side?

Compiler: clang++ x86-64 on linux. It has been a while since I have written any intricate low level system code, and I ussualy program against the system primitives (windows and pthreads/posix). So, ...
2
votes
1answer
1k views

boost asio asynchronously waiting on a condition variable

Is it possible to perform an asynchronous wait (read : non-blocking) on a conditional variable in boost::asio ? if it isn't directly supported any hints on implementing it would be appreciated. I ...
4
votes
2answers
3k views

boost condition variable issue

The following minimal code sample of a larger program sends commands from client threads to an asio io_service object. The io_service object (in the Ios class) is being run with one thread. When the ...
3
votes
1answer
2k views

Incorrect use of boost::asio and boost::thread

I am using boost::asio and boost::thread to realize a message service which accepts messages, send them asynchronously if there is no message being processed or queues the message if there are ...
3
votes
4answers
759 views

Program structure for bi-directional TCP communication using Boost::Asio

First off, I hope my question makes sense and is even possible! From what I've read about TCP sockets and Boost::ASIO, I think it should be. What I'm trying to do is to set up two machines and have ...
0
votes
2answers
1k views

boost::io_service::strand performance

I am using a boost::io_service to build a thread pool that executes computational jobs in parallel. Some jobs are not allowed to run concurrently, which - I think - is the ideal application of a ...
3
votes
2answers
1k views

Is boost::io_service::post thread safe?

Is it thread safe to post new handlers from within a handler? I.e. Can threads that called the io_service::run() post new Handlers to the same io_service? Thanks
3
votes
2answers
1k views

how to handle control-c in a boost tcp/udp server

How do I handle the control-C event or stop my boost::asio server. I have a tcp & udp combined server and would like to be able to exit cleanly when I press ctrl-c. I get a first chance exception ...
2
votes
2answers
2k views

boost::asio multithreaded asynchronous accept with blocking read/write server

My idea was to create X threads, run it using KeepRunning method which has endless loop calling _io_service.run() and send tasks to _io_service when received a new connection using _io_service.poll() ...
2
votes
2answers
2k views

Routine when starting boost::asio::io_service

I want to create an http client using boost asio. To have a structured and optimized I have looked into the examples of boost asio to have some idea of what a good implementation should look like. ...
1
vote
2answers
365 views

Why boost does not create a thread in such case (C2248) and how to create it?

So I have code like: using namespace boost::asio::ip; using namespace std; void request_response_loop(boost::asio::ip::tcp::socket& socket) { http_request request(socket); http_response ...
0
votes
2answers
628 views

Boost Client getting stuck

http://www.boost.org/doc/libs/1_46_0/doc/html/boost_asio/example/chat/chat_client.cpp I am working on client application based on he example above. I wanted to do the client connection in separte ...
2
votes
2answers
349 views

Boost Thread dies before job finished

I am using the boost library to implement a socket communication. In respect to my main application, a connection handler should be launched who deals with all incoming requests. Therefore I have ...
1
vote
1answer
695 views

boost::asio strands vs shared mutex's

Trying to decide weather to use asio strands? My biggest need is for threads is accessing a Database with multiple reads and a single write. Seems like strands only allow one thread at a time, is ...
1
vote
1answer
701 views

Boost Asio, io_service handles only one socket per core

I am writing a server application using Boost Asio: Server: Running io_service.run() from pool of threads (one thread per core), accepting connections & reading data from sockets is done ...
4
votes
1answer
1k views

Stopping threaded server loop using Boost::Asio

I am developing a tiny server loop for a bigger software but it doesn't work as I want it to do. When the user types in ".quit" I want the software to stop this threaded server loop: try { while ...

1 2