# | Line 169 | Line 169 | int16 BeSERDPort::open(uint16 config) | |
---|---|---|
169 | if (is_parallel) { | |
170 | char name[256]; | |
171 | sprintf(name, "/dev/parallel/%s", device_name); | |
172 | < | fd = open(name, O_WRONLY); |
172 | > | fd = ::open(name, O_WRONLY); |
173 | if (fd < 0) { | |
174 | release_sem(device_sem); | |
175 | return openErr; | |
# | Line 513 | Line 513 | int16 BeSERDPort::close() | |
513 | // Close port | |
514 | while (acquire_sem(device_sem) == B_INTERRUPTED) ; | |
515 | if (is_parallel) { | |
516 | < | close(fd); |
516 | > | ::close(fd); |
517 | fd = -1; | |
518 | } else { | |
519 | if (drop_dtr_on_close) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |