Changeset 76d0981d in mainline for uspace/lib
- Timestamp:
- 2018-04-12T12:57:20Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3bacee1
- Parents:
- 9c514be
- git-author:
- Jiri Svoboda <jiri@…> (2018-04-11 18:18:43)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-04-12 12:57:20)
- Location:
- uspace/lib
- Files:
-
- 6 edited
-
c/generic/libc.c (modified) (3 diffs)
-
c/generic/thread.c (modified) (2 diffs)
-
ext4/src/balloc.c (modified) (2 diffs)
-
hound/src/protocol.c (modified) (2 diffs)
-
pcut/src/preproc.c (modified) (2 diffs)
-
pcut/src/report/report.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
r9c514be r76d0981d 43 43 #include <errno.h> 44 44 #include <libc.h> 45 #include <stdbool.h> 45 46 #include <stdlib.h> 46 47 #include <tls.h> … … 138 139 139 140 /* Unreachable */ 140 while ( 1)141 while (true) 141 142 ; 142 143 } … … 147 148 148 149 /* Unreachable */ 149 while ( 1)150 while (true) 150 151 ; 151 152 } -
uspace/lib/c/generic/thread.c
r9c514be r76d0981d 35 35 #include <thread.h> 36 36 #include <libc.h> 37 #include <stdbool.h> 37 38 #include <stdlib.h> 38 39 #include <libarch/faddr.h> … … 157 158 158 159 /* Unreachable */ 159 while ( 1)160 while (true) 160 161 ; 161 162 } -
uspace/lib/ext4/src/balloc.c
r9c514be r76d0981d 36 36 37 37 #include <errno.h> 38 #include <stdbool.h> 38 39 #include <stdint.h> 39 40 #include "ext4/balloc.h" … … 274 275 ibmap = -1; 275 276 276 while ( 1) {277 while (true) { 277 278 if (r == bbmap || r == ibmap) 278 279 r++; -
uspace/lib/hound/src/protocol.c
r9c514be r76d0981d 39 39 #include <macros.h> 40 40 #include <str.h> 41 #include <stdbool.h> 41 42 #include <stdlib.h> 42 43 #include <stdio.h> … … 401 402 } 402 403 403 while ( 1) {404 while (true) { 404 405 ipc_call_t call; 405 406 cap_call_handle_t chandle = async_get_call(&call); -
uspace/lib/pcut/src/preproc.c
r9c514be r76d0981d 27 27 */ 28 28 29 #include <stdbool.h> 29 30 #include <stdio.h> 30 31 #include <stdlib.h> … … 109 110 (void) argv; 110 111 111 while ( 1) {112 while (true) { 112 113 int current_char_denotes_identifier; 113 114 -
uspace/lib/pcut/src/report/report.c
r9c514be r76d0981d 38 38 #include <string.h> 39 39 #endif 40 #include <stdbool.h> 40 41 #include <stdio.h> 41 42 … … 110 111 } 111 112 112 while ( 1) {113 while (true) { 113 114 size_t message_length; 114 115
Note:
See TracChangeset
for help on using the changeset viewer.
