gigaduck
gigaduck

Reputation: 1557

Max Memory Size for a Thread on a 32 bit process

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

Answers (1)

Eugene
Eugene

Reputation: 3417

They all live in the same address space. So - yes, this is a limit for all threads inside a process.

Upvotes: 2

Related Questions