06-28-2022 09:38 AM
This is repost from a topic I posted yesterday in the LabVIEW board.
The short version is:
I fully believe the DLL is to blame, but I'm trying to figure out what about the CVI environment or act of building as an .exe prevents this thread creation phenomenon. Any insight would be greatly appreciated.
Full text from original post in LabVIEW board:
I have been hunting down an issue with a call library node (CLN) for several weeks now and I'm hoping someone can offer some guidance. I have a 3rd party c++ DLL we'll call "Camera.dll". It has two functions that I'm using:
1. Configure
2. GrabFrameAverage
What I want to do is call the GrabFrameAverage function in a loop in LabVIEW. The function basically just returns pixel data from a camera. I can return data fine for about 50 loops and then LabVIEW will freeze and crash. After many days of troubleshooting I've been able to identify that with each call to this function I see ~5-8 new threads spawn when I watch the Windows Resource Monitor. The crash seems to happen when the thread count hits around 600.
As one troubleshooting step, I tried to see if I could call the function from TestStand. When I do I get the same behavior where it will work fine for several loops and then crash, all while increasing thread count.
I was ready to fully blame the DLL (and haven't ruled that out yet), but when I run this same test in CVI I can run it indefinitely and I see no new threads spawn which has me questioning if the DLL is really to blame.
Some additional troubleshooting info that has all led to the same results:
I'm kind of at a loss at the moment so any help or guidance would be appreciated.
This is all using TS/LV/CVI 2019.