Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - fsevmgr: (1 Item)
   
fsevmgr  
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.