Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Nov 2010 09:25:32 +0000 (UTC)
From:      Alexander Leidinger <netchild@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215666 - head/sys/compat/linux
Message-ID:  <201011220925.oAM9PWSd084816@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011220925.oAM9PWSd084816>