pub unsafe extern "C" fn aws_thread_id_t_to_string(
thread_id: aws_thread_id_t,
buffer: *mut c_char,
bufsz: usize
) -> c_int
Expand description
Converts an aws_thread_id_t to a c-string. For portability, aws_thread_id_t
must not be printed directly. Intended primarily to support building log
lines that include the thread id in them. The parameter buffer
must
point-to a char buffer of length bufsz == AWS_THREAD_ID_T_REPR_BUFSZ
. The
thread id representation is returned in buffer
.