Changeset c4f7bf6 in mainline
- Timestamp:
- 2013-03-31T21:15:51Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 66108658
- Parents:
- a5057cc
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/sleep/sleep.c
ra5057cc rc4f7bf6 114 114 int ret; 115 115 unsigned int argc; 116 useconds_t duration ;116 useconds_t duration = 0; 117 117 118 118 /* Count the arguments */ -
uspace/app/bnchmark/bnchmark.c
ra5057cc rc4f7bf6 142 142 { 143 143 int rc; 144 umseconds_t milliseconds_taken ;144 umseconds_t milliseconds_taken = 0; 145 145 char *path = NULL; 146 146 measure_func_t fn = NULL; -
uspace/drv/bus/usb/usbhub/port.c
ra5057cc rc4f7bf6 143 143 usb_log_debug("Interrupt at port %zu\n", port->port_number); 144 144 145 usb_port_status_t status ;145 usb_port_status_t status = 0; 146 146 const int opResult = get_port_status(port, &status); 147 147 if (opResult != EOK) { -
uspace/srv/devman/main.c
ra5057cc rc4f7bf6 735 735 { 736 736 client_t *client; 737 driver_t *driver ;737 driver_t *driver = NULL; 738 738 739 739 /* Accept the connection. */
Note:
See TracChangeset
for help on using the changeset viewer.