diff options
author | netchild <netchild@FreeBSD.org> | 2010-11-22 09:25:32 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2010-11-22 09:25:32 +0000 |
commit | 47500ea1a12ad66deda5f77ad59124938d3e00f4 (patch) | |
tree | e8f6f57b4f4c53bba7e9fced75a61d7999df2158 /sys/compat/linux | |
parent | 6cdc82f90731dd5c361708b204ef977079a6a146 (diff) | |
download | FreeBSD-src-47500ea1a12ad66deda5f77ad59124938d3e00f4.zip FreeBSD-src-47500ea1a12ad66deda5f77ad59124938d3e00f4.tar.gz |
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
Diffstat (limited to 'sys/compat/linux')
-rw-r--r-- | sys/compat/linux/linux_futex.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_futex.c b/sys/compat/linux/linux_futex.c index dc7e669..219b601 100644 --- a/sys/compat/linux/linux_futex.c +++ b/sys/compat/linux/linux_futex.c @@ -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: |