Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 717548
Collapse All | Expand All

(-)a/linux-user/syscall.c (-2 / +1 lines)
Lines 12012-12018 static abi_long do_syscall1(void *cpu_env, int num, abi_long arg1, Link Here
12012
#endif
12012
#endif
12013
#if defined(TARGET_NR_epoll_create1) && defined(CONFIG_EPOLL_CREATE1)
12013
#if defined(TARGET_NR_epoll_create1) && defined(CONFIG_EPOLL_CREATE1)
12014
    case TARGET_NR_epoll_create1:
12014
    case TARGET_NR_epoll_create1:
12015
        return get_errno(epoll_create1(arg1));
12015
        return get_errno(epoll_create1(target_to_host_bitmask(arg1, fcntl_flags_tbl)));
12016
#endif
12016
#endif
12017
#if defined(TARGET_NR_epoll_ctl)
12017
#if defined(TARGET_NR_epoll_ctl)
12018
    case TARGET_NR_epoll_ctl:
12018
    case TARGET_NR_epoll_ctl:
12019
- 

Return to bug 717548