Changeset 46b881c in mainline for uspace/lib/c/generic/devmap.c
- Timestamp:
- 2011-01-29T11:36:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b6931a, 8add9ca5
- Parents:
- e26a4633 (diff), ffa2c8ef (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/devmap.c
re26a4633 r46b881c 29 29 30 30 #include <str.h> 31 #include <ipc/ipc.h>32 31 #include <ipc/services.h> 33 32 #include <ipc/ns.h> … … 80 79 case DEVMAP_DRIVER: 81 80 if (devmap_phone_driver >= 0) { 82 ipc_hangup(devmap_phone_driver);81 async_hangup(devmap_phone_driver); 83 82 devmap_phone_driver = -1; 84 83 } … … 86 85 case DEVMAP_CLIENT: 87 86 if (devmap_phone_client >= 0) { 88 ipc_hangup(devmap_phone_client);87 async_hangup(devmap_phone_client); 89 88 devmap_phone_client = -1; 90 89 } … … 117 116 async_set_client_connection(conn); 118 117 119 ipc_connect_to_me(phone, 0, 0, 0, NULL, NULL);118 async_connect_to_me(phone, 0, 0, 0, NULL); 120 119 async_wait_for(req, &retval); 121 120
Note:
See TracChangeset
for help on using the changeset viewer.