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 some of the simplest but effective ways to do this?
On Intel 386+ computers.
|
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 some of the simplest but effective ways to do this? On Intel 386+ computers. |
|||
|
|
|
|||||
|
|
|
An alternative to |
|||
|
|
|
Use the brk system call to change the end of your data segment. Take a look here: http://www.linuxjournal.com/article/6390 to understand what you're doing. |
||||
|
|
|
On Linux
(See the relevant kernel source for details on the parameter passing) I built this with NASM and verified it worked using
|
|||||||
|