Storage that is Shared Among Multiple Threads

Two or more threads can access the same storage if any of the following are true:

It is up to the programmer to handle thread safety for storage that is shared across modules. This is done by adding logic in the application to synchronize access to the storage. To synchronize access to this shared storage, you can do one or both of the following:



[ Top of Page | Previous Page | Next Page | Contents | Index ]