Changes in uspace/lib/c/generic/async.c [58563585:c170438] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r58563585 rc170438 991 991 * @param callid Hash of the incoming call. 992 992 * @param call Data of the incoming call. 993 *994 993 */ 995 994 static void process_notification(ipc_callid_t callid, ipc_call_t *call) … … 1317 1316 fibril_t *fibril = (fibril_t *) __tcb_get()->fibril_data; 1318 1317 unsigned oldsw = fibril->switches; 1319 1318 1320 1319 process_notification(callid, call); 1321 1320 1322 1321 if (oldsw != fibril->switches) { 1323 1322 /* … … 1335 1334 fibril_switch(FIBRIL_FROM_DEAD); 1336 1335 } 1337 1338 1336 return; 1339 1337 }
Note:
See TracChangeset
for help on using the changeset viewer.