~ubuntu-branches/ubuntu/dapper/cpufreqd/dapper

« back to all changes in this revision

Viewing changes to main.h

  • Committer: Bazaar Package Importer
  • Author(s): Mattia Dongili
  • Date: 2005-11-27 18:47:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051127184742-9h26euwetr6kh1e6
Tags: 2.0.0-1

* New upstream release.
* cpufreqd.init: exit succesfully in case a stop is issued and
  cpufreqd is found running as requested by LSB thus making it
  possible to remove cpufreqd when cpufreqd itsef is stopped
  (closes: #340133)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright (C) 2002,2003,2004  Mattia Dongili<dongili@supereva.it>
3
 
 *                                George Staikos <staikos@0wned.org>
4
 
 *
5
 
 *  This program is free software; you can redistribute it and/or modify
6
 
 *  it under the terms of the GNU General Public License as published by
7
 
 *  the Free Software Foundation; either version 2 of the License, or
8
 
 *  (at your option) any later version.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 
 */
19
 
 
20
 
/* function declaration */
21
 
int         main_loop               (void);
22
 
int         read_args               (int argc, char *argv[]);
23
 
int         write_cpufreqd_pid      (void);
24
 
int         clear_cpufreqd_pid      (void);
25
 
int         is_system_changed       (const sys_info *sys_now,
26
 
                                     const sys_info *sys_prev);
27
 
int         get_rule_hits           (const sys_info *si,
28
 
                                     const rule *r);
29
 
int         get_running_programs    (void);
30
 
int         free_running_programs   (void);
31
 
rule        *find_valid_rule        (const sys_info *si, rule *r);
32
 
int         set_policy              (profile *prof);
33
 
void        print_version           (const char *me);
34
 
void        print_help              (const char *me);
35
 
int         daemonize               (void);
36
 
void        close_libraries         (void);
37
 
int         load_libraries          (void);
38
 
void        reinit                  (void);
39
 
void        cp_log                  (const int prio, const char *fmt, ...);
40
 
 
41
 
/* signal handlers */
42
 
void        term_handler            (int signo);
43
 
void        int_handler             (int signo);
44
 
void        hup_handler             (int signo);