* stdlib/test-canon.c: Define PATH_MAX if the system does not.
	* string/stratcliff.c: Use MAP_ANON instead of MAP_ANONYMOUS.
	Patch by UCHIYAMA Yasushi <uch@nop.or.jp>.
This commit is contained in:
Ulrich Drepper 1998-12-13 14:58:26 +00:00
parent 550be6cdb0
commit a3f4b50b6a
3 changed files with 9 additions and 2 deletions

View File

@ -6,6 +6,10 @@
* sysvipc/ftok.c: Likewise.
Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
* stdlib/test-canon.c: Define PATH_MAX if the system does not.
* string/stratcliff.c: Use MAP_ANON instead of MAP_ANONYMOUS.
Patch by UCHIYAMA Yasushi <uch@nop.or.jp>.
1998-12-13 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/alpha/fpu/fsetexcptflg.c: Avoid -Wparentheses warning.

View File

@ -28,6 +28,9 @@
#include <unistd.h>
#include <sys/param.h>
#ifndef PATH_MAX
# define PATH_MAX 4096
#endif
static char cwd[PATH_MAX];
static size_t cwd_len;

View File

@ -43,9 +43,9 @@ main (int argc, char *argv[])
int result = 0;
adr = (char *) mmap (NULL, 3 * size, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
MAP_PRIVATE|MAP_ANON, -1, 0);
dest = (char *) mmap (NULL, 3*size, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
MAP_PRIVATE|MAP_ANON, -1, 0);
if (adr == MAP_FAILED || dest == MAP_FAILED)
{
if (errno == ENOSYS)