I'm studying operating systems at university and one of my tasks was find situation when malloc() doesn't cause mmap() system call.
I used strace linux utility to trace system calls, but in my situation I saw mmap() syscalls every time when malloc() was used.
Is malloc() always call mmap() or not?
Thanks