From 9d3fac19f009975cc5cf20684f86d9006d890081 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 8 Jun 2002 02:49:29 +0000 Subject: 2002-06-07 Roland McGrath * hurd_types.defs (dev_t, ssize_t): Remove unused types. (uid_t, gid_t, mode_t, pid_t, off_t, size_t): Use int32/unsigned32. (retry_type, wait_status_t): Likewise. (file_changed_type_t, dir_changed_type_t): Likewise. --- hurd/hurd_types.defs | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/hurd/hurd_types.defs b/hurd/hurd_types.defs index a1e284f1..99f043c1 100644 --- a/hurd/hurd_types.defs +++ b/hurd/hurd_types.defs @@ -1,5 +1,5 @@ /* MiG type declarations for Hurd interfaces -*- C -*- - Copyright (C) 1993,94,95,96,98,2001 Free Software Foundation, Inc. + Copyright (C) 1993,94,95,96,98,2001,02 Free Software Foundation, Inc. This file is part of the GNU Hurd. @@ -192,18 +192,16 @@ serverprefix SERVERPREFIX; type data_t = array[] of char; type string_t = c_string[1024]; /* XXX */ type io_statbuf_t = struct[32] of int; -type uid_t = int; -type gid_t = int; -type mode_t = int; -type dev_t = short; -type retry_type = int; -type pid_t = int; -type wait_status_t = int; -type off_t = int; -type size_t = unsigned; -type ssize_t = int; -type file_changed_type_t = int; -type dir_changed_type_t = int; +type uid_t = unsigned32; +type gid_t = unsigned32; +type mode_t = unsigned32; +type retry_type = unsigned32; +type pid_t = int32; +type wait_status_t = int32; +type off_t = int32; +type size_t = unsigned32; +type file_changed_type_t = unsigned32; +type dir_changed_type_t = unsigned32; type portarray_t = array[] of mach_port_send_t; type intarray_t = array[] of int; -- cgit v1.2.3