Changeset f6bc83a in mainline for uspace/lib/c/generic/io/log.c


Ignore:
Timestamp:
2012-07-04T13:21:52Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ef5be68
Parents:
e1eda1e9
Message:

Send log messages only when they are read

File:
1 edited

Legend:

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

    re1eda1e9 rf6bc83a  
    8787        async_exchange_end(exchange);
    8888
     89        /*
     90         * Getting ENAK means no-one wants our message. That is not an
     91         * error at all.
     92         */
     93        if (rc == ENAK)
     94                rc = EOK;
     95
    8996        if (rc != EOK) {
    9097                return rc;
Note: See TracChangeset for help on using the changeset viewer.