Is there any LabVIEW object equivalent to the Windows API function VirtualLock()? I have dynamically created a huge array in LabVIEW using "Reshape Array". Now, I want to lock this array data in physical memory and make sure that it does not get paged to the hard disk. One way I was thinking: create a Code Interface Node (CIN), pass this array into the CIN, and write some C++ code in CIN to lock the memory using VirtualLock() function. Is there any direct way of doing it using some LabVIEW built-in object? Thanks.
GKB