Copy on write memo of page in Windows Memory

Source: Internet
Author: User
The copy on write attribute of the Memory Page in Windows is very useful. He guarantees that if an application ProgramWhen multiple instances are started, or a DLL is used by multiple started applications at the same time, global and static variables are not contaminated.

The general principle is:

The application starts multiple instances. In the address space of these processes, part of the address space of the application corresponds to physical storage, which is a copy of memory map ). Therefore, if an instance attempts to modify a global or static variable without copy-on-write, the variable will be contaminated. Therefore, when Windows uses memory map to load applications, it recognizes global and static variables, and then sets the copy-on-write attribute to the page where these variables are stored, in this way, when an Instance tries to modify a global or static variable, A exceptin is generated. Windows captures the variable and re-allocates the page to the instance to avoid contamination. The DLL processing method is the same as this.

I think of a problem when I am working on SD today. Does the logic also exist when multiple threads in a process access global or static variables? If yes, all the functions involving global and static variables will be multithread safe! Obviously, this is impossible. The reason is:

When a thread in a process tries to modify the global or static variables, Windows allocates a new page and modifies the part of the page in the address space of the process, the physical storage of the page points to the new page. Therefore, when other threads of the Process access the variable again, the page is created. Now there is a multi-thread problem.

Therefore, copy-on-write solves the problem of multi-instance or Global static variables in DLL, which are not contaminated. It has nothing to do with multithreading. In the case of multiple threads in a process, thread synchronization is used for global and static variables to ensure thread security.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.