I\'m looking for some good code examples of dynamic memory allocation using an assembly language under Linux and using system calls, not malloc and friends.
What are som
An alternative to brk() is to use the mmap() system call, with MAP_ANONYMOUS | MAP_PRIVATE.
brk()
mmap()
MAP_ANONYMOUS | MAP_PRIVATE