2009-07-28 21:44:22 +00:00
|
|
|
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
|
|
|
|
2008-12-15 21:40:24 +00:00
|
|
|
#ifndef _LINUX_H
|
|
|
|
#define _LINUX_H
|
2008-06-14 18:41:12 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2009-11-16 00:31:55 +00:00
|
|
|
void print_disk_protect_queue(struct text_object *, char *, int);
|
2008-06-14 18:41:12 +00:00
|
|
|
|
2009-11-16 21:27:53 +00:00
|
|
|
void print_ioscheduler(struct text_object *, char *, int);
|
2009-11-16 00:15:39 +00:00
|
|
|
void print_laptop_mode(struct text_object *, char *, int);
|
2009-10-13 20:44:56 +00:00
|
|
|
|
2008-06-14 18:41:12 +00:00
|
|
|
void update_gateway_info(void);
|
2009-10-13 20:44:56 +00:00
|
|
|
void free_gateway_info(void);
|
2009-11-16 22:20:58 +00:00
|
|
|
int gateway_exists(struct text_object *);
|
2009-11-16 00:09:37 +00:00
|
|
|
void print_gateway_iface(struct text_object *, char *, int);
|
|
|
|
void print_gateway_ip(struct text_object *, char *, int);
|
2008-06-14 18:41:12 +00:00
|
|
|
|
|
|
|
enum { PB_BATT_STATUS, PB_BATT_PERCENT, PB_BATT_TIME };
|
2009-11-16 00:20:35 +00:00
|
|
|
void get_powerbook_batt_info(struct text_object *, char *, int);
|
2008-06-14 18:41:12 +00:00
|
|
|
|
2009-10-04 16:05:47 +00:00
|
|
|
void parse_i2c_sensor(struct text_object *, const char *);
|
|
|
|
void parse_hwmon_sensor(struct text_object *, const char *);
|
|
|
|
void parse_platform_sensor(struct text_object *, const char *);
|
|
|
|
void print_sysfs_sensor(struct text_object *, char *, int );
|
2009-10-04 16:22:08 +00:00
|
|
|
void free_sysfs_sensor(struct text_object *);
|
2009-03-28 19:46:20 +00:00
|
|
|
|
2009-11-12 22:50:17 +00:00
|
|
|
int get_entropy_avail(unsigned int *);
|
|
|
|
int get_entropy_poolsize(unsigned int *);
|
|
|
|
|
2009-11-15 16:42:59 +00:00
|
|
|
void update_stat(void);
|
|
|
|
|
2008-12-15 21:40:24 +00:00
|
|
|
#endif /* _LINUX_H */
|