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
a6ccbe9e
authored
Feb 02, 2015
by
Marcus Winter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mtapi_cpp: improved documentation of default values and priorities
parent
52258d99
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
mtapi_cpp/include/embb/mtapi/execution_policy.h
+4
-0
mtapi_cpp/include/embb/mtapi/node.h
+8
-1
No files found.
mtapi_cpp/include/embb/mtapi/execution_policy.h
View file @
a6ccbe9e
...
@@ -37,6 +37,10 @@ namespace mtapi {
...
@@ -37,6 +37,10 @@ namespace mtapi {
* - the affinity of tasks to MTAPI worker threads (not CPU cores) and
* - the affinity of tasks to MTAPI worker threads (not CPU cores) and
* - the priority of the spawned tasks.
* - the priority of the spawned tasks.
*
*
* The priority is a number between 0 (denoting the highest priority) to
* max_priorities - 1 as given during initialization using Node::Initialize().
* The default value of max_priorities is 4.
*
* \ingroup CPP_MTAPI
* \ingroup CPP_MTAPI
*/
*/
class
ExecutionPolicy
{
class
ExecutionPolicy
{
...
...
mtapi_cpp/include/embb/mtapi/node.h
View file @
a6ccbe9e
...
@@ -54,7 +54,14 @@ namespace mtapi {
...
@@ -54,7 +54,14 @@ namespace mtapi {
class
Node
{
class
Node
{
public
:
public
:
/**
/**
* Initializes the runtime singleton using default values.
* Initializes the runtime singleton using default values:
* - all available cores will be used
* - maximum number of tasks is 1024
* - maximum number of groups is 128
* - maximum number of queues is 16
* - maximum queue capacity is 1024
* - maximum number of priorites is 4.
*
* \notthreadsafe
* \notthreadsafe
* \throws ErrorException if the singleton was already initialized or the
* \throws ErrorException if the singleton was already initialized or the
* Node could not be initialized.
* Node could not be initialized.
...
...
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