Changeset 45f04f8 in mainline for uspace/app
- Timestamp:
- 2010-11-18T18:23:43Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3f0a7971, a7811f17, cb569e6
- Parents:
- 51a268f (diff), c63e70c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/app
- Files:
-
- 4 edited
-
bdsh/cmds/modules/bdd/bdd.c (modified) (1 diff)
-
init/init.c (modified) (2 diffs)
-
mkfat/mkfat.c (modified) (3 diffs)
-
test_serial/test_serial.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/bdd/bdd.c
r51a268f r45f04f8 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 r45f04f8 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 r45f04f8 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; -
uspace/app/test_serial/test_serial.c
r51a268f r45f04f8 69 69 int res; 70 70 res = devman_get_phone(DEVMAN_CLIENT, IPC_FLAG_BLOCKING); 71 dev ice_handle_t handle;71 devman_handle_t handle; 72 72 73 73 res = devman_device_get_handle("/hw/pci0/00:01.0/com1", &handle,
Note:
See TracChangeset
for help on using the changeset viewer.
