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
492f6535
Commit
492f6535
authored
Apr 19, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reformatting
parent
66e53f85
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
cppa/detail/yielding_actor.hpp
cppa/detail/yielding_actor.hpp
+1
-4
No files found.
cppa/detail/yielding_actor.hpp
View file @
492f6535
...
@@ -91,16 +91,13 @@ class yielding_actor : public abstract_scheduled_actor
...
@@ -91,16 +91,13 @@ class yielding_actor : public abstract_scheduled_actor
{
{
switch
(
m_parent
->
filter_msg
(
msg
))
switch
(
m_parent
->
filter_msg
(
msg
))
{
{
case
normal_exit_signal
:
{
return
m_parent
->
m_trap_exit
==
false
;
}
case
timeout_message
:
case
timeout_message
:
{
{
bhvr
->
handle_timeout
();
bhvr
->
handle_timeout
();
*
timeout_occured
=
true
;
*
timeout_occured
=
true
;
return
true
;
return
true
;
}
}
case
normal_exit_signal
:
case
expired_timeout_message
:
case
expired_timeout_message
:
{
{
return
true
;
return
true
;
...
...
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