Searched defs:callout_table (Results 1 – 2 of 2) sorted by relevance
352 typedef struct callout_table { struct353 kmutex_t ct_mutex; /* protects all callout state */354 callout_t *ct_free; /* free callout structures */355 callout_list_t *ct_lfree; /* free callout list structures */356 callout_id_t ct_short_id; /* most recently issued short-term ID */357 callout_id_t ct_long_id; /* most recently issued long-term ID */358 callout_hash_t *ct_idhash; /* ID hash chains */359 callout_hash_t *ct_clhash; /* callout list hash */360 kstat_named_t *ct_kstat_data; /* callout kstat data */362 uint_t ct_type; /* callout table type */[all …]
57 static callout_table_t *callout_table; /* global callout table array */ variable