w*******y 发帖数: 372 | 1 We know that using heap-allocated memory is slower than stack memory. Can
anyone tell me how much slower is the heap memory allocation? A numerical
analysis on a popular implementation would be terrific, e.g., linux. Another
stupid question: after memory allocation, the access to heap memory should
be as fast as to stack memory, right?
Thanks. | w*******y 发帖数: 372 | 2 links is here:
http://www.bozemanpass.com/info/linux/malloc/Linux_Heap_Contention.html
about
【在 w*******y 的大作中提到】 : We know that using heap-allocated memory is slower than stack memory. Can : anyone tell me how much slower is the heap memory allocation? A numerical : analysis on a popular implementation would be terrific, e.g., linux. Another : stupid question: after memory allocation, the access to heap memory should : be as fast as to stack memory, right? : Thanks.
| w*******y 发帖数: 372 | | W*********g 发帖数: 409 | 4 You are talking about the default heap. You can create your own heap with
certain option to avoid that. |
|