Changeset f52e54da in mainline for generic/include/ddi/ddi_arg.h


Ignore:
Timestamp:
2006-04-14T09:08:10Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9e1b581
Parents:
9c1ecf9
Message:

Kernel support for SYS_ENABLE_IOSPACE.
amd64 and ia32 provide dummy implementation thereof.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/ddi/ddi_arg.h

    r9c1ecf9 rf52e54da  
    3737        unsigned long pages;            /** Number of pages to map. */
    3838        int writable;                   /** True if the mapping should be writable. */
    39 } ddi_arg_t;
     39} ddi_memarg_t;
     40
     41/** Structure encapsulating arguments for SYS_ENABLE_IOSPACE syscall. */
     42typedef struct {
     43        unsigned long long task_id;     /** ID of the destination task. */
     44        void *ioaddr;                   /** Starting I/O space address. */
     45        unsigned long size;             /** Number of bytes. */
     46} ddi_ioarg_t;
    4047
    4148#endif
Note: See TracChangeset for help on using the changeset viewer.