Changeset 279 for trunk/kernel/kern/thread.h
- Timestamp:
- Jul 27, 2017, 12:23:29 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/thread.h
r174 r279 213 213 214 214 uint32_t dev_channel; /*! device channel for a DEV thread */ 215 union /*! embedded command for a DEV thread */ 216 { 217 ioc_command_t ioc; /*! IOC device generic command */ 218 txt_command_t txt; /*! TXT device generic command */ 219 nic_command_t nic; /*! NIC device generic command */ 220 mmc_command_t mmc; /*! MMC device generic command */ 221 dma_command_t dma; /*! DMA device generic command */ 222 } 223 command; 215 216 ioc_command_t ioc_cmd; /*! IOC device generic command */ 217 txt_command_t txt_cmd; /*! TXT device generic command */ 218 nic_command_t nic_cmd; /*! NIC device generic command */ 219 mmc_command_t mmc_cmd; /*! MMC device generic command */ 220 dma_command_t dma_cmd; /*! DMA device generic command */ 224 221 225 222 cxy_t rpc_client_cxy; /*! client cluster index (for a RPC thread) */
Note: See TracChangeset
for help on using the changeset viewer.