LWM is computed rather than explicitly specified by user

This commit is contained in:
Martin Sustrik
2010-05-25 15:03:57 +02:00
parent f34a468a26
commit 8408ae066d
9 changed files with 46 additions and 51 deletions

View File

@@ -150,7 +150,7 @@ namespace zmq
public:
pipe_t (object_t *reader_parent_, object_t *writer_parent_,
uint64_t hwm_, uint64_t lwm_);
uint64_t hwm_);
~pipe_t ();
reader_t reader;
@@ -158,6 +158,8 @@ namespace zmq
private:
uint64_t compute_lwm (uint64_t hwm_);
pipe_t (const pipe_t&);
void operator = (const pipe_t&);
};