Yet another unimplemented futex operation, print out about.
Submitted by: arundel MFC after: 1 month.
This commit is contained in:
parent
6570332d31
commit
633a205e26
@ -693,6 +693,13 @@ linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
||||
"op FUTEX_WAIT_REQUEUE_PI not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
case LINUX_FUTEX_CMP_REQUEUE_PI:
|
||||
/* not yet implemented */
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: "
|
||||
"op LINUX_FUTEX_CMP_REQUEUE_PI not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
default:
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: unknown op %d\n", args->op);
|
||||
|
@ -51,6 +51,7 @@ extern struct mtx futex_mtx;
|
||||
#define LINUX_FUTEX_WAIT_BITSET 9
|
||||
#define LINUX_FUTEX_WAKE_BITSET 10
|
||||
#define LINUX_FUTEX_WAIT_REQUEUE_PI 11
|
||||
#define LINUX_FUTEX_CMP_REQUEUE_PI 12
|
||||
|
||||
#define LINUX_FUTEX_PRIVATE_FLAG 128
|
||||
#define LINUX_FUTEX_CLOCK_REALTIME 256
|
||||
|
Loading…
Reference in New Issue
Block a user