~knorr/ubuntu/natty/powertop/merge-from-sid

« back to all changes in this revision

Viewing changes to powertop.h

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Burghardt
  • Date: 2007-06-23 20:30:02 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070623203002-0r9fpuuxg578pw3j
Tags: 1.7~svn-r227-1
* New co-maintainer
* New upstream (closes: #429305, #430035, #427345)
* Moved binary to /usr/sbin as it need to be run by root (closes: #427548)
* debian/copyright:
 + changed a bit to fulfill standard look

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
extern int             linesize;
41
41
extern int             linectotal;
42
42
 
43
 
void suggest_process_death(char *process_match, char *process_name, struct line *lines, int linecount, double minwakeups, char *comment, int weight);
 
43
extern double displaytime;
 
44
 
 
45
void suggest_process_death(char *process_match, char *process_name, struct line *slines, int linecount, double minwakeups, char *comment, int weight);
44
46
void suggest_kernel_config(char *string, int onoff, char *comment, int weight);
45
47
void suggest_laptop_mode(void);
46
48
void suggest_bluetooth_off(void);
49
51
void suggest_ac97_powersave(void);
50
52
void suggest_wireless_powersave(void);
51
53
void suggest_ondemand_governor(void);
 
54
void suggest_noatime(void);
 
55
void suggest_sata_alpm(void);
 
56
void suggest_powersched(void);
 
57
void suggest_xrandr_TV_off(void);
 
58
void suggest_WOL_off(void);
 
59
void suggest_writeback_time(void);
 
60
 
52
61
 
53
62
 
54
63
 
55
64
extern char cstate_lines[6][200];
 
65
extern char cpufreqstrings[4][80];
 
66
 
56
67
extern int topcstate;
 
68
extern int topfreq;  
57
69
 
58
70
extern char status_bar_slots[10][40];
59
71
extern char suggestion_key;
85
97
void initialize_curses(void);
86
98
void show_acpi_power_line(double rate, double cap, double capdelta, time_t time);
87
99
void show_cstates(void);
88
 
void show_wakeups(double d);
 
100
void show_wakeups(double d, double interval);
89
101
void show_timerstats(int nostats, int ticktime);
90
102
void show_suggestion(char *sug);
91
103
 
94
106
void reset_suggestions(void);
95
107
 
96
108
 
 
109
void  do_cpufreq_stats(void);
 
110
 
 
111
 
 
112
 
97
113
#endif