Move Console from Scheduler into Utils
[senf.git] / config.hh
index 42fb595..a746626 100644 (file)
--- a/config.hh
+++ b/config.hh
 # define HH_config_ 1
 # 
 # // Custom includes
+# include <boost/cstdint.hpp>
 # 
 # ///////////////////////////////hh.p////////////////////////////////////////
-# 
+
+namespace senf {
+namespace config {
+
+    typedef boost::int_fast64_t time_type;
+
+}}
+
 # include "local_config.hh"
 #
 # ifndef SENF_ABSOLUTE_INCLUDE_PATH
 # endif
 #
 # ifndef SENF_SENFLOG_LIMIT
-#     ifdef SENF_NO_DEBUG
+#     ifndef SENF_DEBUG
 #         define SENF_SENFLOG_LIMIT senf::log::IMPORTANT
 #     else
-#         define SENF_SENFLOG_LIMIT senf::log::VERBOSE
+#         define SENF_SENFLOG_LIMIT senf::log::NOTICE
 #     endif
 # endif
+#
+# ifndef SENF_DEBUG_BACKTRACE_NUMCALLERS
+#     define SENF_DEBUG_BACKTRACE_NUMCALLERS 64
+# endif
+#
+# ifndef SENF_CONSOLE_MAX_COMMAND_ARITY 
+#     define SENF_CONSOLE_MAX_COMMAND_ARITY 6
+# endif
 # 
 # ///////////////////////////////hh.e////////////////////////////////////////
 # endif