shared resources

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

When you use multithreaded development it important to handle shared
resources.
What exactly does it mean with shared resources ?

I would say for example memory because memory is shared when you use
multithreaded development

//Tony
 
When you use multithreaded development it important to handle shared
resources.
What exactly does it mean with shared resources ?

I would say for example memory because memory is shared when you use
multithreaded development

For most practical purposes it is objects shared between
the threads.

(the exception would be some native stuff accessed via value
of a handle)

Arne
 
Back
Top