dtrace_hash_t
static dtrace_hash_t *dtrace_bymod; /* probes hashed by module */
static dtrace_hash_t *dtrace_byfunc; /* probes hashed by function */
static dtrace_hash_t *dtrace_byname; /* probes hashed by name */
static dtrace_hash_t *
dtrace_hash_t *hash = kmem_zalloc(sizeof (dtrace_hash_t), KM_SLEEP);
dtrace_hash_destroy(dtrace_hash_t *hash)
kmem_free(hash, sizeof (dtrace_hash_t));
dtrace_hash_resize(dtrace_hash_t *hash)
dtrace_hash_add(dtrace_hash_t *hash, dtrace_probe_t *new)
dtrace_hash_lookup(dtrace_hash_t *hash, dtrace_probe_t *template)
dtrace_hash_collisions(dtrace_hash_t *hash, dtrace_probe_t *template)
dtrace_hash_remove(dtrace_hash_t *hash, dtrace_probe_t *probe)
dtrace_hash_t *hash = NULL;