Changes in / [42cfd91:d5f8f19] in mainline
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/event.c
r42cfd91 rd5f8f19 45 45 #include <arch.h> 46 46 47 /** The events array. */ 47 /** 48 * The events array. 49 * Arranging the events in this two-dimensional array should decrease the 50 * likelyhood of cacheline ping-pong. 51 */ 48 52 static event_t events[EVENT_END]; 49 53 -
kernel/generic/src/printf/printf_core.c
r42cfd91 rd5f8f19 491 491 counter += retval; 492 492 493 /* Print t railing spaces */493 /* Print tailing spaces */ 494 494 495 495 while (width-- > 0) { -
kernel/generic/src/printf/vsnprintf.c
r42cfd91 rd5f8f19 100 100 } 101 101 102 /* Buffer is big enough to print the whole string */102 /* Buffer is big enought to print the whole string */ 103 103 memcpy((void *)(data->dst + data->len), (void *) str, size); 104 104 data->len += size; -
uspace/lib/libc/generic/io/printf_core.c
r42cfd91 rd5f8f19 490 490 counter += retval; 491 491 492 /* Print t railing spaces */492 /* Print tailing spaces */ 493 493 494 494 while (width-- > 0) { -
uspace/lib/libc/generic/io/vsnprintf.c
r42cfd91 rd5f8f19 100 100 } 101 101 102 /* Buffer is big enough to print the whole string */102 /* Buffer is big enought to print the whole string */ 103 103 memcpy((void *)(data->dst + data->len), (void *) str, size); 104 104 data->len += size; -
uspace/lib/libc/generic/malloc.c
r42cfd91 rd5f8f19 392 392 if (orig_size - real_size >= STRUCT_OVERHEAD) { 393 393 /* Split the original block to a full block 394 and a t railing free block */394 and a tailing free block */ 395 395 block_init((void *) head, real_size, false); 396 396 block_init((void *) head + real_size,
Note:
See TracChangeset
for help on using the changeset viewer.