Skip to content

Commit

Permalink
And now with an attempt to get the msync() symbol name correct.
Browse files Browse the repository at this point in the history
  • Loading branch information
anttikantee committed Jun 22, 2015
1 parent 722c4fd commit c41f715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/librumprun_base/syscall_mman.c
Expand Up @@ -82,9 +82,9 @@ mmap(void *addr, size_t len, int prot, int flags, int fd, off_t off)
#undef mmap
__weak_alias(mmap,_mmap);

int _sys__msync13(void *, size_t, int);
int _sys___msync13(void *, size_t, int);
int
_sys__msync13(void *addr, size_t len, int flags)
_sys___msync13(void *addr, size_t len, int flags)
{
long pagesize = sysconf(_SC_PAGESIZE);

Expand Down

0 comments on commit c41f715

Please sign in to comment.