From f0b11018358086848fe3b141a9520e1c6128211b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 30 Jan 1996 10:00:24 +0000 Subject: Mon Jan 29 21:53:40 1996 Roland McGrath * sysdeps/stub/msync.c (msync): Declare third arg FLAGS. * resolv/Makefile (+cflags): Append to this instead of CFLAGS. Mon Jan 29 16:29:16 1996 Miles Bader * sysdeps/mach/hurd/select.c (__select): Recalculate GOT to include an increment for each operation allowed on each fd. Mon Jan 29 11:44:38 1996 Roland McGrath * sysdeps/unix/sysv/linux/configure: Set $inhibit_glue. * Makefile: Use -include for sysd-dirs. * configure.in (uname): Check for uname in syscalls.list files. * sysdeps/unix/sysv/syscalls.list: Remove uname. * sysdeps/unix/syscalls.list: Add uname. * stdlib/strtol.c (weak1): New macro, to get the right name declared weak. * sysdeps/posix/getcwd.c (size_t): Don't define #ifdef __GNU_LIBRARY__. * db/hash/ndbm.c: Change all uses of `errno' struct member to `errnum'. (dbm_open): Use dynamic allocation for file name buffer, instead of limitting its size to MAXPATHLEN. * db/btree/bt_open.c (tmp): Use dynamic allocation for file name buffer, instead of limitting its size to MAXPATHLEN. * db/hash/hash.h (HTAB): Rename member `errno' to `errnum'. * db/hash/hash.c: Change all uses of `errno' struct member to `errnum'. --- ChangeLog | 36 ++++++++++++++++++++++++++++++++++++ sysdeps/stub/msync.c | 4 ++-- 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 024d40ef4e..bae189375b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,39 @@ +Mon Jan 29 21:53:40 1996 Roland McGrath + + * sysdeps/stub/msync.c (msync): Declare third arg FLAGS. + + * resolv/Makefile (+cflags): Append to this instead of CFLAGS. + +Mon Jan 29 16:29:16 1996 Miles Bader + + * sysdeps/mach/hurd/select.c (__select): Recalculate GOT to + include an increment for each operation allowed on each fd. + +Mon Jan 29 11:44:38 1996 Roland McGrath + + * sysdeps/unix/sysv/linux/configure: Set $inhibit_glue. + + * Makefile: Use -include for sysd-dirs. + + * configure.in (uname): Check for uname in syscalls.list files. + * sysdeps/unix/sysv/syscalls.list: Remove uname. + * sysdeps/unix/syscalls.list: Add uname. + + * stdlib/strtol.c (weak1): New macro, to get the right name declared + weak. + + * sysdeps/posix/getcwd.c (size_t): Don't define #ifdef __GNU_LIBRARY__. + + * db/hash/ndbm.c: Change all uses of `errno' struct member to `errnum'. + (dbm_open): Use dynamic allocation for file name buffer, instead of + limitting its size to MAXPATHLEN. + + * db/btree/bt_open.c (tmp): Use dynamic allocation for file name + buffer, instead of limitting its size to MAXPATHLEN. + + * db/hash/hash.h (HTAB): Rename member `errno' to `errnum'. + * db/hash/hash.c: Change all uses of `errno' struct member to `errnum'. + Sun Jan 28 19:42:04 1996 Andreas Schwab * time/Makefile: Fix check for cross compiling. diff --git a/sysdeps/stub/msync.c b/sysdeps/stub/msync.c index 668c582e1f..01cc4dd410 100644 --- a/sysdeps/stub/msync.c +++ b/sysdeps/stub/msync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -25,7 +25,7 @@ Cambridge, MA 02139, USA. */ unpredictable before this is done. */ int -msync (caddr_t addr, size_t len) +msync (caddr_t addr, size_t len, int flags) { errno = ENOSYS; return -1; -- cgit v1.2.3