URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [mprotect.c] - Rev 1765
Compare with Previous | Blame | View Log
/* * mprotect.c,v 1.1 2001/09/13 13:23:30 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <unistd.h> /*PAGE * * 12.2.3 Change Memory Protection, P1003.1b-1996, p. 277. * * This is not a functional version but the SPARC backend for at least * gcc 2.8.1 plus gnat 3.13p and gcc 3.0.1 require it to be there and * return 0. */ int mprotect(const void *addr, size_t len, int prot) { return 0; }