From 55c7aec3cc36ec5f8874480296efbeca3a2a3312 Mon Sep 17 00:00:00 2001 From: cgd Date: Mon, 10 May 1999 04:18:22 +0000 Subject: [PATCH] rename xopen-ish iovec and msghdr structs --- sys/compat/osf1/osf1.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/compat/osf1/osf1.h b/sys/compat/osf1/osf1.h index be1344d6a640..db74909d34c0 100644 --- a/sys/compat/osf1/osf1.h +++ b/sys/compat/osf1/osf1.h @@ -1,4 +1,4 @@ -/* $NetBSD: osf1.h,v 1.18 1999/05/10 03:58:50 cgd Exp $ */ +/* $NetBSD: osf1.h,v 1.19 1999/05/10 04:18:22 cgd Exp $ */ /* * Copyright (c) 1999 Christopher G. Demetriou. All rights reserved. @@ -430,17 +430,17 @@ struct osf1_sigaltstack { struct osf1_msghdr { osf1_data_ptr msg_name; osf1_u_int msg_namelen; - osf1_data_ptr msg_iov; /* struct osf1_xopen_iovec * */ + osf1_data_ptr msg_iov; /* struct osf1_iovec_xopen * */ osf1_u_int msg_iovlen; osf1_data_ptr msg_control; osf1_u_int msg_controllen; osf1_int msg_flags; }; -struct osf1_xopen_msghdr { +struct osf1_msghdr_xopen { osf1_data_ptr msg_name; osf1_size_t msg_namelen; - osf1_data_ptr msg_iov; /* struct osf1_xopen_iovec * */ + osf1_data_ptr msg_iov; /* struct osf1_iovec_xopen * */ osf1_int msg_iovlen; osf1_data_ptr msg_control; osf1_size_t msg_controllen; @@ -531,7 +531,7 @@ struct osf1_iovec { osf1_int iov_len; }; -struct osf1_xopen_iovec { +struct osf1_iovec_xopen { osf1_data_ptr iov_base; osf1_size_t iov_len; };