mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-09-05 16:55:45 +00:00
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
![]() |
/*
|
||
|
sysfs.c - Part of libsensors, a library for reading Linux sensor data
|
||
|
Copyright (c) 2005 Mark M. Hoffman <mhoffman@lightlink.com>
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
*/
|
||
|
|
||
|
#include <string.h>
|
||
|
#include <limits.h>
|
||
|
#include <sysfs/libsysfs.h>
|
||
|
#include "sysfs.h"
|
||
|
|
||
|
int sensors_found_sysfs = 0;
|
||
|
|
||
|
char sensors_sysfs_mount[NAME_MAX];
|
||
|
|
||
|
/* returns !0 if sysfs filesystem was found, 0 otherwise */
|
||
|
int sensors_init_sysfs(void)
|
||
|
{
|
||
|
if (sysfs_get_mnt_path(sensors_sysfs_mount, NAME_MAX) == 0)
|
||
|
sensors_found_sysfs = 1;
|
||
|
|
||
|
return sensors_found_sysfs;
|
||
|
}
|