~ubuntu-branches/ubuntu/natty/qemu-linaro/natty

« back to all changes in this revision

Viewing changes to hw/irq.h

  • Committer: Package Import Robot
  • Author(s): Steve Langasek, Loïc Minier, Steve Langasek
  • Date: 2011-03-07 22:55:03 UTC
  • Revision ID: package-import@ubuntu.com-20110307225503-3opjapw0ksg7glo6
[ Loïc Minier ]
* Also pass -fno-var-tracking on armhf.

[ Steve Langasek ]
* New upstream release.
* Build with -marm on armel/armhf; Peter Maydell reports that building for
  Thumb-2 gives an emulator that doesn't work.
* Add support for cross-compiling the package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
/* Generic IRQ/GPIO pin infrastructure.  */
5
5
 
6
 
/* FIXME: Rmove one of these.  */
7
6
typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
8
 
typedef void SetIRQFunc(void *opaque, int irq_num, int level);
9
7
 
10
8
void qemu_set_irq(qemu_irq irq, int level);
11
9
 
32
30
/* Returns a new IRQ with opposite polarity.  */
33
31
qemu_irq qemu_irq_invert(qemu_irq irq);
34
32
 
 
33
/* Returns a new IRQ which feeds into both the passed IRQs */
 
34
qemu_irq qemu_irq_split(qemu_irq irq1, qemu_irq irq2);
 
35
 
35
36
#endif