diff options
author | jwadams <none@none> | 2005-08-23 16:24:21 -0700 |
---|---|---|
committer | jwadams <none@none> | 2005-08-23 16:24:21 -0700 |
commit | 8918dff3e162b85faa068f02fc6f2ca350150e71 (patch) | |
tree | 99eb952e98259fb77ea5f24d198c409d2a76668a /usr/src/lib/libscf/common/lowlevel_impl.h | |
parent | f53a9c5408883906fbe75e40dff93747fb2089a0 (diff) | |
download | illumos-gate-8918dff3e162b85faa068f02fc6f2ca350150e71.tar.gz |
6208709 scf_iter_handle_scopes always deadlocks in MT processes
6227387 /lib/svc/bin/restore_repository gives incorrect error when run as a non-root user
6255078 SMF shouldn't modify /etc files unnecessarily
6255593 svc.configd's per-client entity management is O(N)
6255609 libscf's entity id management handles overflow poorly
6256393 restore_repository's options should be more clear
6264601 svccfg's "repository" should use relative paths
6277017 svc.configd coredumps while trying to reboot on low memory condition
6305465 uu_list_t parent pointer confounded ::findleaks
Diffstat (limited to 'usr/src/lib/libscf/common/lowlevel_impl.h')
-rw-r--r-- | usr/src/lib/libscf/common/lowlevel_impl.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr/src/lib/libscf/common/lowlevel_impl.h b/usr/src/lib/libscf/common/lowlevel_impl.h index 5137eaf8ad..a3bc40aed9 100644 --- a/usr/src/lib/libscf/common/lowlevel_impl.h +++ b/usr/src/lib/libscf/common/lowlevel_impl.h @@ -20,7 +20,7 @@ * CDDL HEADER END */ /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -101,8 +101,10 @@ struct scf_handle { scf_property_t *rh_property; scf_value_t *rh_value; }; -#define HANDLE_DEAD 0x0001 -#define HANDLE_UNREFED 0x0002 +#define HANDLE_DEAD 0x0001 +#define HANDLE_UNREFED 0x0002 +#define HANDLE_WRAPPED_ENTITY 0x0004 +#define HANDLE_WRAPPED_ITER 0x0008 #define RH_HOLD_ITER 0x0001 #define RH_HOLD_SCOPE 0x0002 |