Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/4.guide/4d.sockets.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Move assignment closes any existing socket:
s1 = std::move(s2); // Closes s1's socket if open, then moves s2
----

IMPORTANT: Source and destination must share the same execution context.
NOTE: After a move, the destination uses the source's execution context.

== The io_stream Interface

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/4.guide/4e.tcp-acceptor.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Move assignment closes any existing tcp_acceptor:
acc1 = std::move(acc2); // Closes acc1's socket if open, then moves acc2
----

IMPORTANT: Source and destination must share the same execution context.
NOTE: After a move, the destination uses the source's execution context.

== Thread Safety

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/4.guide/4h.timers.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ corosio::timer t3 = t2; // Error: deleted copy constructor

Move assignment cancels any pending wait on the destination timer.

IMPORTANT: Source and destination must share the same execution context.
NOTE: After a move, the destination uses the source's execution context.

== Thread Safety

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/4.guide/4i.signals.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ corosio::signal_set s2 = std::move(s1); // OK
corosio::signal_set s3 = s2; // Error: deleted copy constructor
----

IMPORTANT: Source and destination must share the same execution context.
NOTE: After a move, the destination uses the source's execution context.

== Thread Safety

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/4.guide/4j.resolver.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ corosio::resolver r2 = std::move(r1); // OK
corosio::resolver r3 = r2; // Error: deleted copy constructor
----

IMPORTANT: Source and destination must share the same execution context.
NOTE: After a move, the destination uses the source's execution context.

== Thread Safety

Expand Down
Loading