summaryrefslogtreecommitdiff
path: root/src/ctx.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-03-13 11:10:33 +0100
committerMartin Sustrik <sustrik@250bpm.com>2012-03-13 11:10:33 +0100
commit921da22147e201455837bcd38df1af33aceff26f (patch)
treee76e001ac65d4fa96ab89468e109db05978b7f70 /src/ctx.hpp
parent224b7c7a816010fc0f781372051ec7c578af42a0 (diff)
io_threads argument removed from xs_init()
The argument was changed to a context option (XS_IO_THREADS). 0MQ compatibility mode sets the option and ensures that there's at least one I/O thread present. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/ctx.hpp')
-rw-r--r--src/ctx.hpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/ctx.hpp b/src/ctx.hpp
index df315e4..b83fa1f 100644
--- a/src/ctx.hpp
+++ b/src/ctx.hpp
@@ -31,7 +31,6 @@
#include "array.hpp"
#include "config.hpp"
#include "mutex.hpp"
-#include "stdint.hpp"
#include "options.hpp"
#include "atomic_counter.hpp"
@@ -60,9 +59,8 @@ namespace xs
{
public:
- // Create the context object. The argument specifies the size
- // of I/O thread pool to create.
- ctx_t (uint32_t io_threads_);
+ // Create the context object.
+ ctx_t ();
// Returns false if object is not a context.
bool check_tag ();
@@ -171,7 +169,7 @@ namespace xs
int max_sockets;
// Number of I/O threads to launch.
- uint32_t io_thread_count;
+ int io_thread_count;
// Synchronisation of access to context options.
mutex_t opt_sync;