HomeSort by: relevance | last modified time | path
    Searched refs:cv_opaque (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/sys/
condvar.h 36 void *cv_opaque[2]; member in struct:kcondvar
  /src/sys/kern/
kern_condvar.c 54 * cv_opaque[0] sleepq_t
55 * cv_opaque[1] description for ps(1)
57 * cv_opaque[0] is protected by the interlock passed to cv_wait() (enqueue
61 * cv_opaque[1] (the wmesg) is static and does not change throughout the life
64 #define CV_SLEEPQ(cv) ((sleepq_t *)(cv)->cv_opaque)
65 #define CV_WMESG(cv) ((const char *)(cv)->cv_opaque[1])
66 #define CV_SET_WMESG(cv, v) (cv)->cv_opaque[1] = __UNCONST(v)
  /src/sys/ddb/
db_xxx.c 339 db_read_bytes((db_addr_t)&cv->cv_opaque[1], sizeof(wmesg),
344 db_show_sleepq((db_addr_t)&cv->cv_opaque[0], false, 0, modif);

Completed in 13 milliseconds