From 4ed2dc64fcad6fd4c39bd4b3ac01da03fb19872d Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Mon, 28 Dec 2020 18:36:12 +0000 Subject: [PATCH] Added missing field to chconfs. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13998 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/cfg/chconf.h | 3 ++- demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/cfg/chconf.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/cfg/chconf.h b/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/cfg/chconf.h index ea9ea7b85..c3c524f0c 100644 --- a/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/cfg/chconf.h +++ b/demos/STM32/NASA-OSAL-STM32F407-DISCOVERY/cfg/chconf.h @@ -647,7 +647,8 @@ * @details User fields added to the end of the @p thread_t structure. */ #define CH_CFG_THREAD_EXTRA_FIELDS \ - /* Add threads custom fields here.*/ + /* Add threads custom fields here.*/ \ + void *osal_delete_handler; /** * @brief Threads initialization hook. diff --git a/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/cfg/chconf.h b/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/cfg/chconf.h index 530b08057..b1dfb4ec5 100644 --- a/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/cfg/chconf.h +++ b/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/cfg/chconf.h @@ -647,7 +647,8 @@ * @details User fields added to the end of the @p thread_t structure. */ #define CH_CFG_THREAD_EXTRA_FIELDS \ - /* Add threads custom fields here.*/ + /* Add threads custom fields here.*/ \ + void *osal_delete_handler; /** * @brief Threads initialization hook.