h****n 发帖数: 131 | 1 I found the computers in our open lab have more than 2GByte memory.
Is it possible? The computers are Sun ULTRA 10.
I used malloc(1024*1024*1024) twice and the pointer returned is not 0.
And third time it returned 0.
Can I belive that? |
m*******m 发帖数: 182 | 2 This is virtual memory is OS. They are paged in/out between
main memory
and secondary storage (hard drive). Refer to your favorite
OS books.
【在 h****n 的大作中提到】 : I found the computers in our open lab have more than 2GByte memory. : Is it possible? The computers are Sun ULTRA 10. : I used malloc(1024*1024*1024) twice and the pointer returned is not 0. : And third time it returned 0. : Can I belive that?
|
a****f 发帖数: 29 | 3 I guess these computers have 512KB phisical memory at least. It is more
possible that they have 1GB memory installed.
As a user, you definitely have 2GB memory to use.
【在 m*******m 的大作中提到】 : This is virtual memory is OS. They are paged in/out between : main memory : and secondary storage (hard drive). Refer to your favorite : OS books.
|