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
d88505ef
Commit
d88505ef
authored
Jun 08, 2015
by
Marian Triebe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix shutdown order
The type-system is the last thing to shut down.
parent
3b44fa23
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libcaf_core/src/singletons.cpp
libcaf_core/src/singletons.cpp
+3
-3
No files found.
libcaf_core/src/singletons.cpp
View file @
d88505ef
...
@@ -94,13 +94,13 @@ void singletons::stop_singletons() {
...
@@ -94,13 +94,13 @@ void singletons::stop_singletons() {
CAF_LOGF_DEBUG
(
"dispose registry"
);
CAF_LOGF_DEBUG
(
"dispose registry"
);
dispose
(
s_actor_registry
);
dispose
(
s_actor_registry
);
// final steps
// final steps
CAF_LOGF_DEBUG
(
"stop and dispose logger, bye"
);
stop
(
s_logger
);
dispose
(
s_logger
);
stop
(
s_uniform_type_info_map
);
stop
(
s_uniform_type_info_map
);
dispose
(
s_uniform_type_info_map
);
dispose
(
s_uniform_type_info_map
);
stop
(
s_node_id
);
stop
(
s_node_id
);
dispose
(
s_node_id
);
dispose
(
s_node_id
);
CAF_LOGF_DEBUG
(
"stop and dispose logger, bye"
);
stop
(
s_logger
);
dispose
(
s_logger
);
}
}
actor_registry
*
singletons
::
get_actor_registry
()
{
actor_registry
*
singletons
::
get_actor_registry
()
{
...
...
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