Changeset 0a8f070 in mainline for uspace/lib/c/generic/async/server.c
- Timestamp:
- 2019-08-07T02:33:03Z (6 years ago)
- Children:
- fe86d9d
- Parents:
- 103939e
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-08-16 16:04:14)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 02:33:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r103939e r0a8f070 216 216 } 217 217 218 static async_client_conn_t implicit_connection = NULL; 218 219 static fibril_rmutex_t client_mutex; 219 220 static hash_table_t client_hash_table; … … 964 965 /* Route the call according to its request label */ 965 966 errno_t rc = route_call(call); 966 if (rc == EOK) 967 if (rc == EOK) { 967 968 return; 969 } else if (implicit_connection != NULL) { 970 async_new_connection(call->in_task_id, call->in_phone_hash, 971 callid, call, implicit_connection, NULL); 972 return; 973 } 968 974 969 975 // TODO: Log the error.
Note:
See TracChangeset
for help on using the changeset viewer.