Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/async.c

    rdf956b9b r3e6a98c5  
    350350static async_client_conn_t client_connection = default_client_connection;
    351351static async_interrupt_handler_t interrupt_received = default_interrupt_received;
    352 static size_t interrupt_handler_stksz = FIBRIL_DFLT_STK_SIZE;
    353352
    354353/** Setter for client_connection function pointer.
     
    371370{
    372371        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;
    382372}
    383373
     
    597587        msg->call = *call;
    598588       
    599         fid_t fid = fibril_create_generic(notification_fibril, msg,
    600             interrupt_handler_stksz);
     589        fid_t fid = fibril_create(notification_fibril, msg);
    601590        if (fid == 0) {
    602591                free(msg);
     
    20682057       
    20692058        async_sess_t *sess = exch->sess;
    2070         assert(sess != NULL);
    20712059       
    20722060        atomic_dec(&sess->refcnt);
     
    20902078 * @param arg   User defined argument.
    20912079 * @param flags Storage for the received flags. Can be NULL.
    2092  * @param dst   Address of the storage for the destination address space area
    2093  *              base address. Cannot be NULL.
     2080 * @param dst   Destination address space area base. Cannot be NULL.
    20942081 *
    20952082 * @return Zero on success or a negative error code from errno.h.
     
    22192206 *
    22202207 * @param callid Hash of the IPC_M_DATA_WRITE call to answer.
    2221  * @param dst    Address of the storage for the destination address space area
    2222  *               base address.
     2208 * @param dst    Destination address space area base address.
    22232209 *
    22242210 * @return Zero on success or a value from @ref errno.h on failure.
Note: See TracChangeset for help on using the changeset viewer.