mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
Remove trailing dot from the unimplemented futex messages to make
them consistent with the syscall and ipc messages. Submitted by: arundel MFC after: 3 days
This commit is contained in:
parent
aa519c0a64
commit
5706ce8b58
1 changed files with 5 additions and 5 deletions
|
|
@ -626,21 +626,21 @@ linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
|||
/* not yet implemented */
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: "
|
||||
"op LINUX_FUTEX_LOCK_PI not implemented.\n");
|
||||
"op LINUX_FUTEX_LOCK_PI not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
case LINUX_FUTEX_UNLOCK_PI:
|
||||
/* not yet implemented */
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: "
|
||||
"op LINUX_FUTEX_UNLOCK_PI not implemented.\n");
|
||||
"op LINUX_FUTEX_UNLOCK_PI not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
case LINUX_FUTEX_TRYLOCK_PI:
|
||||
/* not yet implemented */
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: "
|
||||
"op LINUX_FUTEX_TRYLOCK_PI not implemented.\n");
|
||||
"op LINUX_FUTEX_TRYLOCK_PI not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
case LINUX_FUTEX_REQUEUE:
|
||||
|
|
@ -664,14 +664,14 @@ linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
|
|||
/* not yet implemented */
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: "
|
||||
"op FUTEX_WAIT_BITSET not implemented.\n");
|
||||
"op FUTEX_WAIT_BITSET not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
case LINUX_FUTEX_WAIT_REQUEUE_PI:
|
||||
/* not yet implemented */
|
||||
linux_msg(td,
|
||||
"linux_sys_futex: "
|
||||
"op FUTEX_WAIT_REQUEUE_PI not implemented.\n");
|
||||
"op FUTEX_WAIT_REQUEUE_PI not implemented\n");
|
||||
return (ENOSYS);
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue