Use global shared variables in DLL

Source: Internet
Author: User
By default, DLL global variables are shared by non-process space. By default, it is only the global variable of the host process. It also means that each host Program has this copy. Therefore, this global variable cannot be shared by all processes, windows uses the copy-on-write mechanism for protection.

If you need to set a shared segment for sharing and place it in the shared segment, a host process changes its value. All processes can see the changed value, as shown in the following code:

# Pragma data_seg ("shared ")
Int g_share = 0;
# Pragma data_seg ()
# Pragma comment (linker, "/section: shared, RWS ")

========================================================== ========================================
Haha ~ This method is simple

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.