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 [...]
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
[...]
Categories: A
