On 4/11/16 2:38 PM, Thomas Gebert wrote:
> Hello All!  
> When I try running glxgears with `vglrun` (installed by ports in
> FreeBSD), I get this error: 
> 
> ```
> [tom@treter /]$ DISPLAY=:11.0 vglrun glxgears
> [VGL] ERROR: in fconfig_instance--
> [VGL]    97: Function not implemented
> ```
> 
> Any idea why this might be happening? 

That error is caused by the shmget() call failing with ENOSYS ("Function
not implemented" is the POSIX error string for ENOSYS.)  I would suggest
googling for reasons why shmget() might fail with that error code on
FreeBSD systems, as I've never seen this before on my system (but I'm
also running FreeBSD 8.4, not the latest version.)  The exact call we're
making in the VGL source is:

        fconfig_shmid=shmget(IPC_PRIVATE, sizeof(FakerConfig),
IPC_CREAT|0600))==-1)

so the error should be easy to reproduce in an isolated program.

------------------------------------------------------------------------------
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
_______________________________________________
VirtualGL-Users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/virtualgl-users

Reply via email to