mirror of git://sourceware.org/git/glibc.git
Update.
* posix/unistd.h: Move internal prototypes from here ... * include/unistd.h: ... to here. * sysvipc/sys/shm.h: Add const attribute to __getpagesize.
This commit is contained in:
parent
6991feeb94
commit
219f2381bd
|
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
* sysdeps/unix/syscalls.list: Use __setrlimit as strong name.
|
* sysdeps/unix/syscalls.list: Use __setrlimit as strong name.
|
||||||
|
|
||||||
|
* posix/unistd.h: Move internal prototypes from here ...
|
||||||
|
* include/unistd.h: ... to here.
|
||||||
|
|
||||||
|
* sysvipc/sys/shm.h: Add const attribute to __getpagesize.
|
||||||
|
|
||||||
2000-08-24 Ulrich Drepper <drepper@redhat.com>
|
2000-08-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* grp/initgroups.c (initgroups): Deallocate groups array.
|
* grp/initgroups.c (initgroups): Deallocate groups array.
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ __BEGIN_DECLS
|
||||||
|
|
||||||
/* Segment low boundary address multiple. */
|
/* Segment low boundary address multiple. */
|
||||||
#define SHMLBA (__getpagesize ())
|
#define SHMLBA (__getpagesize ())
|
||||||
extern int __getpagesize (void) __THROW;
|
extern int __getpagesize (void) __THROW __attribute__ ((__const__));
|
||||||
|
|
||||||
|
|
||||||
/* The following System V style IPC functions implement a shared memory
|
/* The following System V style IPC functions implement a shared memory
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue