TNeo
v1.07
|
Definitions used through the whole kernel.
Definition in file tn_common.h.
Go to the source code of this file.
Macros | |
#define | TN_NULL ((void *)0) |
NULL pointer definition. | |
#define | TN_BOOL int |
boolean type definition | |
#define | TN_TRUE (1 == 1) |
true value definition for type TN_BOOL | |
#define | TN_FALSE (1 == 0) |
false value definition for type TN_BOOL | |
#define | TN_MAKE_ALIG_SIZE(a) (((a) + (sizeof(TN_UWord) - 1)) & (~(sizeof(TN_UWord) - 1))) |
Macro for making a number a multiple of sizeof(TN_UWord) , should be used with fixed memory block pool. More... | |
#define | TN_MAKE_ALIG(a) TN_MAKE_ALIG_SIZE(a) |
The same as TN_MAKE_ALIG_SIZE but its behavior depends on the option TN_API_MAKE_ALIG_ARG More... | |
Typedefs | |
typedef void( | TN_TaskBody )(void *param) |
Prototype for task body function. | |
typedef unsigned long | TN_TickCnt |
Type for system tick count, it is used by the kernel to represent absolute tick count value as well as relative timeouts. More... | |
Enumerations | |
enum | TN_ObjId { TN_ID_NONE = (unsigned int)0x0, TN_ID_TASK = (unsigned int)0x47ABCF69, TN_ID_SEMAPHORE = (unsigned int)0x6FA173EB, TN_ID_EVENTGRP = (unsigned int)0x5E224F25, TN_ID_DATAQUEUE = (unsigned int)0x0C8A6C89, TN_ID_FSMEMORYPOOL = (unsigned int)0x26B7CE8B, TN_ID_MUTEX = (unsigned int)0x17129E45, TN_ID_TIMER = (unsigned int)0x1A937FBC, TN_ID_EXCHANGE = (unsigned int)0x32b7c072, TN_ID_EXCHANGE_LINK = (unsigned int)0x24d36f35 } |
Magic number for object validity verification. More... | |
enum | TN_RCode { TN_RC_OK = 0, TN_RC_TIMEOUT = -1, TN_RC_OVERFLOW = -2, TN_RC_WCONTEXT = -3, TN_RC_WSTATE = -4, TN_RC_WPARAM = -5, TN_RC_ILLEGAL_USE = -6, TN_RC_INVALID_OBJ = -7, TN_RC_DELETED = -8, TN_RC_FORCED = -9, TN_RC_INTERNAL = -10 } |
Result code returned by kernel services. More... | |
Macro for making a number a multiple of sizeof(TN_UWord)
, should be used with fixed memory block pool.
See tn_fmem_create()
for usage example.
Definition at line 231 of file tn_common.h.
#define TN_MAKE_ALIG | ( | a | ) | TN_MAKE_ALIG_SIZE(a) |
The same as TN_MAKE_ALIG_SIZE
but its behavior depends on the option TN_API_MAKE_ALIG_ARG
TN_MAKE_ALIG_SIZE
macro instead of this one, in order to avoid confusion caused by various TNKernel ports: refer to the section Macro MAKE_ALIG() for details. Definition at line 255 of file tn_common.h.
typedef unsigned long TN_TickCnt |
Type for system tick count, it is used by the kernel to represent absolute tick count value as well as relative timeouts.
When it is used as a timeout value, it represents the maximum number of system ticks to wait.
Assume user called some system function, and it can't perform its job immediately (say, it needs to lock mutex but it is already locked, etc).
So, function can wait or return an error. There are possible timeout
values and appropriate behavior of the function:
timeout
is set to 0
: function doesn't wait at all, no context switch is performed, TN_RC_TIMEOUT
is returned immediately.timeout
is set to TN_WAIT_INFINITE
: function waits until it eventually can perform its job. Timeout is not taken in account, so TN_RC_TIMEOUT
is never returned.timeout
is set to other value: function waits at most specified number of system ticks. Strictly speaking, it waits from (timeout - 1)
to timeout
ticks. So, if you specify that timeout is 1, be aware that it might actually don't wait at all: if system timer interrupt happens just while function is putting task to wait (with interrupts disabled), then ISR will be executed right after function puts task to wait. Then tn_tick_int_processing()
will immediately remove the task from wait queue and make it runnable again.
So, to guarantee that task waits at least 1 system tick, you should specify timeout value of 2
.
Note also that there are other possible ways to make task runnable:
tn_task_sleep()
, it may be woken up by some other task, by means of tn_task_wakeup()
. In this case, tn_task_sleep()
returns TN_RC_OK
.tn_task_release_wait()
. It this case, TN_RC_FORCED
is returned by the waiting function. (the usage of the tn_task_release_wait()
function is discouraged though) Definition at line 188 of file tn_common.h.
enum TN_ObjId |
Magic number for object validity verification.
Definition at line 65 of file tn_common.h.
enum TN_RCode |
Result code returned by kernel services.
Enumerator | |
---|---|
TN_RC_OK |
Successful operation. |
TN_RC_TIMEOUT |
Timeout (consult
|
TN_RC_OVERFLOW |
This code is returned in the following cases: |
TN_RC_WCONTEXT |
Wrong context error: returned if function is called from non-acceptable context. Required context suggested for every function by badges:
|
TN_RC_WSTATE |
Wrong task state error: requested operation requires different task state. |
TN_RC_WPARAM |
This code is returned by most of the kernel functions when wrong params were given to function. This error code can be returned if only build-time option
|
TN_RC_ILLEGAL_USE |
Illegal usage. Returned in the following cases:
|
TN_RC_INVALID_OBJ |
Returned when user tries to perform some operation on invalid object (mutex, semaphore, etc). Object validity is checked by comparing special
|
TN_RC_DELETED |
Object for whose event task was waiting is deleted. |
TN_RC_FORCED |
Task was released from waiting forcibly because some other task called |
TN_RC_INTERNAL |
Internal kernel error, should never be returned by kernel services. If it is returned, it's a bug in the kernel. |
Definition at line 81 of file tn_common.h.