Changeset 991f645 in mainline for uspace/app
- Timestamp:
- 2010-11-18T17:39:28Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b5a4131
- Parents:
- 51a268f
- Location:
- uspace/app
- Files:
-
- 3 edited
-
bdsh/cmds/modules/bdd/bdd.c (modified) (1 diff)
-
init/init.c (modified) (2 diffs)
-
mkfat/mkfat.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/bdd/bdd.c
r51a268f r991f645 68 68 unsigned int argc; 69 69 unsigned int i, j; 70 dev _handle_t handle;70 devmap_handle_t handle; 71 71 uint8_t *blk; 72 72 size_t size, bytes, rows; -
uspace/app/init/init.c
r51a268f r991f645 185 185 186 186 /* Wait for the input device to be ready */ 187 dev _handle_t handle;187 devmap_handle_t handle; 188 188 rc = devmap_device_get_handle(dev, &handle, IPC_FLAG_BLOCKING); 189 189 if (rc != EOK) { … … 210 210 211 211 /* Wait for the terminal device to be ready */ 212 dev _handle_t handle;212 devmap_handle_t handle; 213 213 rc = devmap_device_get_handle(dev, &handle, IPC_FLAG_BLOCKING); 214 214 if (rc != EOK) { -
uspace/app/mkfat/mkfat.c
r51a268f r991f645 85 85 struct fat_params *par); 86 86 static int fat_blocks_write(struct fat_params const *par, 87 dev _handle_t handle);87 devmap_handle_t handle); 88 88 static void fat_bootsec_create(struct fat_params const *par, struct fat_bs *bs); 89 89 … … 95 95 int rc; 96 96 char *dev_path; 97 dev _handle_t handle;97 devmap_handle_t handle; 98 98 size_t block_size; 99 99 char *endptr; … … 234 234 235 235 /** Create file system with the given parameters. */ 236 static int fat_blocks_write(struct fat_params const *par, dev _handle_t handle)236 static int fat_blocks_write(struct fat_params const *par, devmap_handle_t handle) 237 237 { 238 238 aoff64_t addr;
Note:
See TracChangeset
for help on using the changeset viewer.
