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
c752b972
authored
Dec 17, 2014
by
Marcus Winter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mtapi_c: fixed documentation
parent
f2aabde6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
mtapi_c/include/embb/mtapi/c/mtapi_ext.h
+11
-0
No files found.
mtapi_c/include/embb/mtapi/c/mtapi_ext.h
View file @
c752b972
...
...
@@ -40,7 +40,12 @@ extern "C" {
*
* \ingroup C_MTAPI
*
* Provides extensions to the standard MTAPI API.
*
* There is a single extension function defined here to support user defined
* behavior of an action to allow for actions that are not implemented locally
* in software but e.g. on a remote node in a network or on an accelerator
* device like a GPU or FPGA.
*/
/**
...
...
@@ -48,6 +53,8 @@ extern "C" {
* to start a plugin task.
* This function should return MTAPI_SUCCESS if the task could be started and
* the appropriate MTAPI_ERR_* if not.
*
* \ingroup C_MTAPI_EXT
*/
typedef
void
(
*
mtapi_ext_plugin_task_start_function_t
)(
MTAPI_IN
mtapi_task_hndl_t
task
,
...
...
@@ -59,6 +66,8 @@ typedef void(*mtapi_ext_plugin_task_start_function_t)(
* to be canceled.
* This function should return MTAPI_SUCCESS if the task could be canceled and
* the appropriate MTAPI_ERR_* if not.
*
* \ingroup C_MTAPI_EXT
*/
typedef
void
(
*
mtapi_ext_plugin_task_cancel_function_t
)(
MTAPI_IN
mtapi_task_hndl_t
task
,
...
...
@@ -70,6 +79,8 @@ typedef void(*mtapi_ext_plugin_task_cancel_function_t)(
* to be finalized.
* This function should return MTAPI_SUCCESS if the action could be deleted and
* the appropriate MTAPI_ERR_* if not.
*
* \ingroup C_MTAPI_EXT
*/
typedef
void
(
*
mtapi_ext_plugin_action_finalize_function_t
)(
MTAPI_IN
mtapi_action_hndl_t
action
,
...
...
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