Skip to content

Instantly share code, notes, and snippets.

View TheZorg's full-sized avatar

Fabien Reumont-Locke TheZorg

View GitHub Profile
@TheZorg
TheZorg / mmap.c
Last active August 29, 2015 14:14
mmap_pgoff syscall
SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
unsigned long, prot, unsigned long, flags,
unsigned long, fd, unsigned long, pgoff)
{
/* ...snip... */
retval = vm_mmap_pgoff(file, addr, len, prot, flags, pgoff);
/* ...snip... */
return retval;
}
@TheZorg
TheZorg / about.md
Created August 20, 2011 19:14 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer