Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 May 2011 20:35:40 +0000 (UTC)
From:      Benedict Reuschling <bcr@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r222103 - head/usr.bin/truss
Message-ID:  <201105192035.p4JKZex4052278@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bcr (doc committer)
Date: Thu May 19 20:35:40 2011
New Revision: 222103
URL: http://svn.freebsd.org/changeset/base/222103

Log:
  Fix typos in comments, no functional changes.
  
  Found by:       codespell
  Reviewed by:    alfred
  MFC after:      1 week

Modified:
  head/usr.bin/truss/amd64-fbsd.c
  head/usr.bin/truss/amd64-fbsd32.c
  head/usr.bin/truss/i386-fbsd.c
  head/usr.bin/truss/ia64-fbsd.c
  head/usr.bin/truss/main.c
  head/usr.bin/truss/powerpc-fbsd.c
  head/usr.bin/truss/powerpc64-fbsd.c
  head/usr.bin/truss/sparc64-fbsd.c

Modified: head/usr.bin/truss/amd64-fbsd.c
==============================================================================
--- head/usr.bin/truss/amd64-fbsd.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/amd64-fbsd.c	Thu May 19 20:35:40 2011	(r222103)
@@ -128,7 +128,7 @@ amd64_syscall_entry(struct trussinfo *tr
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   reg = 0;
   syscall_num = regs.r_rax;

Modified: head/usr.bin/truss/amd64-fbsd32.c
==============================================================================
--- head/usr.bin/truss/amd64-fbsd32.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/amd64-fbsd32.c	Thu May 19 20:35:40 2011	(r222103)
@@ -136,7 +136,7 @@ amd64_fbsd32_syscall_entry(struct trussi
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   syscall_num = regs.r_rax;
   switch (syscall_num) {

Modified: head/usr.bin/truss/i386-fbsd.c
==============================================================================
--- head/usr.bin/truss/i386-fbsd.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/i386-fbsd.c	Thu May 19 20:35:40 2011	(r222103)
@@ -131,7 +131,7 @@ i386_syscall_entry(struct trussinfo *tru
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   syscall_num = regs.r_eax;
   switch (syscall_num) {

Modified: head/usr.bin/truss/ia64-fbsd.c
==============================================================================
--- head/usr.bin/truss/ia64-fbsd.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/ia64-fbsd.c	Thu May 19 20:35:40 2011	(r222103)
@@ -128,7 +128,7 @@ ia64_syscall_entry(struct trussinfo *tru
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   syscall_num = regs.r_scratch.gr15;		/* XXX double-check. */
   if (syscall_num == SYS_syscall || syscall_num == SYS___syscall)

Modified: head/usr.bin/truss/main.c
==============================================================================
--- head/usr.bin/truss/main.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/main.c	Thu May 19 20:35:40 2011	(r222103)
@@ -33,7 +33,7 @@
 __FBSDID("$FreeBSD$");
 
 /*
- * The main module for truss.  Suprisingly simple, but, then, the other
+ * The main module for truss.  Surprisingly simple, but, then, the other
  * files handle the bulk of the work.  And, of course, the kernel has to
  * do a lot of the work :).
  */

Modified: head/usr.bin/truss/powerpc-fbsd.c
==============================================================================
--- head/usr.bin/truss/powerpc-fbsd.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/powerpc-fbsd.c	Thu May 19 20:35:40 2011	(r222103)
@@ -137,7 +137,7 @@ powerpc_syscall_entry(struct trussinfo *
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   regargs = NARGREG;
   syscall_num = regs.fixreg[0];

Modified: head/usr.bin/truss/powerpc64-fbsd.c
==============================================================================
--- head/usr.bin/truss/powerpc64-fbsd.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/powerpc64-fbsd.c	Thu May 19 20:35:40 2011	(r222103)
@@ -129,7 +129,7 @@ powerpc64_syscall_entry(struct trussinfo
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   regargs = NARGREG;
   syscall_num = regs.fixreg[0];

Modified: head/usr.bin/truss/sparc64-fbsd.c
==============================================================================
--- head/usr.bin/truss/sparc64-fbsd.c	Thu May 19 19:37:41 2011	(r222102)
+++ head/usr.bin/truss/sparc64-fbsd.c	Thu May 19 20:35:40 2011	(r222103)
@@ -135,7 +135,7 @@ sparc64_syscall_entry(struct trussinfo *
   /*
    * FreeBSD has two special kinds of system call redirctions --
    * SYS_syscall, and SYS___syscall.  The former is the old syscall()
-   * routine, basicly; the latter is for quad-aligned arguments.
+   * routine, basically; the latter is for quad-aligned arguments.
    */
   syscall_num = regs.r_global[1];
   if (syscall_num == SYS_syscall || syscall_num == SYS___syscall) {



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