1 /*****************************************************************************\
2  *  read_config.h - Define symbols used to read configuration file for
3  *  slurmsmwd
4  *****************************************************************************
5  *  Copyright (C) 2017 Regents of the University of California
6  *  Written by Douglas Jacobsen <dmjacobsen@lbl.gov>
7  *
8  *  This file is part of Slurm, a resource management program.
9  *  For details, see <https://slurm.schedmd.com>.
10  *  Please also read the included file: DISCLAIMER.
11  *
12  *  Slurm is free software; you can redistribute it and/or modify it under
13  *  the terms of the GNU General Public License as published by the Free
14  *  Software Foundation; either version 2 of the License, or (at your option)
15  *  any later version.
16  *
17  *  In addition, as a special exception, the copyright holders give permission
18  *  to link the code of portions of this program with the OpenSSL library under
19  *  certain conditions as described in each individual source file, and
20  *  distribute linked combinations including the two. You must obey the GNU
21  *  General Public License in all respects for all of the code used other than
22  *  OpenSSL. If you modify file(s) with this exception, you may extend this
23  *  exception to your version of the file(s), but you are not obligated to do
24  *  so. If you do not wish to do so, delete this exception statement from your
25  *  version.  If you delete this exception statement from all source files in
26  *  the program, then also delete it here.
27  *
28  *  Slurm is distributed in the hope that it will be useful, but WITHOUT ANY
29  *  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
30  *  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
31  *  details.
32  *
33  *  You should have received a copy of the GNU General Public License along
34  *  with Slurm; if not, write to the Free Software Foundation, Inc.,
35  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA.
36 \*****************************************************************************/
37 
38 #ifndef _HAVE_SLURMSMWD_READ_CONFIG_H
39 #define _HAVE_SLURMSMWD_READ_CONFIG_H
40 
41 #include <inttypes.h>
42 #include <sys/types.h>
43 #include <unistd.h>
44 
45 extern uint16_t slurmsmwd_cabinets_per_row;
46 extern uint16_t slurmsmwd_debug_level;
47 extern char *   slurmsmwd_log_file;
48 
49 /* Configuration functions */
50 
51 /* Load configuration file contents into global variables. */
52 extern void slurmsmwd_read_config(void);
53 extern void slurmsmwd_print_config(void);
54 
55 #endif	/* _HAVE_SLURMSMWD_READ_CONFIG_H */
56