Reputation: 1557
I know there is a 4gb limit for each process when running in 32 bits .... but if a process has multiple threads... does all the memory usage of each thread add up to the total of 4gb? Or does each thread get 4gb of individual memory space to use?
Upvotes: 1
Views: 946
Reputation: 3417
They all live in the same address space. So - yes, this is a limit for all threads inside a process.
Upvotes: 2