bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 36/41] term: Port to x86_64


From: Sergey Bugaev
Subject: [PATCH 36/41] term: Port to x86_64
Date: Tue, 9 May 2023 00:31:31 +0300

---
 term/devio.c  | 8 ++++----
 term/hurdio.c | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/term/devio.c b/term/devio.c
index 65dea5d5..3b4e4845 100644
--- a/term/devio.c
+++ b/term/devio.c
@@ -536,7 +536,7 @@ device_open_reply (mach_port_t replyport,
                   mach_port_t device)
 {
   struct tty_status ttystat;
-  size_t count = TTY_STATUS_COUNT;
+  mach_msg_type_number_t count = TTY_STATUS_COUNT;
   error_t err = 0;
 
   if (replyport != phys_reply)
@@ -618,7 +618,7 @@ devio_set_bits (struct termios *state)
   if (!(state->c_cflag & CIGNORE) && phys_device != MACH_PORT_NULL)
     {
       struct tty_status ttystat;
-      size_t cnt = TTY_STATUS_COUNT;
+      mach_msg_type_number_t cnt = TTY_STATUS_COUNT;
 
       /* Find the current state. */
       device_get_status (phys_device, TTY_STATUS, (dev_status_t) &ttystat, 
&cnt);
@@ -675,7 +675,7 @@ static error_t
 devio_mdmctl (int how, int bits)
 {
   int oldbits, newbits;
-  size_t cnt;
+  mach_msg_type_number_t cnt;
   if ((how == MDMCTL_BIS) || (how == MDMCTL_BIC))
     {
       cnt = TTY_MODEM_COUNT;
@@ -702,7 +702,7 @@ static error_t
 devio_mdmstate (int *state)
 {
   int bits;
-  size_t cnt = TTY_MODEM_COUNT;
+  mach_msg_type_number_t cnt = TTY_MODEM_COUNT;
   device_get_status (phys_device, TTY_MODEM, (dev_status_t) &bits, &cnt);
   if (cnt == TTY_MODEM_COUNT)
     *state = bits;
diff --git a/term/hurdio.c b/term/hurdio.c
index b4ef7c41..c6e14a4a 100644
--- a/term/hurdio.c
+++ b/term/hurdio.c
@@ -197,7 +197,7 @@ hurdio_reader_loop (void *arg)
 #define BUFFER_SIZE 256
   char buffer[BUFFER_SIZE];
   char *data;
-  size_t datalen;
+  mach_msg_type_number_t datalen;
   error_t err;
 
   pthread_mutex_lock (&global_lock);
-- 
2.40.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]