Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
d163b221
Commit
d163b221
authored
Jul 18, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove references to boost::actor
parent
20f3e5f6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
caf/detail/singletons.hpp
caf/detail/singletons.hpp
+3
-3
src/logging.cpp
src/logging.cpp
+1
-1
No files found.
caf/detail/singletons.hpp
View file @
d163b221
...
@@ -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
();
...
...
src/logging.cpp
View file @
d163b221
...
@@ -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
(;;)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment