Searched defs:module_head (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/krtld/
H A Dkrtld.c35 static uintptr_t module_head; /* Head of kernel modctl list */ variable
48 mwd->mwd_head = (wsp->walk_addr == NULL ? module_head : wsp->walk_addr);
392 module_head = (uintptr_t)sym.st_value;
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Drcm_subr.c39 static module_t *module_head; /* linked list of modules */ variable
336 module = module_head;
362 module->next = module_head;
363 module_head = module;
376 module_t *curr = module_head, *prev = NULL;
400 module_head = curr->next;
1525 mod = module_head;
1621 mod = module_head;
1790 mod = module_head;
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c193 static module_t *module_head = NULL; variable
1438 if (module_head == NULL) {
1447 if (module_head != NULL)
2112 while (module_head != NULL) {
2114 if ((module_head->minor_fini != NULL) &&
2115 ((module_head->flags & MODULE_ACTIVE) == MODULE_ACTIVE)) {
2116 (void) (*(module_head->minor_fini))();
2119 vprint(MODLOAD_MID, "unloading module %s\n", module_head->name);
2120 free(module_head->name);
2121 (void) dlclose(module_head
[all...]

Completed in 56 milliseconds