Changes in uspace/srv/net/modules.c [1a0fb3f8:7fb2ce3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/modules.c
r1a0fb3f8 r7fb2ce3 55 55 56 56 int connect_to_service_timeout( services_t need, suseconds_t timeout ){ 57 i ntphone;58 int 57 ipcarg_t phone; 58 int res; 59 59 60 60 while( true ){ 61 res = async_req_3_5( PHONE_NS, IPC_M_CONNECT_ME_TO, need, 0, 0, NULL, NULL, NULL, NULL, ( ipcarg_t * )& phone );62 if( ( res >= 0 ) && ( phone >= 0 )){61 res = async_req_3_5( PHONE_NS, IPC_M_CONNECT_ME_TO, need, 0, 0, NULL, NULL, NULL, NULL, & phone ); 62 if( res >= 0 ){ 63 63 return phone; 64 64 }
Note:
See TracChangeset
for help on using the changeset viewer.