Ignore:
Timestamp:
2007-04-07T17:57:07Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3dbe2d1f
Parents:
be66dee
Message:

use spinlock only on console output, not other print functions
cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/printf/vsnprintf.c

    rbe66dee r5b303ba  
    4343};
    4444
    45 int vsnprintf_write(const char *str, size_t count, struct vsnprintf_data *data);
    46 
    4745/** Write string to given buffer.
    4846 * Write at most data->size characters including trailing zero. According to C99, snprintf() has to return number
     
    5553 * @return number of characters to print (not characters really printed!)
    5654 */
    57 int vsnprintf_write(const char *str, size_t count, struct vsnprintf_data *data)
     55static int vsnprintf_write(const char *str, size_t count, struct vsnprintf_data *data)
    5856{
    5957        size_t i;
Note: See TracChangeset for help on using the changeset viewer.