public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] mprotect(): Change prototype to comply to POSIX.
@ 2018-08-24 13:09 Sebastian Huber
  0 siblings, 0 replies; only message in thread
From: Sebastian Huber @ 2018-08-24 13:09 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=08139e557be6b50cc87c4804293168644b7d6e97

commit 08139e557be6b50cc87c4804293168644b7d6e97
Author: ed@FreeBSD.org <ed@FreeBSD.org>
Date:   Wed Aug 3 06:33:04 2016 +0000

    mprotect(): Change prototype to comply to POSIX.
    
    Our mprotect() function seems to take a "const void *" address to the
    pages whose permissions need to be adjusted. POSIX uses "void *". Simply
    stick to the POSIX one to prevent us from writing unportable code.
    
    PR:		211423 (exp-run)
    Tested by:	antoine@ (Thanks!)

Diff:
---
 newlib/libc/sys/rtems/include/sys/mman.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/newlib/libc/sys/rtems/include/sys/mman.h b/newlib/libc/sys/rtems/include/sys/mman.h
index 1fce960..0894555 100644
--- a/newlib/libc/sys/rtems/include/sys/mman.h
+++ b/newlib/libc/sys/rtems/include/sys/mman.h
@@ -258,7 +258,7 @@ int	mlock(const void *, size_t);
 #define	_MMAP_DECLARED
 void *	mmap(void *, size_t, int, int, int, off_t);
 #endif
-int	mprotect(const void *, size_t, int);
+int	mprotect(void *, size_t, int);
 int	msync(void *, size_t, int);
 int	munlock(const void *, size_t);
 int	munmap(void *, size_t);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-08-24 13:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-24 13:09 [newlib-cygwin] mprotect(): Change prototype to comply to POSIX Sebastian Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).