| Up to higher level directory | |||
| Name | Date | Size | |
|---|---|---|---|
| alloc.c | 08-Dec-2008 | 4.7K | |
| config.c | 08-Dec-2008 | 15.3K | |
| config.h | 08-Dec-2008 | 2.8K | |
| config_impl.h | 08-Dec-2008 | 1.4K | |
| eft.c | 08-Dec-2008 | 8K | |
| eft.conf | 08-Dec-2008 | 1.8K | |
| eft_mdb.c | 12-Nov-2009 | 22.7K | |
| eval.c | 11-Nov-2009 | 48.9K | |
| eval.h | 08-Dec-2008 | 1.7K | |
| evnv.c | 08-Dec-2008 | 6.4K | |
| evnv.h | 08-Dec-2008 | 1.2K | |
| fme.c | 18-Mar-2009 | 106.2K | |
| fme.h | 08-Dec-2008 | 3.8K | |
| iexpr.c | 08-Dec-2008 | 6.2K | |
| iexpr.h | 08-Dec-2008 | 1.3K | |
| io.c | 08-Dec-2008 | 1.5K | |
| ipath.c | 16-Jun-2009 | 9.8K | |
| ipath.h | 08-Dec-2008 | 1.4K | |
| ipath_impl.h | 08-Dec-2008 | 1.3K | |
| itree.c | 21-Jul-2009 | 56.4K | |
| itree.h | 16-Jun-2009 | 4.3K | |
| Makefile | 08-Dec-2008 | 1.7K | |
| platform.c | 08-Dec-2008 | 50.8K | |
| platform.h | 08-Dec-2008 | 2.3K | |
| README | 08-Dec-2008 | 1.8K | |
| stats.c | 08-Dec-2008 | 4.4K | |
| stats_impl.h | 08-Dec-2008 | 1.3K | |
1 # 2 # CDDL HEADER START 3 # 4 # The contents of this file are subject to the terms of the 5 # Common Development and Distribution License, Version 1.0 only 6 # (the "License"). You may not use this file except in compliance 7 # with the License. 8 # 9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 # or http://www.opensolaris.org/os/licensing. 11 # See the License for the specific language governing permissions 12 # and limitations under the License. 13 # 14 # When distributing Covered Code, include this CDDL HEADER in each 15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 # If applicable, add the following below this CDDL HEADER, with the 17 # fields enclosed by brackets "[]" replaced with your own identifying 18 # information: Portions Copyright [yyyy] [name of copyright owner] 19 # 20 # CDDL HEADER END 21 # 22 23 Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24 Use is subject to license terms. 25 26 #pragma ident "%Z%%M% %I% %E% SMI" 27 28 This file is usr/src/cmd/fma/modules/common/eversholt/README. 29 30 The files in this directory build the "eft.so" plugin to the 31 fault management daemon (fmd). This plugin is a diagnosis engine 32 driven by one or more eversholt fault tree (.eft) files. 33 34 eft.c implements the diagnosis engine entry points expected by 35 the fmd. The diagnosis engine is considered platform-neutral 36 code and is being used on other, non-Solaris platforms. The platform 37 specific services it requires are either provided by the fmd interfaces, 38 or by the routines in platform.c in this directory. 39 40 Most of the files that go into building eft.so are shared with the 41 eversholt compiler. Those files are pulled in by the Makefile 42 in this directory. They live in: 43 usr/src/cmd/fma/eversholt/common 44 45 When running under Solaris, eft.so uses the hardware topology library 46 (libtopo) to collect configuration information. 47