Changeset 5a6cc679 in mainline for uspace/lib/c/generic/io/con_srv.c


Ignore:
Timestamp:
2018-01-31T02:21:24Z (7 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/con_srv.c

    r132ab5d1 r5a6cc679  
    4242#include <io/con_srv.h>
    4343
    44 static int console_ev_encode(cons_event_t *event, ipc_call_t *call)
     44static errno_t console_ev_encode(cons_event_t *event, ipc_call_t *call)
    4545{
    4646        IPC_SET_ARG1(*call, event->type);
     
    7171        void *buf;
    7272        size_t size;
    73         int rc;
     73        errno_t rc;
    7474        ipc_callid_t rcallid;
    7575
     
    113113        void *data;
    114114        size_t size;
    115         int rc;
     115        errno_t rc;
    116116
    117117        rc = async_data_write_accept(&data, false, 0, 0, 0, &size);
     
    178178    ipc_call_t *call)
    179179{
    180         int rc;
     180        errno_t rc;
    181181        sysarg_t col;
    182182        sysarg_t row;
     
    194194    ipc_call_t *call)
    195195{
    196         int rc;
     196        errno_t rc;
    197197        sysarg_t cols;
    198198        sysarg_t rows;
     
    210210    ipc_call_t *call)
    211211{
    212         int rc;
     212        errno_t rc;
    213213        console_caps_t ccap;
    214214
     
    295295    ipc_call_t *call)
    296296{
    297         int rc;
     297        errno_t rc;
    298298        cons_event_t event;
    299299        ipc_call_t result;
     
    340340}
    341341
    342 int con_conn(ipc_callid_t iid, ipc_call_t *icall, con_srvs_t *srvs)
     342errno_t con_conn(ipc_callid_t iid, ipc_call_t *icall, con_srvs_t *srvs)
    343343{
    344344        con_srv_t *srv;
    345         int rc;
     345        errno_t rc;
    346346
    347347        /* Accept the connection */
Note: See TracChangeset for help on using the changeset viewer.