Changes in kernel/generic/include/ddi/ddi_arg.h [da1bafb:80bcaed] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/ddi_arg.h
rda1bafb r80bcaed 36 36 #define KERN_DDI_ARG_H_ 37 37 38 #ifdef KERNEL39 40 #include <typedefs.h>41 42 #endif /* KERNEL */43 44 38 /** Structure encapsulating arguments for SYS_PHYSMEM_MAP syscall. */ 45 39 typedef struct { 46 40 /** ID of the destination task. */ 47 u int64_ttask_id;41 unsigned long long task_id; 48 42 /** Physical address of starting frame. */ 49 43 void *phys_base; … … 51 45 void *virt_base; 52 46 /** Number of pages to map. */ 53 size_tpages;47 unsigned long pages; 54 48 /** Address space area flags for the mapping. */ 55 unsignedint flags;49 int flags; 56 50 } ddi_memarg_t; 57 51 58 52 /** Structure encapsulating arguments for SYS_ENABLE_IOSPACE syscall. */ 59 53 typedef struct { 60 u int64_t task_id;/**< ID of the destination task. */61 void *ioaddr; 62 size_t size;/**< Number of bytes. */54 unsigned long long task_id; /**< ID of the destination task. */ 55 void *ioaddr; /**< Starting I/O space address. */ 56 unsigned long size; /**< Number of bytes. */ 63 57 } ddi_ioarg_t; 64 58
Note:
See TracChangeset
for help on using the changeset viewer.