Ignore:
File:
1 edited

Legend:

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

    r712c4ba rda1bafb  
    4141#include <typedefs.h>
    4242#include <str.h>
     43
     44IRQ_SPINLOCK_STATIC_INITIALIZE_NAME(printf_lock, "*printf_lock");
    4345
    4446static int vprintf_str_write(const char *str, size_t size, void *data)
     
    9193        };
    9294       
    93         return printf_core(fmt, &ps, ap);
     95        irq_spinlock_lock(&printf_lock, true);
     96        int ret = printf_core(fmt, &ps, ap);
     97        irq_spinlock_unlock(&printf_lock, true);
     98       
     99        return ret;
    94100}
    95101
Note: See TracChangeset for help on using the changeset viewer.