Ejemplo n.º 1
0
int Serial::_putc(int c) {
    return _base_putc(c);
}
Ejemplo n.º 2
0
int RawSerial::putc(int c) {
    return _base_putc(c);
}
Ejemplo n.º 3
0
int RawSerial::putc(int c) {
    lock();
    int ret = _base_putc(c);
    unlock();
    return ret;
}
Ejemplo n.º 4
0
int Serial::_putc(int c) {
    // Mutex is already held
    return _base_putc(c);
}