...
Description
Deletes a semaphore. This function should be used with care as multiple tasks may rely on the presence of the semaphore. Generally speaking, before deleting a semaphore, first delete all the tasks that access the semaphore. As a rule, it is highly recommended to not delete kernel objects at run time. 1003123 Anchor
Deleting the semaphore will not de-allocate the object. In other words, storage for the variable will still remain at the same location unless the semaphore is allocated dynamically from the heap. The dynamic allocation of objects has its own set of problems. Specifically, it is not recommended for embedded systems to allocate (and de-allocate) objects from the heap given the high likelihood of fragmentation. Anchor
Files
os.h/os_sem.c
Prototype
Code Block |
---|
OS_OBJ_QTY OSSemDel (OS_SEM *p_sem,
OS_OPT opt,
OS_ERR *p_err) |
Arguments
p_sem
is a pointer to the semaphore.
...
opt
specifies one of two options: OS_OPT_DEL_NO_PEND
or OS_OPT_DEL_ALWAYS
.
...
...
OS_OPT_DEL_NO_PEND
specifies to delete the semaphore only if no task is waiting on the semaphore. Because no task is “currently” waiting on the semaphore does not mean that a task will not attempt to wait for the semaphore later. How would such a task handle the situation waiting for a semaphore that was deleted? The application code will have to deal with this eventuality.
...
OS_OPT_DEL_ALWAYS
specifies deleting the semaphore, regardless of whether tasks are waiting on the semaphore or not. If there are tasks waiting on the semaphore, these tasks will be made ready-to-run and informed (through an appropriate error code) that the reason the task is readied is that the semaphore it was waiting on was deleted. The same reasoning applies with the other option, how will the tasks handle the fact that the semaphore they want to wait for is no longer available?
...
p_err
is a pointer to a variable used to hold an error code. The error code may be one of the following:
...
class | WebWorks_Indent_1 |
---|
...
...
OS_ERR_NONE
...
class | WebWorks_Indent_2 |
---|
...
If the call is successful and the semaphore has been deleted.
...
class | WebWorks_Indent_1 |
---|
...
OS_ERR_DEL_ISR
...
class | WebWorks_Indent_2 |
---|
...
If OS_CFG_CALLED_FROM_ISR_CHK_EN
set to
...
DEF_ENABLED
in os_cfg.h
: if attempting to delete the semaphore from an ISR.
...
class | WebWorks_Indent_1 |
---|
...
OS_ERR_ILLEGAL_DEL_RUN_TIME
If OS_SAFETY_CRITICAL_IEC61508
is defined: you called this after calling OSStart()
and thus you are no longer allowed to delete kernel objects.
OS_ERR_OBJ_PTR_NULL
...
class | WebWorks_Indent_2 |
---|
...
If OS_CFG_ARG_CHK_EN
is set to
...
DEF_ENABLED
in os_cfg.h
: if p_sem
is a NULL
pointer.
...
class | WebWorks_Indent_1 |
---|
...
OS_ERR_OBJ_TYPE
...
class | WebWorks_Indent_2 |
---|
...
If OS_CFG_OBJ_TYPE_CHK_EN
is set to
...
DEF_ENABLED
in os_cfg.h
: if p_sem
is not pointing to a semaphore.
...
...
OS_ERR_OPT_INVALID
...
class | WebWorks_Indent_2 |
---|
...
If OS_CFG_ARG_CHK_EN
is set to
...
DEF_ENABLED
in os_cfg.h
: if one of the two options mentioned in the opt
argument is not specified.
...
class | WebWorks_Indent_1 |
---|
...
OS_ERR_OS_NOT_RUNNING
If OS_CFG_INVALID_OS_CALLS_CHK_EN
is set to DEF_ENABLED
in os_cfg.h
: if µC/OS-III is not running yet.
OS_ERR_TASK_WAITING
...
class | WebWorks_Indent_2 |
---|
...
If one or more tasks are waiting on the semaphore.
...
...
Returned Value
Anchor
Required Configuration
OS_CFG_SEM_EN
and OS_CFG_SEM_DEL_EN
must be enabled in os_cfg.h
. Refer to µC-OS-III Configuration Manual.
Callers
Application.
Notes/Warnings
- Use this call with care because other tasks might expect the presence of the semaphore.
...
Example Usage
...
Code Block |
---|
...
HTML Table | |||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
summary | |||||||||||||||||||||||||||||||||||||||||||||||
class | Code_Listing | ||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Cell (td) | |||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003170 | 1003170 | OS_SEM SwSem;|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003171 | 1003171 | |||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003172 | 1003172 | |||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003173 | 1003173 | void Task (void *p_arg)|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003174 | 1003174 | {|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003175 | 1003175 | OS_ERR err;|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003176 | 1003176 | |||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003177 | 1003177 | |||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003178 | 1003178 |
| ||||||||||||||||||||||||||||||||||||||||||||
OS_SEM SwSem; void Task (void *p_arg) { OS_ERR err; OS_OBJ_QTY qty; (void)&p_arg; Anchor | | 1003179 | 1003179 | while||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003180 | 1003180 | :|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003181 | 1003181 | :|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003182 | 1003182 | OSSemDel(&SwSem,|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003183 | 1003183 | |||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003184 | 1003184 | &err);|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003185 | 1003185 | /* Check “err” */|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003186 | 1003186 | :|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003187 | 1003187 | :|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003188 | 1003188 | }|||||||||||||||||||||||||||||||||||||||||||||
Anchor | 1003189 | 1003189 | }|||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) | |||||||||||||||||||||||||||||||||||||||||||||||
Table Row (tr) |