summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-12-21 21:23:46 +0000
committerUlrich Drepper <drepper@redhat.com>1997-12-21 21:23:46 +0000
commit91a14789241e05ca59715bce30d7ed35cde78604 (patch)
tree776439da1b70acfdf3492b3f33725b17170b104d
parentc6c29e492ab16294976ff4d9f6fe9a0a73bcaab7 (diff)
Use __ipc_pid_t for msg_lspid and msg_lrpid field.
-rw-r--r--sysdeps/unix/sysv/linux/sys/msq_buf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/msq_buf.h b/sysdeps/unix/sysv/linux/sys/msq_buf.h
index 0abc10f6e5..46e2cbf4ae 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