~ubuntu-branches/ubuntu/quantal/brltty/quantal-proposed

« back to all changes in this revision

Viewing changes to Programs/async.h

  • Committer: Package Import Robot
  • Author(s): Luke Yelavich
  • Date: 2012-06-08 14:56:32 UTC
  • mfrom: (2.2.16 sid)
  • Revision ID: package-import@ubuntu.com-20120608145632-xr5cg5x2is0mo8ng
Tags: 4.4-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Add brltty-setup, installed in both the udeb and the normal system.
  - Add initramfs integration to run brltty-setup if necessary before
    usplash starts.
  - Add ubiquity integration to propagate any brltty configuration to the
    target system.
  - Add udev rules and /lib/brltty/brltty.sh to the normal (non-udeb)
    package as well.
  - Enable brltty if /etc/default/brltty has RUN_BRLTTY=yes, which is set
    by the installer if brltty is configured; add a NEWS entry for
    upgraders.
  - Don't install /etc/brltty.conf in the package
  - Install udev rules with the same name (85-brltty.rules) in the udeb as
    in the deb.
  - Remove the dh-lisp build-dependency, remove the cl-brlapi package, and
    adjust the brltty package description accordingly. dh-lisp is not
    in main.
  - Build for all python versions (python 2.6), not just the current
    version.
  - Enable brltty at startup on the target system if the alternate installer
    is used.
  - Create separate rules file for the brltty deb, with the rules now
    pointing to a separate script
  - Add gbp.conf file for git buildpackage
  - Do not build the at-spi driver, the legacy at-spi stack is no longer in
    the archive.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * BRLTTY - A background process providing access to the console screen (when in
3
3
 *          text mode) for a blind person using a refreshable braille display.
4
4
 *
5
 
 * Copyright (C) 1995-2011 by The BRLTTY Developers.
 
5
 * Copyright (C) 1995-2012 by The BRLTTY Developers.
6
6
 *
7
7
 * BRLTTY comes with ABSOLUTELY NO WARRANTY.
8
8
 *
19
19
#ifndef BRLTTY_INCLUDED_ASYNC
20
20
#define BRLTTY_INCLUDED_ASYNC
21
21
 
 
22
#include "timing.h"
 
23
 
22
24
#ifdef __cplusplus
23
25
extern "C" {
24
26
#endif /* __cplusplus */
62
64
typedef void (*AsyncAlarmCallback) (void *data);
63
65
 
64
66
extern int asyncAbsoluteAlarm (
65
 
  const struct timeval *time,
 
67
  const TimeValue *time,
66
68
  AsyncAlarmCallback callback,
67
69
  void *data
68
70
);