Changeset c2417bc in mainline for kernel/genarch/include/srln/srln.h


Ignore:
Timestamp:
2009-04-21T12:46:26Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f2d2c7ba
Parents:
44b7783
Message:

change the way how input devices are wired together according to ticket #44
(also the proposal http://lists.modry.cz/cgi-bin/private/helenos-devel/2009-March/002507.html)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/include/srln/srln.h

    r44b7783 rc2417bc  
    3838
    3939#include <console/chardev.h>
     40#include <proc/thread.h>
    4041
    41 extern void srln_init(indev_t *devin);
     42typedef struct {
     43        thread_t *thread;
     44       
     45        indev_t *sink;
     46        indev_t raw;
     47} srln_instance_t;
     48
     49extern srln_instance_t *srln_init(void);
     50extern indev_t *srln_wire(srln_instance_t *, indev_t *);
    4251
    4352#endif
Note: See TracChangeset for help on using the changeset viewer.