Changes in uspace/srv/net/modules.c [7fb2ce3:1a0fb3f8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/modules.c
r7fb2ce3 r1a0fb3f8 55 55 56 56 int connect_to_service_timeout( services_t need, suseconds_t timeout ){ 57 i pcarg_tphone;58 int 57 int 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, & phone );62 if( res >= 0){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 )){ 63 63 return phone; 64 64 }
Note:
See TracChangeset
for help on using the changeset viewer.