From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How can I view the program threads, similar to VI Hierarchy?

Is there a tool/viewer/whatever that I can use to see which VIs are used in which execution threads?

I am working on an old, large program and can't really check them all in file properties.
0 Kudos
Message 1 of 2
(2,510 Views)
The attached LV 6.1 code should list all of the VI's in memory and sort by prefered execution system.

It uses a LV reference to get a list of all of the VI's in memory.

The returned array is used to open a reference to all of the VI and then a property node is used to get the "Prefered Execution System" and Priority. These are then bundled along with the VI name and the resulting cluster is accumulated on the edge of a For loop. The array is then sorted and displayed.

I hope this helps,

Ben
Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
Download All
0 Kudos
Message 2 of 2
(2,510 Views)