Commit d163b221 authored by Dominik Charousset's avatar Dominik Charousset

Remove references to boost::actor

parent 20f3e5f6
...@@ -49,11 +49,11 @@ class singletons { ...@@ -49,11 +49,11 @@ class singletons {
static constexpr size_t max_plugin_singletons = 3; static constexpr size_t max_plugin_singletons = 3;
static constexpr size_t middleman_plugin_id = 0; // boost::actor_io static constexpr size_t middleman_plugin_id = 0; // io lib
static constexpr size_t opencl_plugin_id = 1; // for future use static constexpr size_t opencl_plugin_id = 1; // OpenCL lib
static constexpr size_t actorshell_plugin_id = 2; // for future use static constexpr size_t probe_plugin_id = 2; // probe hooks
static logging* get_logger(); static logging* get_logger();
......
...@@ -94,7 +94,7 @@ class logging_impl : public logging { ...@@ -94,7 +94,7 @@ class logging_impl : public logging {
void operator()() { void operator()() {
std::ostringstream fname; std::ostringstream fname;
fname << "BoostActor_" << getpid() << "_" << time(0) << ".log"; fname << "actor_log_" << getpid() << "_" << time(0) << ".log";
std::fstream out(fname.str().c_str(), std::ios::out | std::ios::app); std::fstream out(fname.str().c_str(), std::ios::out | std::ios::app);
std::unique_ptr<log_event> event; std::unique_ptr<log_event> event;
for (;;) { for (;;) {
......
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