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
77279674
Commit
77279674
authored
Nov 21, 2019
by
Jakob Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling in caf_core
parent
13e6d6c7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
libcaf_core/caf/actor_storage.hpp
libcaf_core/caf/actor_storage.hpp
+1
-1
libcaf_core/caf/stream_manager.hpp
libcaf_core/caf/stream_manager.hpp
+1
-1
libcaf_core/caf/stream_sink_driver.hpp
libcaf_core/caf/stream_sink_driver.hpp
+1
-1
libcaf_core/caf/stream_stage_driver.hpp
libcaf_core/caf/stream_stage_driver.hpp
+1
-1
scripts/make_release.bash
scripts/make_release.bash
+1
-1
No files found.
libcaf_core/caf/actor_storage.hpp
View file @
77279674
...
...
@@ -132,7 +132,7 @@ void intrusive_ptr_release(actor_storage<T>* x) {
// and destroy the data block
if
(
x
->
ctrl
.
strong_refs
.
fetch_sub
(
1
,
std
::
memory_order_acq_rel
)
==
1
)
{
x
->
destroy_data
();
intrusive_ptr_relase_weak
(
x
);
intrusive_ptr_rel
e
ase_weak
(
x
);
}
}
...
...
libcaf_core/caf/stream_manager.hpp
View file @
77279674
...
...
@@ -188,7 +188,7 @@ public:
}
/// Acquires credit on an inbound path. The calculated credit to fill our
/// queue f
ro
two cycles is `desired`, but the manager is allowed to return
/// queue f
or
two cycles is `desired`, but the manager is allowed to return
/// any non-negative value.
virtual
int32_t
acquire_credit
(
inbound_path
*
path
,
int32_t
desired
);
...
...
libcaf_core/caf/stream_sink_driver.hpp
View file @
77279674
...
...
@@ -68,7 +68,7 @@ public:
}
/// Acquires credit on an inbound path. The calculated credit to fill our
/// queue f
ro
two cycles is `desired`, but the driver is allowed to return
/// queue f
or
two cycles is `desired`, but the driver is allowed to return
/// any non-negative value.
virtual
int32_t
acquire_credit
(
inbound_path
*
path
,
int32_t
desired
)
{
CAF_IGNORE_UNUSED
(
path
);
...
...
libcaf_core/caf/stream_stage_driver.hpp
View file @
77279674
...
...
@@ -79,7 +79,7 @@ public:
}
/// Acquires credit on an inbound path. The calculated credit to fill our
/// queue f
ro
two cycles is `desired`, but the driver is allowed to return
/// queue f
or
two cycles is `desired`, but the driver is allowed to return
/// any non-negative value.
virtual
int32_t
acquire_credit
(
inbound_path
*
path
,
int32_t
desired
)
{
CAF_IGNORE_UNUSED
(
path
);
...
...
scripts/make_release.bash
View file @
77279674
...
...
@@ -89,7 +89,7 @@ echo "\
This script expects to run at the root directory of a Git clone of CAF.
The current repository must be master. There must be no untracked file
and the working tree status must be equal to the current HEAD commit.
Further, the script expects a relase_note.md file in the current directory
Further, the script expects a rel
e
ase_note.md file in the current directory
with the developer blog checked out one level above, i.e.:
\$
HOME
...
...
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