Changes in / [d5f8f19:42cfd91] in mainline


Ignore:
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/event.c

    rd5f8f19 r42cfd91  
    4545#include <arch.h>
    4646
    47 /**
    48  * The events array.
    49  * Arranging the events in this two-dimensional array should decrease the
    50  * likelyhood of cacheline ping-pong.
    51  */
     47/** The events array. */
    5248static event_t events[EVENT_END];
    5349
  • kernel/generic/src/printf/printf_core.c

    rd5f8f19 r42cfd91  
    491491                counter += retval;
    492492       
    493         /* Print tailing spaces */
     493        /* Print trailing spaces */
    494494       
    495495        while (width-- > 0) {
  • kernel/generic/src/printf/vsnprintf.c

    rd5f8f19 r42cfd91  
    100100        }
    101101       
    102         /* Buffer is big enought to print the whole string */
     102        /* Buffer is big enough to print the whole string */
    103103        memcpy((void *)(data->dst + data->len), (void *) str, size);
    104104        data->len += size;
  • uspace/lib/libc/generic/io/printf_core.c

    rd5f8f19 r42cfd91  
    490490                counter += retval;
    491491       
    492         /* Print tailing spaces */
     492        /* Print trailing spaces */
    493493       
    494494        while (width-- > 0) {
  • uspace/lib/libc/generic/io/vsnprintf.c

    rd5f8f19 r42cfd91  
    100100        }
    101101       
    102         /* Buffer is big enought to print the whole string */
     102        /* Buffer is big enough to print the whole string */
    103103        memcpy((void *)(data->dst + data->len), (void *) str, size);
    104104        data->len += size;
  • uspace/lib/libc/generic/malloc.c

    rd5f8f19 r42cfd91  
    392392                if (orig_size - real_size >= STRUCT_OVERHEAD) {
    393393                        /* Split the original block to a full block
    394                            and a tailing free block */
     394                           and a trailing free block */
    395395                        block_init((void *) head, real_size, false);
    396396                        block_init((void *) head + real_size,
Note: See TracChangeset for help on using the changeset viewer.