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:
Alexander Leidinger 2010-11-22 09:25:32 +00:00
parent aa519c0a64
commit 5706ce8b58

View file

@ -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: