From: Ulrich Drepper Date: Sun, 21 Dec 1997 21:24:26 +0000 (+0000) Subject: Use __ipc_pid_t for shm_cpid and shm_lpid field. X-Git-Tag: cvs/glibc-2_0_6pre5~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a4e2e66470fca9c89e8d36d0f46c6536600c636;p=thirdparty%2Fglibc.git Use __ipc_pid_t for shm_cpid and shm_lpid field. --- diff --git a/sysdeps/unix/sysv/linux/sys/shm_buf.h b/sysdeps/unix/sysv/linux/sys/shm_buf.h index 642b7bd1915..6aac0104e82 100644 --- a/sysdeps/unix/sysv/linux/sys/shm_buf.h +++ b/sysdeps/unix/sysv/linux/sys/shm_buf.h @@ -48,8 +48,8 @@ struct shmid_ds __time_t shm_atime; /* time of last shmat() */ __time_t shm_dtime; /* time of last shmdt() */ __time_t shm_ctime; /* time of last change by shmctl() */ - int shm_cpid; /* pid of creator */ - int shm_lpid; /* pid of last shmop */ + __ipc_pid_t shm_cpid; /* pid of creator */ + __ipc_pid_t shm_lpid; /* pid of last shmop */ unsigned short int shm_nattch; /* number of current attaches */ unsigned short int __shm_npages; /* size of segment (pages) */ unsigned long int *__shm_pages; /* array of ptrs to frames -> SHMMAX */