Ref #82 fixed the bug in my_mbind function.
This commit is contained in:
parent
ccdba3c771
commit
91ce66a0a8
|
@ -76,8 +76,8 @@ static inline int my_mbind(void *addr, unsigned long len, int mode,
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
//Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34
|
//Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34
|
||||||
unsigned long null_nodemask=0;
|
// unsigned long null_nodemask=0;
|
||||||
return syscall(SYS_mbind, addr, len, mode, &null_nodemask, maxnode, flags);
|
return syscall(SYS_mbind, addr, len, mode, nodemask, maxnode, flags);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue