CONFIG_THREAD_CUSTOM_DATA

Thread custom data

Thread custom data

Type: bool

Help

This option allows each thread to store 32 bits of custom data, which can be accessed using the k_thread_custom_data_xxx() APIs.

Help

This option allows each thread to store 32 bits of custom data, which can be accessed using the k_thread_custom_data_xxx() APIs.

Defaults

Kconfig definitions

At kernel/Kconfig:161

Included via Kconfig:10Kconfig.zephyr:25

Menu path: (top menu) → General Kernel Options

config THREAD_CUSTOM_DATA
    bool
    prompt "Thread custom data"
    help
      This option allows each thread to store 32 bits of custom data,
      which can be accessed using the k_thread_custom_data_xxx() APIs.

At lib/cmsis_rtos_v1/Kconfig:15

Included via Kconfig:10Kconfig.zephyr:33lib/Kconfig:31

Menu path: (top menu) → Additional libraries

config THREAD_CUSTOM_DATA
    bool
    prompt "Thread custom data" if CMSIS_RTOS_V1
    default "y" if CMSIS_RTOS_V1
    depends on CMSIS_RTOS_V1
    help
      This option allows each thread to store 32 bits of custom data,
      which can be accessed using the k_thread_custom_data_xxx() APIs.

(Definitions include propagated dependencies, including from if’s and menus.)