05/04/2020 1:14 PM
post120575
|
I want to use the fsevmgr process in the QNX x86_64 VM target from the Software Center.
How can I start/embed the fsevmgr in my VM image?
I have code that does
struct stat myStat;
if(::stat("/dev/fsnotify", &myStat) != 0)
{
::system("fsevmgr");
}
and
if (::access("/dev/fsnotify", F_OK) < 0)
{
::system("fsevmgr");
}
and I get an error -
sh: fsevmgr: cannot execute - No such file or directory
Thanks.
|
|
|