Changes in uspace/lib/c/generic/async.c [3ca2e36:3e6a98c5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r3ca2e36 r3e6a98c5 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;353 352 354 353 /** Setter for client_connection function pointer. … … 371 370 { 372 371 interrupt_received = intr; 373 }374 375 /** Set the stack size for the interrupt handler notification fibrils.376 *377 * @param size Stack size in bytes.378 */379 void async_set_interrupt_handler_stack_size(size_t size)380 {381 interrupt_handler_stksz = size;382 372 } 383 373 … … 597 587 msg->call = *call; 598 588 599 fid_t fid = fibril_create_generic(notification_fibril, msg, 600 interrupt_handler_stksz); 589 fid_t fid = fibril_create(notification_fibril, msg); 601 590 if (fid == 0) { 602 591 free(msg); … … 2068 2057 2069 2058 async_sess_t *sess = exch->sess; 2070 assert(sess != NULL);2071 2059 2072 2060 atomic_dec(&sess->refcnt);
Note:
See TracChangeset
for help on using the changeset viewer.