Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
46998a7c
authored
Apr 01, 2015
by
Tobias Fuchs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed doxygen warnings
parent
6429f61d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
containers_cpp/include/embb/containers/wait_free_spsc_queue.h
+1
-1
doc/reference/embb.dox
+2
-2
mtapi_cpp/include/embb/mtapi/status_exception.h
+4
-1
No files found.
containers_cpp/include/embb/containers/wait_free_spsc_queue.h
View file @
46998a7c
...
...
@@ -154,7 +154,7 @@ class WaitFreeSPSCQueue {
/**
* Creates a queue with at least the specified capacity.
*
* \memory Allocates \c 2^k elements of type \c Type, where \k is the
* \memory Allocates \c 2^k elements of type \c Type, where \
c
k is the
* smallest number such that <tt>capacity <= 2^k</tt> holds.
*
* \notthreadsafe
...
...
doc/reference/embb.dox
View file @
46998a7c
...
...
@@ -34,8 +34,8 @@ priority inversion. As another advantage in real-time systems, the
algorithms and data structures give certain progress guarantees. For
example, wait-free data structures guarantee system-wide progress which
means that every operation completes within a finite number of steps
independently of any other concurrent operations on the same
data
structure.
independently of any other concurrent operations on the same
data
structure.
\image html ../images/embb.png
...
...
mtapi_cpp/include/embb/mtapi/status_exception.h
View file @
46998a7c
...
...
@@ -51,7 +51,10 @@ class StatusException : public embb::base::Exception {
}
/**
* Returns the code of the exception.
* Code associated with this exception
*
* \returns An integer representing the code of the exception
*
* \waitfree
*/
virtual
int
Code
()
const
{
return
EMBB_ERROR
;
}
...
...
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