Thread safety

LwPRINTF uses re-entrant functions, especially the one that format string to user application buffer. It is fully allowed to access to the same LwPRINTF instance from multiple operating-system threads.

However, when it comes to direct print functions, such as lwprintf_printf_ex() (or any other similar), calling those functions from multiple threads may introduce mixed output stream of data.

This is due to the fact that direct printing functions use same output function to print single character. When called from multiple threads, one thread may preempt another, causing strange output string.

Multiple threads printing at the same time without thread-safety enabled
 1#include "lwprintf/lwprintf.h"
 2
 3/* Assuming LwPRINTF has been initialized before */
 4
 5void
 6task_1(void* arg) {
 7	lwprintf_printf("Hello world\r\n");
 8}
 9
10void
11task_2(void* arg) {
12	lwprintf_printf("This is Task 2\r\n");
13}
14
15/*
16 * If thread safety is not enabled,
17 * running above example may print:
18 *
19 * "Hello This is Task 2\r\nworld\r\n"
20 */

LwPRINTF therefore comes with a solution that introduces mutexes to lock print functions when in use from within single thread context.

Note

If application does not have any issues concerning mixed output, it is safe to disable OS support in OS environment. This will not have any negative effect on performance or memory corruption.

Tip

To enable thread-safety support, parameter LWPRINTF_CFG_OS must be set to 1. Please check Configuration for more information about other options.

After thread-safety features has been enabled, it is necessary to implement 4 low-level system functions.

Tip

System function template example is available in lwprintf/src/system/ folder.

Example code for CMSIS-OS V2

Note

Check System functions section for function description

System function implementation for CMSIS-OS based operating systems
 1/**
 2 * \file            lwprintf_sys_cmsis_os.c
 3 * \brief           System functions for CMSIS-OS based operating system
 4 */
 5
 6/*
 7 * Copyright (c) 2020 Tilen MAJERLE
 8 *
 9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without restriction,
12 * including without limitation the rights to use, copy, modify, merge,
13 * publish, distribute, sublicense, and/or sell copies of the Software,
14 * and to permit persons to whom the Software is furnished to do so,
15 * subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
22 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
23 * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
25 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27 * OTHER DEALINGS IN THE SOFTWARE.
28 *
29 * This file is part of LwPRINTF - Lightweight stdio manager library.
30 *
31 * Author:          Tilen MAJERLE <tilen@majerle.eu>
32 * Version:         v1.0.3
33 */
34#include "system/lwprintf_sys.h"
35
36#if LWPRINTF_CFG_OS && !__DOXYGEN__
37
38#include "cmsis_os.h"
39
40uint8_t
41lwprintf_sys_mutex_create(LWPRINTF_CFG_OS_MUTEX_HANDLE* m) {
42    const osMutexAttr_t attr = {
43        .name = "lwprintf_mutex",
44    };
45    return (*m = osMutexNew(&attr)) != NULL;
46}
47
48uint8_t
49lwprintf_sys_mutex_isvalid(LWPRINTF_CFG_OS_MUTEX_HANDLE* m) {
50    return *m != NULL;
51}
52
53uint8_t
54lwprintf_sys_mutex_wait(LWPRINTF_CFG_OS_MUTEX_HANDLE* m) {
55    return osMutexAcquire(*m, osWaitForever) == osOK;
56}
57
58uint8_t
59lwprintf_sys_mutex_release(LWPRINTF_CFG_OS_MUTEX_HANDLE* m) {
60    return osMutexRelease(*m) == osOK;
61}
62
63#endif /* LWPRINTF_CFG_OS && !__DOXYGEN__ */