Changes in uspace/lib/c/generic/devman.c [64d2b10:124c061] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/devman.c
r64d2b10 r124c061 28 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 29 */ 30 31 /** @addtogroup libc30 31 /** @addtogroup libc 32 32 * @{ 33 33 */ … … 37 37 #include <str.h> 38 38 #include <stdio.h> 39 #include <ipc/ipc.h> 39 40 #include <ipc/services.h> 40 41 #include <ipc/devman.h> … … 115 116 async_set_client_connection(conn); 116 117 117 async_connect_to_me(phone, 0, 0, 0, NULL);118 ipc_connect_to_me(phone, 0, 0, 0, NULL, NULL); 118 119 async_wait_for(req, &retval); 119 120 … … 220 221 case DEVMAN_DRIVER: 221 222 if (devman_phone_driver >= 0) { 222 async_hangup(devman_phone_driver);223 ipc_hangup(devman_phone_driver); 223 224 devman_phone_driver = -1; 224 225 } … … 226 227 case DEVMAN_CLIENT: 227 228 if (devman_phone_client >= 0) { 228 async_hangup(devman_phone_client);229 ipc_hangup(devman_phone_client); 229 230 devman_phone_client = -1; 230 231 }
Note:
See TracChangeset
for help on using the changeset viewer.