Posts Tagged ‘mmap’

open, creat – open and possibly create a file or device
USAGE
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

int open(const char *pathname, int flags);
int open(const [...]

Thursday, August 27th, 2009 at 00:12 | Comments Off
Categories: O, c

arch_prctl – set architecture specific thread state
USAGE
#include <asm/prctl.h>

#include <sys/prctl.h>

int arch_prctl(int code, unsigned long addr)

DESCRIPTION
The arch_prctl() function sets architecture specific process or thread
[...]

Wednesday, August 26th, 2009 at 01:31 | Comments Off
Categories: A
TOP