Commit c21f0426 authored by Dominik Charousset's avatar Dominik Charousset

Remove unused default values

parent 214b45dd
...@@ -42,7 +42,6 @@ namespace scheduler { ...@@ -42,7 +42,6 @@ namespace scheduler {
extern const atom_value policy; extern const atom_value policy;
extern const size_t max_threads; extern const size_t max_threads;
extern const size_t max_throughput; extern const size_t max_throughput;
extern const bool enable_profiling;
extern const timespan profiling_resolution; extern const timespan profiling_resolution;
} // namespace scheduler } // namespace scheduler
...@@ -66,7 +65,6 @@ extern const char* file_format; ...@@ -66,7 +65,6 @@ extern const char* file_format;
extern const atom_value console; extern const atom_value console;
extern const char* console_format; extern const char* console_format;
extern const atom_value verbosity; extern const atom_value verbosity;
extern const bool inline_output;
} // namespace logger } // namespace logger
...@@ -76,8 +74,6 @@ extern const char* app_identifier; ...@@ -76,8 +74,6 @@ extern const char* app_identifier;
extern const atom_value network_backend; extern const atom_value network_backend;
extern const size_t max_consecutive_reads; extern const size_t max_consecutive_reads;
extern const size_t heartbeat_interval; extern const size_t heartbeat_interval;
extern const bool detach_utility_actors;
extern const bool detach_multiplexer;
extern const size_t cached_udp_buffers; extern const size_t cached_udp_buffers;
extern const size_t max_pending_msgs; extern const size_t max_pending_msgs;
......
...@@ -54,7 +54,6 @@ namespace scheduler { ...@@ -54,7 +54,6 @@ namespace scheduler {
const atom_value policy = atom("stealing"); const atom_value policy = atom("stealing");
const size_t max_threads = std::max(std::thread::hardware_concurrency(), 4u); const size_t max_threads = std::max(std::thread::hardware_concurrency(), 4u);
const size_t max_throughput = std::numeric_limits<size_t>::max(); const size_t max_throughput = std::numeric_limits<size_t>::max();
const bool enable_profiling = false;
const timespan profiling_resolution = ms(100); const timespan profiling_resolution = ms(100);
} // namespace scheduler } // namespace scheduler
...@@ -78,7 +77,6 @@ const char* file_format = "%r %c %p %a %t %C %M %F:%L %m%n"; ...@@ -78,7 +77,6 @@ const char* file_format = "%r %c %p %a %t %C %M %F:%L %m%n";
const atom_value console = atom("none"); const atom_value console = atom("none");
const char* console_format = "%m"; const char* console_format = "%m";
const atom_value verbosity = atom("trace"); const atom_value verbosity = atom("trace");
const bool inline_output = false;
} // namespace logger } // namespace logger
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment