Changeset 7fb2ce3 in mainline for uspace/srv/net/modules.c
- Timestamp:
- 2010-02-17T00:27:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f430f58
- Parents:
- 61ee6df
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/modules.c
r61ee6df 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.