On 31/08/25 15:45, Andreas Schwab wrote:
On Aug 30 2025, Luca Bonissi wrote:

+#ifdef TARGET_TCGETS2
+static void target_to_host_termios2 (void *dst, const void *src)
+{
+    struct host_termios2 *host = dst;
+    const struct target_termios2 *target = src;
+
[...]
+}
+
+static void host_to_target_termios2 (void *dst, const void *src)
+{
+    struct target_termios2 *target = dst;
+    const struct host_termios2 *host = src;
+
[...]
+}

That fails to copy c_[io]speed.


You are right!!

I added also c-[io]speed copy. Will follow new patches.

Reply via email to