mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
20 lines
679 B
C
20 lines
679 B
C
#ifndef COSMOPOLITAN_LIBC_LINUX_MMAP_H_
|
|
#define COSMOPOLITAN_LIBC_LINUX_MMAP_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
forceinline long LinuxMmap(void *addr, size_t size, long prot, long flags,
|
|
long fd, long off) {
|
|
long rc;
|
|
register long flags_ asm("r10") = flags;
|
|
register long fd_ asm("r8") = fd;
|
|
register long off_ asm("r9") = off;
|
|
asm volatile("syscall"
|
|
: "=a"(rc)
|
|
: "0"(9), "D"(addr), "S"(size), "d"(prot), "r"(flags_), "r"(fd_),
|
|
"r"(off_)
|
|
: "rcx", "r11", "memory");
|
|
return rc;
|
|
}
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_LINUX_MMAP_H_ */
|