diff options
Diffstat (limited to 'src/vlib/format_funcs.h')
-rw-r--r-- | src/vlib/format_funcs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vlib/format_funcs.h b/src/vlib/format_funcs.h index 30e919d7e96..4e22625c9a9 100644 --- a/src/vlib/format_funcs.h +++ b/src/vlib/format_funcs.h @@ -47,6 +47,12 @@ u8 *format_vlib_read_write (u8 * s, va_list * args); /* Formats buffer data as printable ascii or as hex. */ u8 *format_vlib_buffer_data (u8 * s, va_list * args); +/* Formats thread name */ +u8 *format_vlib_thread_name (u8 * s, va_list * args); + +/* Formats thread name and thread index */ +u8 *format_vlib_thread_name_and_index (u8 * s, va_list * args); + /* Enable/on => 1; disable/off => 0. */ uword unformat_vlib_enable_disable (unformat_input_t * input, va_list * args); |