From: Ulrich Drepper Date: Sun, 21 Dec 1997 21:23:46 +0000 (+0000) Subject: Use __ipc_pid_t for msg_lspid and msg_lrpid field. X-Git-Tag: cvs/glibc-2_0_6pre5~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91a14789241e05ca59715bce30d7ed35cde78604;p=thirdparty%2Fglibc.git Use __ipc_pid_t for msg_lspid and msg_lrpid field. --- diff --git a/sysdeps/unix/sysv/linux/sys/msq_buf.h b/sysdeps/unix/sysv/linux/sys/msq_buf.h index 0abc10f6e55..46e2cbf4ae1 100644 --- a/sysdeps/unix/sysv/linux/sys/msq_buf.h +++ b/sysdeps/unix/sysv/linux/sys/msq_buf.h @@ -46,8 +46,8 @@ struct msqid_ds unsigned short int __msg_cbytes;/* current number of bytes on queue */ unsigned short int msg_qnum; /* number of messages currently on queue */ unsigned short int msg_qbytes;/* max number of bytes allowed on queue */ - int msg_lspid; /* pid of last msgsnd() */ - int msg_lrpid; /* pid of last msgrcv() */ + __ipc_pid_t msg_lspid; /* pid of last msgsnd() */ + __ips_pid_t msg_lrpid; /* pid of last msgrcv() */ }; #ifdef __USE_MISC