Changeset 58cbf8d5 in mainline
- Timestamp:
- 2011-08-19T18:51:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3e4a2c
- Parents:
- 7b2a7ad
- Location:
- uspace/lib/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/lib/c/generic/async.c ¶
r7b2a7ad r58cbf8d5 996 996 session_ns->arg3 = 0; 997 997 998 fibril_mutex_initialize(&session_ns->remote_state_mtx); 999 session_ns->remote_state_data = NULL; 1000 998 1001 list_initialize(&session_ns->exch_list); 999 1002 fibril_mutex_initialize(&session_ns->mutex); … … 1561 1564 sess->arg3 = 0; 1562 1565 1566 fibril_mutex_initialize(&sess->remote_state_mtx); 1567 sess->remote_state_data = NULL; 1568 1563 1569 list_initialize(&sess->exch_list); 1564 1570 fibril_mutex_initialize(&sess->mutex); … … 1642 1648 sess->arg3 = arg3; 1643 1649 1650 fibril_mutex_initialize(&sess->remote_state_mtx); 1651 sess->remote_state_data = NULL; 1652 1644 1653 list_initialize(&sess->exch_list); 1645 1654 fibril_mutex_initialize(&sess->mutex); … … 1692 1701 sess->arg3 = arg3; 1693 1702 1703 fibril_mutex_initialize(&sess->remote_state_mtx); 1704 sess->remote_state_data = NULL; 1705 1694 1706 list_initialize(&sess->exch_list); 1695 1707 fibril_mutex_initialize(&sess->mutex); … … 1722 1734 sess->arg2 = 0; 1723 1735 sess->arg3 = 0; 1736 1737 fibril_mutex_initialize(&sess->remote_state_mtx); 1738 sess->remote_state_data = NULL; 1724 1739 1725 1740 list_initialize(&sess->exch_list); … … 2386 2401 sess->arg3 = 0; 2387 2402 2403 fibril_mutex_initialize(&sess->remote_state_mtx); 2404 sess->remote_state_data = NULL; 2405 2388 2406 list_initialize(&sess->exch_list); 2389 2407 fibril_mutex_initialize(&sess->mutex); … … 2432 2450 sess->arg3 = 0; 2433 2451 2452 fibril_mutex_initialize(&sess->remote_state_mtx); 2453 sess->remote_state_data = NULL; 2454 2434 2455 list_initialize(&sess->exch_list); 2435 2456 fibril_mutex_initialize(&sess->mutex); … … 2473 2494 sess->arg2 = 0; 2474 2495 sess->arg3 = 0; 2496 2497 fibril_mutex_initialize(&sess->remote_state_mtx); 2498 sess->remote_state_data = NULL; 2475 2499 2476 2500 list_initialize(&sess->exch_list); … … 2514 2538 } 2515 2539 2540 /** Lock and get session remote state 2541 * 2542 * Lock and get the local replica of the remote state 2543 * in stateful sessions. The call should be paired 2544 * with async_remote_state_release*(). 2545 * 2546 * @param[in] sess Stateful session. 2547 * 2548 * @return Local replica of the remote state. 2549 * 2550 */ 2551 void *async_remote_state_acquire(async_sess_t *sess) 2552 { 2553 fibril_mutex_lock(&sess->remote_state_mtx); 2554 return sess->remote_state_data; 2555 } 2556 2557 /** Update the session remote state 2558 * 2559 * Update the local replica of the remote state 2560 * in stateful sessions. The remote state must 2561 * be already locked. 2562 * 2563 * @param[in] sess Stateful session. 2564 * @param[in] state New local replica of the remote state. 2565 * 2566 */ 2567 void async_remote_state_update(async_sess_t *sess, void *state) 2568 { 2569 assert(fibril_mutex_is_locked(&sess->remote_state_mtx)); 2570 sess->remote_state_data = state; 2571 } 2572 2573 /** Release the session remote state 2574 * 2575 * Unlock the local replica of the remote state 2576 * in stateful sessions. 2577 * 2578 * @param[in] sess Stateful session. 2579 * 2580 */ 2581 void async_remote_state_release(async_sess_t *sess) 2582 { 2583 assert(fibril_mutex_is_locked(&sess->remote_state_mtx)); 2584 2585 fibril_mutex_unlock(&sess->remote_state_mtx); 2586 } 2587 2588 /** Release the session remote state and end an exchange 2589 * 2590 * Unlock the local replica of the remote state 2591 * in stateful sessions. This is convenience function 2592 * which gets the session pointer from the exchange 2593 * and also ends the exchange. 2594 * 2595 * @param[in] exch Stateful session's exchange. 2596 * 2597 */ 2598 void async_remote_state_release_exchange(async_exch_t *exch) 2599 { 2600 if (exch == NULL) 2601 return; 2602 2603 async_sess_t *sess = exch->sess; 2604 assert(fibril_mutex_is_locked(&sess->remote_state_mtx)); 2605 2606 async_exchange_end(exch); 2607 fibril_mutex_unlock(&sess->remote_state_mtx); 2608 } 2609 2516 2610 /** @} 2517 2611 */ -
TabularUnified uspace/lib/c/generic/private/async.h ¶
r7b2a7ad r58cbf8d5 68 68 /** Number of opened exchanges */ 69 69 atomic_t refcnt; 70 71 /** Mutex for stateful connections */ 72 fibril_mutex_t remote_state_mtx; 73 74 /** Data for stateful connections */ 75 void *remote_state_data; 70 76 }; 71 77 -
TabularUnified uspace/lib/c/include/async.h ¶
r7b2a7ad r58cbf8d5 449 449 extern int async_state_change_finalize(ipc_callid_t, async_exch_t *); 450 450 451 extern void *async_remote_state_acquire(async_sess_t *); 452 extern void async_remote_state_update(async_sess_t *, void *); 453 extern void async_remote_state_release(async_sess_t *); 454 extern void async_remote_state_release_exchange(async_exch_t *); 455 451 456 #endif 452 457
Note:
See TracChangeset
for help on using the changeset viewer.