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

« back to all changes in this revision

Viewing changes to src/cpufreqd_log.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
#ifndef __CPUFREQD_LOG_H
 
21
#define __CPUFREQD_LOG_H
 
22
 
 
23
/* log levels, for use in the whole application */
 
24
#define LOG_EMERG               0       
 
25
#define LOG_ALERT               1
 
26
#define LOG_CRIT                2
 
27
#define LOG_ERR                 3
 
28
#define LOG_WARNING             4
 
29
#define LOG_NOTICE              5
 
30
#define LOG_INFO                6
 
31
#define LOG_DEBUG               7
 
32
 
 
33
extern void cpufreqd_log (const int prio, const char *fmt, ...);
 
34
 
 
35
#define clog(__prio,__fmt,...) \
 
36
        cpufreqd_log(__prio, "%-25s: "__fmt, __func__, ## __VA_ARGS__)
 
37
 
 
38
#endif