Skip to content

Commit

Permalink
Merge branch 'fix/fsync-call-propagation-to-secondary-console' into '…
Browse files Browse the repository at this point in the history
…master'

fix(console): Fsync not propagated to secondary output

Closes IDFGH-12104

See merge request espressif/esp-idf!30195
  • Loading branch information
SoucheSouche committed Apr 16, 2024
2 parents ddb6db4 + 6e628a3 commit 3554fd5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/esp_vfs_console/vfs_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ int console_fcntl(int fd, int cmd, int arg)

int console_fsync(int fd)
{
return fsync(vfs_console.fd_primary);
const int ret_val = fsync(vfs_console.fd_primary);
#if CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG
(void)fsync(vfs_console.fd_secondary);
#endif
return ret_val;
}

#ifdef CONFIG_VFS_SUPPORT_DIR
Expand Down

0 comments on commit 3554fd5

Please sign in to comment.