Changeset 6eb957dc in mainline for uspace/lib/c
- Timestamp:
- 2014-10-09T03:34:21Z (11 years ago)
- 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. - Location:
- uspace/lib/c
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
rfa65df1 r6eb957dc 165 165 $(ARCH_SOURCES) 166 166 167 TEST_SOURCES = \ 168 test/main.c \ 169 test/sprintf.c 170 167 171 include $(USPACE_PREFIX)/Makefile.common 168 172 -
uspace/lib/c/generic/bd_srv.c
rfa65df1 r6eb957dc 70 70 async_answer_0(rcallid, ENOTSUP); 71 71 async_answer_0(callid, ENOTSUP); 72 free(buf); 72 73 return; 73 74 } … … 77 78 async_answer_0(rcallid, ENOMEM); 78 79 async_answer_0(callid, ENOMEM); 80 free(buf); 79 81 return; 80 82 } … … 112 114 async_answer_0(rcallid, ENOTSUP); 113 115 async_answer_0(callid, ENOTSUP); 116 free(buf); 114 117 return; 115 118 } … … 119 122 async_answer_0(rcallid, ENOMEM); 120 123 async_answer_0(callid, ENOMEM); 124 free(buf); 121 125 return; 122 126 } -
uspace/lib/c/generic/io/con_srv.c
rfa65df1 r6eb957dc 89 89 async_answer_0(rcallid, ENOTSUP); 90 90 async_answer_0(callid, ENOTSUP); 91 free(buf); 91 92 return; 92 93 } … … 96 97 async_answer_0(rcallid, rc); 97 98 async_answer_0(callid, rc); 99 free(buf); 98 100 return; 99 101 } -
uspace/lib/c/include/io/keycode.h
rfa65df1 r6eb957dc 107 107 KC_QUOTE, 108 108 KC_BACKSLASH, 109 KC_HASH, 109 110 110 111 KC_ENTER, … … 154 155 155 156 KC_PRTSCR, 157 KC_SYSREQ, 156 158 KC_SCROLL_LOCK, 157 159 KC_PAUSE, 160 KC_BREAK, 158 161 159 162 /* Cursor keys block */
Note:
See TracChangeset
for help on using the changeset viewer.