You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
constmmap=require("mmap-io")constfd= ... // openSync, ftruncateSync, etcconstbuf=mmap.map(mmap.PAGESIZE,mmap.PROT_WRITE|mmap.PROT_READ,mmap.MAP_SHARED,fd,0x80000000);console.log(buf);// will cause bus error;
...
js code to reproduce:
The possible reason is the use of
int
:mmap-io/src/mmap-io.cc
Line 124 in c751580
The text was updated successfully, but these errors were encountered: