Rev 4377 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4377 | Rev 4692 | ||
|---|---|---|---|
| Line 55... | Line 55... | ||
| 55 | waitq_t wq; |
55 | waitq_t wq; |
| 56 | 56 | ||
| 57 | /** Protects everything below. */ |
57 | /** Protects everything below. */ |
| 58 | SPINLOCK_DECLARE(lock); |
58 | SPINLOCK_DECLARE(lock); |
| 59 | wchar_t buffer[INDEV_BUFLEN]; |
59 | wchar_t buffer[INDEV_BUFLEN]; |
| 60 | count_t counter; |
60 | size_t counter; |
| 61 | 61 | ||
| 62 | /** Implementation of indev operations. */ |
62 | /** Implementation of indev operations. */ |
| 63 | indev_operations_t *op; |
63 | indev_operations_t *op; |
| 64 | index_t index; |
64 | size_t index; |
| 65 | void *data; |
65 | void *data; |
| 66 | } indev_t; |
66 | } indev_t; |
| 67 | 67 | ||
| 68 | 68 | ||
| 69 | struct outdev; |
69 | struct outdev; |