mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Fix test-sysvsem on some platforms
The command IPC_STAT of semctl expects an union semun in its fourth argument instead of struct semid_ds *. This can cause failures on powerpc32-linux-gnu. Checked on x86_64-linux-gnu, i686-linux-gnu, and powerpc32-linux-gnu (qemu system emulation).
This commit is contained in:
@ -55,6 +55,13 @@ do_prepare (int argc, char *argv[])
|
||||
|
||||
#define SEM_MODE 0644
|
||||
|
||||
union semun
|
||||
{
|
||||
int val;
|
||||
struct semid_ds *buf;
|
||||
unsigned short *array;
|
||||
};
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
@ -74,7 +81,7 @@ do_test (void)
|
||||
|
||||
/* Get semaphore kernel information and do some sanity checks. */
|
||||
struct semid_ds seminfo;
|
||||
if (semctl (semid, 0, IPC_STAT, &seminfo) == -1)
|
||||
if (semctl (semid, 0, IPC_STAT, (union semun) { .buf = &seminfo }) == -1)
|
||||
FAIL_EXIT1 ("semctl with IPC_STAT failed (errno=%d)", errno);
|
||||
|
||||
if (seminfo.sem_perm.__key != key)
|
||||
|
Reference in New Issue
Block a user