Rev 1227 | Rev 1702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1227 | Rev 1280 | ||
|---|---|---|---|
| Line 43... | Line 43... | ||
| 43 | */ |
43 | */ |
| 44 | int ddi_iospace_enable_arch(task_t *task, __address ioaddr, size_t size) |
44 | int ddi_iospace_enable_arch(task_t *task, __address ioaddr, size_t size) |
| 45 | { |
45 | { |
| 46 | return 0; |
46 | return 0; |
| 47 | } |
47 | } |
| 48 | - | ||
| 49 | /** Enable/disable interrupts for syscall |
- | |
| 50 | * |
- | |
| 51 | * @param enable If non-zero, interrupts are enabled, otherwise disabled |
- | |
| 52 | * @param flags PPC32 register holding interrupt state. |
- | |
| 53 | */ |
- | |
| 54 | __native ddi_int_control_arch(__native enable, __native *flags) |
- | |
| 55 | { |
- | |
| 56 | // FIXME: TODO |
- | |
| 57 | return 0; |
- | |
| 58 | } |
- | |