forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1998-06-19 Ulrich Drepper <[email protected]> * sysdeps/generic/bits/sem.h: Don't define union semun. * sysdeps/unix/sysv/linux/bits/sem.h: Fix typo. * sysdeps/unix/sysv/linux/bits/ipc.h: Remove ipc_kludge definition here. * sysdeps/unix/sysv/linux/msgrcv.c (msgrcv): Add ipc_kludge definition here.
- Loading branch information
Ulrich Drepper
committed
Jun 19, 1998
1 parent
dfab448
commit 977bfd7
Showing
6 changed files
with
58 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
1998-06-19 Ulrich Drepper <[email protected]> | ||
|
||
* sysdeps/generic/bits/sem.h: Don't define union semun. | ||
|
||
* sysdeps/unix/sysv/linux/bits/sem.h: Fix typo. | ||
|
||
* sysdeps/unix/sysv/linux/bits/ipc.h: Remove ipc_kludge definition | ||
here. | ||
* sysdeps/unix/sysv/linux/msgrcv.c (msgrcv): Add ipc_kludge | ||
definition here. | ||
|
||
1998-06-18 21:45 Ulrich Drepper <[email protected]> | ||
|
||
* signal/signal.h: Add prototype for __sigaltstack. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* Copyright (C) 1995, 1997 Free Software Foundation, Inc. | ||
/* Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Ulrich Drepper <[email protected]>, August 1995. | ||
|
@@ -19,6 +19,16 @@ | |
|
||
#include <sys/msg.h> | ||
|
||
|
||
/* Kludge to work around Linux' restriction of only up to five | ||
arguments to a system call. */ | ||
struct ipc_kludge | ||
{ | ||
void *msgp; | ||
long int msgtyp; | ||
}; | ||
|
||
|
||
int | ||
msgrcv (msqid, msgp, msgsz, msgtyp, msgflg) | ||
int msqid; | ||
|