Skip to content

Commit

Permalink
add futex wake op
Browse files Browse the repository at this point in the history
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
  • Loading branch information
suihkulokki authored and Riku Voipio committed Jun 16, 2009
1 parent a29ccd6 commit c4d2302
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions linux-user/syscall.c
Original file line number Diff line number Diff line change
Expand Up @@ -3942,6 +3942,8 @@ static int do_futex(target_ulong uaddr, int op, int val, target_ulong timeout,
pts, NULL, 0));
case FUTEX_WAKE:
return get_errno(sys_futex(g2h(uaddr), op, val, NULL, NULL, 0));
case FUTEX_WAKE_OP:
return get_errno(sys_futex(g2h(uaddr), op, val, NULL, g2h(uaddr2), val3 ));
case FUTEX_FD:
return get_errno(sys_futex(g2h(uaddr), op, val, NULL, NULL, 0));
case FUTEX_REQUEUE:
Expand Down

0 comments on commit c4d2302

Please sign in to comment.