summaryrefslogtreecommitdiffstats
path: root/uClinux-2.4.20-uc1/mmnommu/mprotect.c
blob: c83cba6f310d92c96dbd4eb479b5ed26f2d4ef1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *	linux/mm/mprotect.c
 *
 *  Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org> ref uClinux 2.0
 *  (C) Copyright 1994 Linus Torvalds
 */
#include <linux/slab.h>
#include <linux/smp_lock.h>
#include <linux/shm.h>
#include <linux/mman.h>

#include <asm/uaccess.h>
#include <asm/pgalloc.h>

asmlinkage long sys_mprotect(unsigned long start, size_t len, unsigned long prot)
{
	return -ENOSYS;
}