예제 #1
0
파일: sensors.c 프로젝트: Whissi/collectd
static int sensors_shutdown (void)
{
	sensors_free_features ();
	ignorelist_free (sensor_list);

	return (0);
} /* int sensors_shutdown */
예제 #2
0
파일: virt.c 프로젝트: 4thAce/collectd
static int
lv_shutdown (void)
{
    free_block_devices ();
    free_interface_devices ();
    free_domains ();

    if (conn != NULL)
        virConnectClose (conn);
    conn = NULL;

    ignorelist_free (il_domains);
    il_domains = NULL;
    ignorelist_free (il_block_devices);
    il_block_devices = NULL;
    ignorelist_free (il_interface_devices);
    il_interface_devices = NULL;

    return 0;
}
예제 #3
0
파일: thermal.c 프로젝트: johnl/collectd
static int thermal_shutdown (void)
{
	ignorelist_free (device_list);

	return 0;
}