CONFIG_ERRNO

Enable errno support

Type: bool

Help

Enable per-thread errno in the kernel. Application and library code must include errno.h provided by the C library (libc) to use the errno symbol. The C library must access the per-thread errno via the _get_errno() symbol.

Defaults

  • “y”

Symbols selected by this symbol

Symbols that select this symbol

Kconfig definition

At kernel/Kconfig:176

Included via Kconfig:10Kconfig.zephyr:25

Menu path: (top menu) → General Kernel Options

config ERRNO
    bool
    prompt "Enable errno support"
    default "y"
    select THREAD_USERSPACE_LOCAL_DATA if USERSPACE
    help
      Enable per-thread errno in the kernel. Application and library code must
      include errno.h provided by the C library (libc) to use the errno
      symbol. The C library must access the per-thread errno via the
      _get_errno() symbol.

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