~ubuntu-branches/ubuntu/lucid/acpid/lucid-updates

« back to all changes in this revision

Viewing changes to acpid.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Meskes
  • Date: 2009-11-17 14:50:01 UTC
  • mfrom: (2.1.12 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091117145001-y5hevyg7gcg6uwjk
Tags: 1.0.10-4
Updated netlink patch to version 6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <sys/stat.h>
31
31
 
32
32
#define ACPI_PROCDIR            "/proc/acpi"
33
 
#define ACPI_EVENTFILE          ACPI_PROCDIR "/event"
34
 
#define ACPI_CONFDIR            "/etc/acpi/events"
35
 
#define ACPI_SOCKETFILE         "/var/run/acpid.socket"
36
 
#define ACPI_SOCKETMODE         0666
 
33
#define ACPID_EVENTFILE         ACPI_PROCDIR "/event"
 
34
#define ACPID_CONFDIR           "/etc/acpi/events"
 
35
#define ACPID_SOCKETFILE        "/var/run/acpid.socket"
 
36
#define ACPID_SOCKETMODE        0666
37
37
#define ACPID_CLIENTMAX         256
38
 
#define ACPI_MAX_ERRS           5
39
 
#define ACPI_LOCKFILE           "/var/lock/acpid"
 
38
#define ACPID_PIDFILE           "/var/run/acpid.pid"
 
39
#define ACPID_LOCKFILE          "/var/lock/acpid"
 
40
#define ACPID_MAX_ERRS          5
40
41
 
41
42
#define PACKAGE                 "acpid"
42
43
 
44
45
 * acpid.c
45
46
 */
46
47
extern int acpid_debug;
 
48
extern int logevents;
47
49
extern int non_root_clients;
48
50
extern int acpid_log(int level, const char *fmt, ...);
49
51