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
4bdeecde
Commit
4bdeecde
authored
Jul 08, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debug output
parent
6de9effb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
libcaf_io/src/middleman_actor.cpp
libcaf_io/src/middleman_actor.cpp
+0
-1
libcaf_io/test/remote_spawn.cpp
libcaf_io/test/remote_spawn.cpp
+0
-1
No files found.
libcaf_io/src/middleman_actor.cpp
View file @
4bdeecde
...
@@ -163,7 +163,6 @@ public:
...
@@ -163,7 +163,6 @@ public:
[
=
](
spawn_atom
atm
,
node_id
&
nid
,
std
::
string
&
str
,
message
&
msg
)
[
=
](
spawn_atom
atm
,
node_id
&
nid
,
std
::
string
&
str
,
message
&
msg
)
->
delegated
<
strong_actor_ptr
,
mpi_set
>
{
->
delegated
<
strong_actor_ptr
,
mpi_set
>
{
CAF_LOG_TRACE
(
""
);
CAF_LOG_TRACE
(
""
);
printf
(
"%s %d -- %s
\n
"
,
__FILE__
,
__LINE__
,
to_string
(
current_mailbox_element
()
->
content
()).
c_str
());
delegate
(
broker_
,
forward_atom
::
value
,
nid
,
atom
(
"SpawnServ"
),
delegate
(
broker_
,
forward_atom
::
value
,
nid
,
atom
(
"SpawnServ"
),
make_message
(
atm
,
std
::
move
(
str
),
std
::
move
(
msg
)));
make_message
(
atm
,
std
::
move
(
str
),
std
::
move
(
msg
)));
//delegate(broker_, atm, std::move(nid), std::move(str), std::move(msg));
//delegate(broker_, atm, std::move(nid), std::move(str), std::move(msg));
...
...
libcaf_io/test/remote_spawn.cpp
View file @
4bdeecde
...
@@ -100,7 +100,6 @@ void run_server(int argc, char** argv) {
...
@@ -100,7 +100,6 @@ void run_server(int argc, char** argv) {
CAF_EXP_THROW
(
port
,
system
.
middleman
().
open
(
0
));
CAF_EXP_THROW
(
port
,
system
.
middleman
().
open
(
0
));
std
::
thread
child
{[
=
]
{
run_client
(
argc
,
argv
,
port
);
}};
std
::
thread
child
{[
=
]
{
run_client
(
argc
,
argv
,
port
);
}};
child
.
join
();
child
.
join
();
printf
(
"%s %d -- %d
\n
"
,
__FILE__
,
__LINE__
,
(
int
)
system
.
registry
().
running
());
}
}
}
// namespace <anonymous>
}
// namespace <anonymous>
...
...
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