Ignore:
Timestamp:
2017-11-25T15:43:25Z (6 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce4a21a0
Parents:
98cb5e0d
Message:

Convert call-handling syscalls to capabilities

This commit modifies the behavior of sys_ipc_wait_for_call() to return a
capability handle for requests. This capability handle can be used
either by sys_ipc_answer*() to answer the call or by sys_ipc_forward*()
to forward it further along. Answering or forwarding the call results in
destruction of the respective capability. For requests and
notifications, sys_ipc_wait_for_call() returns CAP_NIL and sets call
flags accordingly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c

    r98cb5e0d r01c3bb4  
    6565
    6666static void s3c24xx_uart_connection(ipc_callid_t, ipc_call_t *, void *);
    67 static void s3c24xx_uart_irq_handler(ipc_callid_t, ipc_call_t *, void *);
     67static void s3c24xx_uart_irq_handler(ipc_call_t *, void *);
    6868static int s3c24xx_uart_init(s3c24xx_uart_t *);
    6969static void s3c24xx_uart_sendb(s3c24xx_uart_t *, uint8_t);
     
    122122
    123123
    124 static void s3c24xx_uart_irq_handler(ipc_callid_t iid, ipc_call_t *call,
    125     void *arg)
     124static void s3c24xx_uart_irq_handler(ipc_call_t *call, void *arg)
    126125{
    127126        int rc;
    128127
    129         (void) iid;
    130128        (void) call;
    131129        (void) arg;
Note: See TracChangeset for help on using the changeset viewer.