root/lm-sensors/trunk/prog/sensord/sensord.h @ 5678

Revision 5678, 2.5 KB (checked in by andy, 4 years ago)

Convert coding style in prog/sensord/ from gnu to kernel style.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1/*
2 * sensord
3 *
4 * A daemon that periodically logs sensor information to syslog.
5 *
6 * Copyright (c) 1999-2002 Merlin Hughes <merlin@merlin.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21 * MA 02110-1301 USA.
22 */
23
24#include "lib/sensors.h"
25
26extern void sensorLog(int priority, const char *fmt, ...);
27
28/* from args.c */
29
30extern int isDaemon;
31extern const char *sensorsCfgFile;
32extern const char *pidFile;
33extern const char *rrdFile;
34extern const char *cgiDir;
35extern int scanTime;
36extern int logTime;
37extern int rrdTime;
38extern int rrdNoAverage;
39extern int syslogFacility;
40extern int doScan;
41extern int doSet;
42extern int doCGI;
43extern int doLoad;
44extern int debug;
45extern sensors_chip_name chipNames[];
46extern int numChipNames;
47
48extern int parseArgs(int argc, char **argv);
49extern int parseChips(int argc, char **argv);
50
51/* from lib.c */
52
53extern int loadLib(const char *cfgPath);
54extern int reloadLib(const char *cfgPath);
55extern int unloadLib(void);
56
57/* from sense.c */
58
59extern int readChips(void);
60extern int scanChips(void);
61extern int setChips(void);
62extern int rrdChips(void);
63
64/* from rrd.c */
65
66extern char rrdBuff[];
67extern int rrdInit(void);
68extern int rrdUpdate(void);
69extern int rrdCGI(void);
70
71/* from chips.c */
72
73#define MAX_DATA 5
74
75typedef const char *(*FormatterFN) (const double values[], int alarm,
76                                     int beep);
77
78typedef const char *(*RRDFN) (const double values[]);
79
80typedef enum {
81        DataType_voltage = 0,
82        DataType_rpm,
83        DataType_temperature,
84        DataType_other = -1
85} DataType;
86
87typedef struct {
88        FormatterFN format;
89        RRDFN rrd;
90        DataType type;
91        int alarmNumber;
92        int beepNumber;
93        const sensors_feature *feature;
94        int dataNumbers[MAX_DATA + 1];
95} FeatureDescriptor;
96
97typedef struct {
98        const sensors_chip_name *name;
99        FeatureDescriptor *features;
100} ChipDescriptor;
101
102extern ChipDescriptor * knownChips;
103extern int initKnownChips(void);
104extern void freeKnownChips(void);
Note: See TracBrowser for help on using the browser.