This file implements the platform abstraction layer APIs for os locks (e.g. semaphore). More...
#include "pal_os_lock.h"
Functions | |
void | pal_os_lock_create (pal_os_lock_t *p_lock, uint8_t lock_type) |
Creates a lock. More... | |
void | pal_os_lock_destroy (pal_os_lock_t *p_lock) |
Deinitializes the lock. More... | |
pal_status_t | pal_os_lock_acquire (pal_os_lock_t *p_lock) |
Acquires a lock. More... | |
void | pal_os_lock_release (pal_os_lock_t *p_lock) |
Releases the lock. More... | |
void | pal_os_lock_enter_critical_section (void) |
To enter critical section. More... | |
void | pal_os_lock_exit_critical_section (void) |
To exit critical section. More... | |
This file implements the platform abstraction layer APIs for os locks (e.g. semaphore).
Copyright (c) 2019 Infineon Technologies AG
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
\endcopyright
pal_status_t pal_os_lock_acquire | ( | pal_os_lock_t * | p_lock | ) |
Acquires a lock.
Acquires the lock associated with the instance of pal_os_lock_t.
[in] | p_lock | Valid instance of pal_os_lock_t. |
void pal_os_lock_create | ( | pal_os_lock_t * | p_lock, |
uint8_t | lock_type | ||
) |
Creates a lock.
Creates a lock to the instance of pal_os_lock_t.
[in] | p_lock | Valid instance of pal_os_lock_t. |
[in] | lock_type | Type of the lock. |
void pal_os_lock_destroy | ( | pal_os_lock_t * | p_lock | ) |
Deinitializes the lock.
Destroys the lock to the instance of pal_os_lock_t.
[in] | p_lock | Valid instance of pal_os_lock_t. |
void pal_os_lock_enter_critical_section | ( | void | ) |
To enter critical section.
Enters critical section
void pal_os_lock_exit_critical_section | ( | void | ) |
To exit critical section.
Exits critical section
void pal_os_lock_release | ( | pal_os_lock_t * | p_lock | ) |
Releases the lock.
Releases the lock associated with the instance of pal_os_lock_t.
[in] | p_lock | Valid instance of pal_os_lock_t. |