Changes in uspace/lib/c/generic/async.c [3ca2e36:b4df8db] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r3ca2e36 rb4df8db 350 350 static async_client_conn_t client_connection = default_client_connection; 351 351 static async_interrupt_handler_t interrupt_received = default_interrupt_received; 352 static size_t interrupt_handler_stksz = FIBRIL_DFLT_STK_SIZE;352 static size_t interrupt_handler_stksz = (size_t) -1; 353 353 354 354 /** Setter for client_connection function pointer. … … 375 375 /** Set the stack size for the interrupt handler notification fibrils. 376 376 * 377 * @param size Stack size in bytes.377 * @param size Stack size. Use -1 to use the system default stack size. 378 378 */ 379 379 void async_set_interrupt_handler_stack_size(size_t size) … … 2068 2068 2069 2069 async_sess_t *sess = exch->sess; 2070 assert(sess != NULL);2071 2070 2072 2071 atomic_dec(&sess->refcnt);
Note:
See TracChangeset
for help on using the changeset viewer.