F´ Flight Software - C/C++ Documentation
NASA-v2.0.1
A framework for building embedded system applications to NASA flight quality standards.
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
g
h
i
m
r
s
t
v
w
Variables
Typedefs
Enumerations
Enumerator
a
b
f
h
i
n
o
p
s
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
~
Variables
b
d
e
f
g
h
i
l
m
n
p
q
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
d
e
f
g
h
l
m
n
o
p
q
r
s
t
w
Related Functions
Files
File List
File Members
All
_
a
b
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
Functions
f
i
m
s
u
Variables
Typedefs
Enumerations
Enumerator
c
d
f
m
p
r
s
t
Macros
a
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
BareTaskHandle.hpp
Go to the documentation of this file.
1
/*
2
* BareTaskHandle.hpp
3
*
4
* Created on: Feb 28, 2019
5
* Author: lestarch
6
*/
7
#ifndef OS_BAREMETAL_TASKRUNNER_BARETASKHANDLE_HPP_
8
#define OS_BAREMETAL_TASKRUNNER_BARETASKHANDLE_HPP_
9
#include <
Os/Task.hpp
>
10
namespace
Os
{
14
class
BareTaskHandle
{
15
public
:
17
BareTaskHandle
() :
m_enabled
(
false
),
m_priority
(0),
m_routine
(
NULL
) {}
19
bool
m_enabled
;
21
NATIVE_INT_TYPE
m_priority
;
23
Task::taskRoutine
m_routine
;
25
void
*
m_argument
;
26
};
27
}
28
#endif
/* OS_BAREMETAL_TASKRUNNER_BARETASKHANDLE_HPP_ */
Os
Definition:
File.cpp:7
Os::BareTaskHandle::m_enabled
bool m_enabled
Save the priority.
Definition:
BareTaskHandle.hpp:19
Os::BareTaskHandle::m_argument
void * m_argument
Definition:
BareTaskHandle.hpp:25
Os::BareTaskHandle::m_priority
NATIVE_INT_TYPE m_priority
Function passed in to the task.
Definition:
BareTaskHandle.hpp:21
Task.hpp
Os::BareTaskHandle::m_routine
Task::taskRoutine m_routine
Argument input pointer.
Definition:
BareTaskHandle.hpp:23
Os::Task::taskRoutine
void(* taskRoutine)(void *ptr)
prototype for task routine started in task context
Definition:
Task.hpp:28
Os::BareTaskHandle
Definition:
BareTaskHandle.hpp:14
NATIVE_INT_TYPE
int NATIVE_INT_TYPE
native integer type declaration
Definition:
BasicTypes.hpp:29
NULL
#define NULL
NULL.
Definition:
BasicTypes.hpp:100
Os
Baremetal
TaskRunner
BareTaskHandle.hpp
Generated by
1.8.17