DOKK / manpages / debian 13 / dpdk-doc / RTE_DECLARE_PER_LCORE.3.en
rte_errno.h(3) Library Functions Manual rte_errno.h(3)

rte_errno.h

#include <rte_per_lcore.h>


#define rte_errno RTE_PER_LCORE(_rte_errno)
#define __ELASTERROR 1000


enum { RTE_MIN_ERRNO = __ELASTERROR, E_RTE_SECONDARY, E_RTE_NO_CONFIG, RTE_MAX_ERRNO }


RTE_DECLARE_PER_LCORE (int, _rte_errno)
const char * rte_strerror (int errnum)

API for error cause tracking

Definition in file rte_errno.h.

Error number value, stored per-thread, which can be queried after calls to certain functions to determine why those functions failed.

Uses standard values from errno.h wherever possible, with a small number of additional possible values for RTE-specific conditions.

Definition at line 29 of file rte_errno.h.

Check if we have a defined value for the max system-defined errno values. if no max defined, start from 1000 to prevent overlap with standard values

Definition at line 49 of file rte_errno.h.

Error types

Enumerator

Start numbering above std errno vals
Operation not allowed in secondary processes
Missing rte_config
Max RTE error number

Definition at line 53 of file rte_errno.h.

Per core error number.

Function which returns a printable string describing a particular error code. For non-RTE-specific error codes, this function returns the value from the libc strerror function.

Parameters

errnum The error number to be looked up - generally the value of rte_errno

Returns

A pointer to a thread-local string containing the text describing the error.

Generated automatically by Doxygen for DPDK from the source code.

Version 24.11.3 DPDK