Searched refs:daemon_lock_fd (Results 1 – 3 of 3) sorted by relevance
/titanic_44/usr/src/cmd/rcm_daemon/common/ |
H A D | rcm_main.c | 49 static int daemon_lock_fd; variable 138 daemon_lock_fd = open(daemon_lock_file, O_CREAT|O_RDWR, 0644); in enter_daemon_lock() 139 if (daemon_lock_fd < 0) { in enter_daemon_lock() 150 if (fcntl(daemon_lock_fd, F_SETLK, &lock) == 0) { in enter_daemon_lock() 157 (fcntl(daemon_lock_fd, F_GETLK, &lock) == 0)) { in enter_daemon_lock() 181 if (fcntl(daemon_lock_fd, F_SETLK, &lock) == -1) { in exit_daemon_lock() 186 (void) close(daemon_lock_fd); in exit_daemon_lock()
|
/titanic_44/usr/src/cmd/syseventd/daemons/syseventd/ |
H A D | syseventd.c | 97 static int daemon_lock_fd; variable 1560 daemon_lock_fd = open(local_lock_file, O_CREAT|O_RDWR, 0644); in enter_daemon_lock() 1561 if (daemon_lock_fd < 0) { in enter_daemon_lock() 1572 if (fcntl(daemon_lock_fd, F_SETLK, &lock) == -1) { in enter_daemon_lock() 1573 if (fcntl(daemon_lock_fd, F_GETLK, &lock) == -1) { in enter_daemon_lock() 1598 if (fcntl(daemon_lock_fd, F_SETLK, &lock) == -1) { in exit_daemon_lock() 1603 if (close(daemon_lock_fd) == -1) { in exit_daemon_lock()
|
/titanic_44/usr/src/cmd/devfsadm/ |
H A D | devfsadm.c | 204 static int daemon_lock_fd; variable 4048 daemon_lock_fd = open(daemon_lockfile, O_CREAT|O_RDWR, 0644); in enter_daemon_lock() 4049 if (daemon_lock_fd < 0) { in enter_daemon_lock() 4060 if (fcntl(daemon_lock_fd, F_SETLK, &lock) == -1) { in enter_daemon_lock() 4063 if (fcntl(daemon_lock_fd, F_GETLK, &lock) == -1) { in enter_daemon_lock() 4096 if (fcntl(daemon_lock_fd, F_SETLK, &lock) == -1) { in exit_daemon_lock() 4100 if (close(daemon_lock_fd) == -1) { in exit_daemon_lock()
|