Linux Kernel
3.7.1
|
#include <linux/file.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/mman.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/unistd.h>
#include <linux/syscalls.h>
#include <asm/syscalls.h>
Go to the source code of this file.
Functions | |
asmlinkage long | sys_mmap2 (unsigned long addr, unsigned long len, unsigned long prot, unsigned long flags, unsigned long fd, unsigned long pgoff) |
asmlinkage long | sys_mmap (unsigned long addr, unsigned long len, unsigned long prot, unsigned long flags, unsigned long fd, off_t offset) |
asmlinkage long | score_fork (struct pt_regs *regs) |
asmlinkage long | score_clone (struct pt_regs *regs) |
asmlinkage long | score_vfork (struct pt_regs *regs) |
asmlinkage long | score_execve (struct pt_regs *regs) |
asmlinkage int | kernel_execve (const char *filename, const char *const argv[], const char *const envp[]) |
asmlinkage int kernel_execve | ( | const char * | filename, |
const char *const | argv[], | ||
const char *const | envp[] | ||
) |
Definition at line 116 of file sys_score.c.
asmlinkage long score_clone | ( | struct pt_regs * | regs | ) |
Definition at line 63 of file sys_score.c.
asmlinkage long score_execve | ( | struct pt_regs * | regs | ) |
Definition at line 92 of file sys_score.c.
asmlinkage long score_fork | ( | struct pt_regs * | regs | ) |
Definition at line 53 of file sys_score.c.
asmlinkage long score_vfork | ( | struct pt_regs * | regs | ) |
Definition at line 81 of file sys_score.c.
asmlinkage long sys_mmap | ( | unsigned long | addr, |
unsigned long | len, | ||
unsigned long | prot, | ||
unsigned long | flags, | ||
unsigned long | fd, | ||
off_t | offset | ||
) |
Definition at line 44 of file sys_score.c.
asmlinkage long sys_mmap2 | ( | unsigned long | addr, |
unsigned long | len, | ||
unsigned long | prot, | ||
unsigned long | flags, | ||
unsigned long | fd, | ||
unsigned long | pgoff | ||
) |
Definition at line 37 of file sys_score.c.