Author: netchild
Date: Mon Nov 22 09:25:32 2010
New Revision: 215666
URL: http://svn.freebsd.org/changeset/base/215666

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

Modified:
  head/sys/compat/linux/linux_futex.c

Modified: head/sys/compat/linux/linux_futex.c
==============================================================================
--- head/sys/compat/linux/linux_futex.c Mon Nov 22 09:13:25 2010        
(r215665)
+++ head/sys/compat/linux/linux_futex.c Mon Nov 22 09:25:32 2010        
(r215666)
@@ -626,21 +626,21 @@ linux_sys_futex(struct thread *td, struc
                /* 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, struc
                /* 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:
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to