marker
This commit is contained in:
@@ -639,6 +639,9 @@ out:
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
mmap() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(mmap)
|
SYSCALL_DECLARE(mmap)
|
||||||
{
|
{
|
||||||
const int supported_flags = 0
|
const int supported_flags = 0
|
||||||
@@ -910,6 +913,9 @@ out2:
|
|||||||
return (!error)? addr: error;
|
return (!error)? addr: error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
munmap() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(munmap)
|
SYSCALL_DECLARE(munmap)
|
||||||
{
|
{
|
||||||
const uintptr_t addr = ihk_mc_syscall_arg0(ctx);
|
const uintptr_t addr = ihk_mc_syscall_arg0(ctx);
|
||||||
@@ -943,6 +949,9 @@ out:
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
mprotect() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(mprotect)
|
SYSCALL_DECLARE(mprotect)
|
||||||
{
|
{
|
||||||
const intptr_t start = ihk_mc_syscall_arg0(ctx);
|
const intptr_t start = ihk_mc_syscall_arg0(ctx);
|
||||||
@@ -1772,6 +1781,9 @@ SYSCALL_DECLARE(sigaltstack)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
madvise() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(madvise)
|
SYSCALL_DECLARE(madvise)
|
||||||
{
|
{
|
||||||
const uintptr_t start = (uintptr_t)ihk_mc_syscall_arg0(ctx);
|
const uintptr_t start = (uintptr_t)ihk_mc_syscall_arg0(ctx);
|
||||||
@@ -2162,6 +2174,9 @@ SYSCALL_DECLARE(sched_yield)
|
|||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
mlock() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(mlock)
|
SYSCALL_DECLARE(mlock)
|
||||||
{
|
{
|
||||||
const uintptr_t start0 = ihk_mc_syscall_arg0(ctx);
|
const uintptr_t start0 = ihk_mc_syscall_arg0(ctx);
|
||||||
@@ -2337,6 +2352,9 @@ out2:
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
munlock() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(munlock)
|
SYSCALL_DECLARE(munlock)
|
||||||
{
|
{
|
||||||
const uintptr_t start0 = ihk_mc_syscall_arg0(ctx);
|
const uintptr_t start0 = ihk_mc_syscall_arg0(ctx);
|
||||||
@@ -2490,6 +2508,9 @@ out2:
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
remap_file_pages() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(remap_file_pages)
|
SYSCALL_DECLARE(remap_file_pages)
|
||||||
{
|
{
|
||||||
const uintptr_t start0 = ihk_mc_syscall_arg0(ctx);
|
const uintptr_t start0 = ihk_mc_syscall_arg0(ctx);
|
||||||
@@ -2566,6 +2587,9 @@ out:
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef UNDEFINED
|
||||||
|
mremap() {}
|
||||||
|
#endif
|
||||||
SYSCALL_DECLARE(mremap)
|
SYSCALL_DECLARE(mremap)
|
||||||
{
|
{
|
||||||
const uintptr_t oldaddr = ihk_mc_syscall_arg0(ctx);
|
const uintptr_t oldaddr = ihk_mc_syscall_arg0(ctx);
|
||||||
|
|||||||
Reference in New Issue
Block a user