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

« back to all changes in this revision

Viewing changes to src/cpufreq_utils.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-2005  Mattia Dongili <malattia@linux.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
#include <cpufreq.h>
 
21
#include "config_parser.h"
 
22
 
 
23
#define CPUINFO_PROC  "/proc/cpuinfo"
 
24
 
 
25
unsigned long normalize_frequency (struct cpufreq_limits *limits,  
 
26
                                   struct cpufreq_available_frequencies *freqs, 
 
27
                                   unsigned long user_freq);
 
28
unsigned long percent_to_absolute(unsigned long max_freq, unsigned long user_freq);
 
29
unsigned long get_max_available_freq(struct cpufreq_available_frequencies *freqs);
 
30
unsigned long get_min_available_freq(struct cpufreq_available_frequencies *freqs);
 
31
int get_cpu_num(void);
 
32