Home
last modified time | relevance | path

Searched refs:HOTPLUGD_DOOR (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/cmd/hotplugd/
H A Dsvc-hotplug34 HOTPLUGD_DOOR=/var/run/hotplugd_door
46 if [ -f $HOTPLUGD_DOOR ]; then
53 rm -f $HOTPLUGD_DOOR
H A Dhotplugd_door.c96 if ((fd = open(HOTPLUGD_DOOR, O_CREAT|O_EXCL|O_RDONLY, 0644)) == -1) { in door_server_init()
101 HOTPLUGD_DOOR, strerror(errno)); in door_server_init()
115 (void) fdetach(HOTPLUGD_DOOR); in door_server_init()
118 if (fattach(door_fd, HOTPLUGD_DOOR) != 0) { in door_server_init()
119 log_err("Cannot attach to door file '%s': %s\n", HOTPLUGD_DOOR, in door_server_init()
122 (void) fdetach(HOTPLUGD_DOOR); in door_server_init()
140 (void) fdetach(HOTPLUGD_DOOR); in door_server_fini()
143 (void) unlink(HOTPLUGD_DOOR); in door_server_fini()
/titanic_41/usr/src/lib/libhotplug/common/
H A Dlibhotplug_impl.h70 #define HOTPLUGD_DOOR "/var/run/hotplugd_door" macro
H A Dlibhotplug.c1183 if ((door_fd = open(HOTPLUGD_DOOR, O_RDONLY)) < 0) { in i_hp_call_hotplugd()