File thread_mode.h

Enums

enum ucs_thread_mode_t

Thread sharing mode.

Specifies thread sharing mode of an object.

Values:

enumerator UCS_THREAD_MODE_SINGLE

Only the master thread can access (i.e. the thread that initialized the context; multiple threads may exist and never access)

enumerator UCS_THREAD_MODE_SERIALIZED

Multiple threads can access, but only one at a time

enumerator UCS_THREAD_MODE_MULTI

Multiple threads can access concurrently

enumerator UCS_THREAD_MODE_LAST

Variables

const char *ucs_thread_mode_names[]