X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fio%2Fserial.cpp;h=09a9768023bad9e1fa00be0d398ac45a6933442c;hp=2b3458a3eb0ea293563a522f6519ef8467ed76dd;hb=ea8bf8f588310b0d7fd3297d74907602705bba1d;hpb=edeb93fa4182984422f70c453ced8ad3acabe1d0 diff --git a/source/io/serial.cpp b/source/io/serial.cpp index 2b3458a..09a9768 100644 --- a/source/io/serial.cpp +++ b/source/io/serial.cpp @@ -46,6 +46,12 @@ void Serial::set_block(bool b) sys_set_blocking(handle, b); } +void Serial::set_inherit(bool i) +{ + adjust_mode(mode, M_INHERIT, i); + sys_set_inherit(handle, i); +} + void Serial::set_baud_rate(unsigned rate) { DeviceState state; @@ -120,5 +126,11 @@ unsigned Serial::do_read(char *buf, unsigned size) return ret; } +const Handle &Serial::get_handle(Mode m) +{ + check_access(m); + return handle; +} + } // namespace IO } // namespace Msp