Type Alias mariadb_sys::mysql_cond_t

source ·
pub type mysql_cond_t = st_mysql_cond;
Expand description

Type of an instrumented condition. @c mysql_cond_t is a drop-in replacement for @c pthread_cond_t. @sa mysql_cond_init @sa mysql_cond_wait @sa mysql_cond_timedwait @sa mysql_cond_signal @sa mysql_cond_broadcast @sa mysql_cond_destroy

Aliased Type§

struct mysql_cond_t {
    pub m_cond: pthread_cond_t,
    pub m_psi: *mut PSI_cond,
}

Fields§

§m_cond: pthread_cond_t

The real condition

§m_psi: *mut PSI_cond

The instrumentation hook. Note that this hook is not conditionally defined, for binary compatibility of the @c mysql_cond_t interface.