View Single Post
  #4   (View Single Post)  
Old 2nd November 2008
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,983
Default

It appears that your unnamed application is attempting a system call which does not exist in the compat_linux ABI.

You can track system calls with systrace(1), e.g.:
$ systrace -A <your_unnamed_application>
After failure, you will find the system calls in the ~/.systrace hierarchy.
Reply With Quote