Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.09 KB

nng_thread_set_name.3supp.adoc

File metadata and controls

47 lines (31 loc) · 1.09 KB

nng_thread_set_name(3supp)

NAME

nng_thread_set_name - set thread name

SYNOPSIS

#include <nng/nng.h>

void nng_thread_set_name(nng_thread *thread, const char *name);

DESCRIPTION

The nng_thread_set_name() function attempts to set the name for the thread to name.

If thread is NULL, then the name is set for the current thread.

Support for this, and how names are exposed, varies between platform implementations. This function is intended to facilitate debugging applications that may have many threads.

Tip
Internal threads created by NNG will have names beginning with nng:.

RETURN VALUES

None.

ERRORS

None.