04-04-2018 11:20 PM
Means a synchronise object(For example a lock) is visible by different sequence file? Is this possible? More less global variable.
04-05-2018
08:50 AM
- last edited on
10-21-2024
09:52 AM
by
Content Cleaner
If you put an * at the beginning of the name for the synchronized object it will work.
For example: "*MyLock"
From this link: https://zone.ni.com/reference/en-XX/help/370052W-01/tsref/infotopics/sync_objects_name/
"By default, you can access a Synchronization object only from the operating system process in which you create the object. However, you can make a Synchronization object accessible from other processes, such as multiple instances of a user interface, by using an asterisk (*) as the first character in the name."
04-05-2018 06:41 PM
Hello,
Thanks for the information.
From your comment , I realized the the default Synchronization object maybe good enough for my case.
Means:
"MyLock" (Without '*'),can be visible between process module sequence file and the client sequence file.
I think they are in one process.
Is this correct?
Best Regards
Mark