Skip to content

Commit

Permalink
Added TTY flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
interkosmos committed Mar 6, 2024
1 parent be5f08d commit 9b2d15c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dm_tty.f90
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ integer function dm_tty_open(tty, path, baud_rate, byte_size, parity, stop_bits)
! Set flags.
flags = ior(O_NOCTTY, O_SYNC)
flags = ior(flags, O_NONBLOCK)
flags = ior(flags, O_NDELAY)

select case (tty%access)
case (TTY_RDONLY)
Expand Down

0 comments on commit 9b2d15c

Please sign in to comment.