Fix fstatat64()/newfstatat() syscall implementation
authorKirill A. Shutemov <kirill@shutemov.name>
Thu, 2 Oct 2008 13:39:43 +0000 (16:39 +0300)
committerRiku Voipio <riku.voipio@nokia.com>
Wed, 14 Jan 2009 14:54:12 +0000 (16:54 +0200)
commit781bb3eb3303e91c6712fde79c5e58a7bc78493e
tree6bcc8dc9bca1df129cc6d4de918ec3fdf903bc42
parent1eff7fbf116790aaacc8f89def68be11149626cc
Fix fstatat64()/newfstatat() syscall implementation

There are two different syscall names for the same goal.

On systems with sizeof(long) == 64 it calls newfstatat.
On systems with sizeof(long) == 32 it calls fstatat64.

Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
linux-user/syscall.c