Changeset 6eb957dc in mainline for uspace/lib/c


Ignore:
Timestamp:
2014-10-09T03:34:21Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ef3da5a
Parents:
fa65df1 (diff), 18cc83c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Mainline changes

Location:
uspace/lib/c
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/Makefile

    rfa65df1 r6eb957dc  
    165165        $(ARCH_SOURCES)
    166166
     167TEST_SOURCES = \
     168        test/main.c \
     169        test/sprintf.c
     170
    167171include $(USPACE_PREFIX)/Makefile.common
    168172
  • uspace/lib/c/generic/bd_srv.c

    rfa65df1 r6eb957dc  
    7070                async_answer_0(rcallid, ENOTSUP);
    7171                async_answer_0(callid, ENOTSUP);
     72                free(buf);
    7273                return;
    7374        }
     
    7778                async_answer_0(rcallid, ENOMEM);
    7879                async_answer_0(callid, ENOMEM);
     80                free(buf);
    7981                return;
    8082        }
     
    112114                async_answer_0(rcallid, ENOTSUP);
    113115                async_answer_0(callid, ENOTSUP);
     116                free(buf);
    114117                return;
    115118        }
     
    119122                async_answer_0(rcallid, ENOMEM);
    120123                async_answer_0(callid, ENOMEM);
     124                free(buf);
    121125                return;
    122126        }
  • uspace/lib/c/generic/io/con_srv.c

    rfa65df1 r6eb957dc  
    8989                async_answer_0(rcallid, ENOTSUP);
    9090                async_answer_0(callid, ENOTSUP);
     91                free(buf);
    9192                return;
    9293        }
     
    9697                async_answer_0(rcallid, rc);
    9798                async_answer_0(callid, rc);
     99                free(buf);
    98100                return;
    99101        }
  • uspace/lib/c/include/io/keycode.h

    rfa65df1 r6eb957dc  
    107107        KC_QUOTE,
    108108        KC_BACKSLASH,
     109        KC_HASH,
    109110
    110111        KC_ENTER,
     
    154155
    155156        KC_PRTSCR,
     157        KC_SYSREQ,
    156158        KC_SCROLL_LOCK,
    157159        KC_PAUSE,
     160        KC_BREAK,
    158161
    159162        /* Cursor keys block */
Note: See TracChangeset for help on using the changeset viewer.