diff options
| author | Gavin Maltby <Gavin.Maltby@Sun.COM> | 2009-11-19 15:28:11 +1100 | 
|---|---|---|
| committer | Gavin Maltby <Gavin.Maltby@Sun.COM> | 2009-11-19 15:28:11 +1100 | 
| commit | 49b225e1cfa7bbf7738d4df0a03f18e3283426eb (patch) | |
| tree | fec8a2ac5f26eef93ef906b43e2642f06bcba3a6 /usr/src/lib/libds/common/libds.c | |
| parent | 6dea387a9f9ddc2932a4c49a09384dfdcd5a703b (diff) | |
| download | illumos-joyent-49b225e1cfa7bbf7738d4df0a03f18e3283426eb.tar.gz | |
PSARC/2009/554 door_xcreate - extended door creation interface for private doors
PSARC/2009/573 libfmevent - external subscriptions to FMA protocol events
PSARC/2009/574 GPEC interface changes and additions
6893144 add door_xcreate for creating private doors with per-door thread creation control
6896220 sysevent_evc_xsubscribe and other GPEC modifications
6900975 sysevent_evc_{unbind,unsubscribe} off-by-one in subscriber list traversal
6868087 facility to allow external processes to subscribe to FMA protocol events
6896205 fmd module to forward selected protocol events for external subscription
Diffstat (limited to 'usr/src/lib/libds/common/libds.c')
| -rw-r--r-- | usr/src/lib/libds/common/libds.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/usr/src/lib/libds/common/libds.c b/usr/src/lib/libds/common/libds.c index da4b95f524..274b90132a 100644 --- a/usr/src/lib/libds/common/libds.c +++ b/usr/src/lib/libds/common/libds.c @@ -19,7 +19,7 @@   * CDDL HEADER END   */  /* - * Copyright 2008 Sun Microsystems, Inc.  All rights reserved. + * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.   * Use is subject to license terms.   */ @@ -316,7 +316,7 @@ ds_init_sysev(void)  	}  	if (sysevent_evc_subscribe(ds_evchan, ds_sid_name, EC_VLDS,  	    ds_recv, NULL, 0) != 0) { -		sysevent_evc_unbind(ds_evchan); +		(void) sysevent_evc_unbind(ds_evchan);  		ds_evchan = NULL;  		return (errno);  	} | 
