Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Hofman <jhofman+github@gmail.com>2011-08-03 23:39:34 +0400
committerJohn <jl@hunch.net>2011-08-04 04:08:12 +0400
commitfc38a0610a06838555059fc68198eb794ebc55c6 (patch)
tree28730d926a80131c6937615d5e2b2e15b6cd649e /parser.h
parentf7c683ee47ed080521fd0a4c90169debb3df76cd (diff)
persistent daemon should be working ...
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index 10e6bd9b..4b0ce5a6 100644
--- a/parser.h
+++ b/parser.h
@@ -48,9 +48,12 @@ struct parser {
v_array<size_t> counts; //partial examples received from sources
size_t finished_count;//the number of finished examples;
int label_sock;
+ int bound_sock;
int max_fd;
};
+const size_t constant_namespace = 128;
+
parser* new_parser(const label_parser* lp);
#include <boost/program_options.hpp>
namespace po = boost::program_options;