Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1190 → Rev 1191

/kernel/trunk/generic/include/ddi/ddi_arg.h
36,6 → 36,13
void *virt_base; /** Virtual address of starting page. */
unsigned long pages; /** Number of pages to map. */
int writable; /** True if the mapping should be writable. */
} ddi_arg_t;
} ddi_memarg_t;
 
/** Structure encapsulating arguments for SYS_ENABLE_IOSPACE syscall. */
typedef struct {
unsigned long long task_id; /** ID of the destination task. */
void *ioaddr; /** Starting I/O space address. */
unsigned long size; /** Number of bytes. */
} ddi_ioarg_t;
 
#endif