/* * linux/mm/mlock.c * * Copyright (c) 2001 Lineo, Inc. David McCullough * Copyright (c) 2000-2001 D Jeff Dionne ref uClinux 2.0 * (C) Copyright 1995 Linus Torvalds */ #include #include #include #include #include #include #include asmlinkage long sys_mlock(unsigned long start, size_t len) { return -ENOSYS; } asmlinkage long sys_munlock(unsigned long start, size_t len) { return -ENOSYS; } asmlinkage long sys_mlockall(int flags) { return -ENOSYS; } asmlinkage long sys_munlockall(void) { return -ENOSYS; }