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
sbrk should extend .bss segment instead of being kept in a separate vm_segment.
Moreover one cannot extend program's break above _etext + RLIMIT_DATA on one hand, and cannot shrink below _etext.
Can we drop a support for sbrk in the kernel altogether? Could we emulate it with mmap?
The text was updated successfully, but these errors were encountered:
sbrk
should extend.bss
segment instead of being kept in a separatevm_segment
.Moreover one cannot extend program's break above
_etext + RLIMIT_DATA
on one hand, and cannot shrink below_etext
.Can we drop a support for
sbrk
in the kernel altogether? Could we emulate it withmmap
?The text was updated successfully, but these errors were encountered: