Linux C++ Segmentation fault in LMS_GetDeviceList

Linux C++ Segmentation fault

Output

Why i get this error?

LimeSuite is a multithreaded library, so your application which is using it should also be compiled with multithreading enabled. Assuming you are using GCC as your compiler add “-pthread” compiler flag.

1 Like

Thanks!