diff options
author | vikram <none@none> | 2008-08-04 13:14:30 -0700 |
---|---|---|
committer | vikram <none@none> | 2008-08-04 13:14:30 -0700 |
commit | 537714da5bc8b4d71ae488f134e397149fe26149 (patch) | |
tree | 872fa2fc4b1e797c497b470af8009683d5b07038 /usr/src/cmd/devfsadm/devfsadm_impl.h | |
parent | d6770490b09260e2b0c0941b28951b2ec473a946 (diff) | |
download | illumos-gate-537714da5bc8b4d71ae488f134e397149fe26149.tar.gz |
6510613 devfsadm_exit() seems can be called recursively
Diffstat (limited to 'usr/src/cmd/devfsadm/devfsadm_impl.h')
-rw-r--r-- | usr/src/cmd/devfsadm/devfsadm_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/cmd/devfsadm/devfsadm_impl.h b/usr/src/cmd/devfsadm/devfsadm_impl.h index 3e6e47cc8e..40d05e414b 100644 --- a/usr/src/cmd/devfsadm/devfsadm_impl.h +++ b/usr/src/cmd/devfsadm/devfsadm_impl.h @@ -18,7 +18,7 @@ * * CDDL HEADER END * - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -389,9 +389,9 @@ static int call_minor_init(module_t *module); static void load_module(char *module, char *cdir); static void invalidate_enumerate_cache(void); static pid_t enter_dev_lock(void); -static void exit_dev_lock(void); +static void exit_dev_lock(int exiting); static pid_t enter_daemon_lock(void); -static void exit_daemon_lock(void); +static void exit_daemon_lock(int exiting); static int process_devlink_compat(di_minor_t minor, di_node_t node); static int alias(char *, char *); static int devfsadm_copy(void); |