aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/truss
diff options
context:
space:
mode:
authorBenedict Reuschling <bcr@FreeBSD.org>2010-10-13 20:08:02 +0000
committerBenedict Reuschling <bcr@FreeBSD.org>2010-10-13 20:08:02 +0000
commit05844c563e32d183b04bced4070b7e516b6fbc87 (patch)
treeef976e06670aa092eb897985fefc8cdefc48ab7c /usr.bin/truss
parentf10d20060e97f2efd59723d6fd5ef420d03e0651 (diff)
downloadsrc-05844c563e32d183b04bced4070b7e516b6fbc87.tar.gz
src-05844c563e32d183b04bced4070b7e516b6fbc87.zip
s/sytem/system in comments, no functional changes.
Reviewed by: alfred@
Notes
Notes: svn path=/head/; revision=213799
Diffstat (limited to 'usr.bin/truss')
-rw-r--r--usr.bin/truss/amd64-fbsd.c2
-rw-r--r--usr.bin/truss/amd64-fbsd32.c2
-rw-r--r--usr.bin/truss/i386-fbsd.c2
-rw-r--r--usr.bin/truss/ia64-fbsd.c2
-rw-r--r--usr.bin/truss/mips-fbsd.c2
-rw-r--r--usr.bin/truss/powerpc-fbsd.c2
-rw-r--r--usr.bin/truss/powerpc64-fbsd.c2
-rw-r--r--usr.bin/truss/sparc64-fbsd.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/truss/amd64-fbsd.c b/usr.bin/truss/amd64-fbsd.c
index b6a5195cb696..a4e531173218 100644
--- a/usr.bin/truss/amd64-fbsd.c
+++ b/usr.bin/truss/amd64-fbsd.c
@@ -257,7 +257,7 @@ amd64_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/amd64-fbsd32.c b/usr.bin/truss/amd64-fbsd32.c
index ec8b4061d2a9..b25b8182c60d 100644
--- a/usr.bin/truss/amd64-fbsd32.c
+++ b/usr.bin/truss/amd64-fbsd32.c
@@ -260,7 +260,7 @@ amd64_fbsd32_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/i386-fbsd.c b/usr.bin/truss/i386-fbsd.c
index 9c20eb50d677..70b051c5412c 100644
--- a/usr.bin/truss/i386-fbsd.c
+++ b/usr.bin/truss/i386-fbsd.c
@@ -250,7 +250,7 @@ i386_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/ia64-fbsd.c b/usr.bin/truss/ia64-fbsd.c
index e6317078ca03..285e31400731 100644
--- a/usr.bin/truss/ia64-fbsd.c
+++ b/usr.bin/truss/ia64-fbsd.c
@@ -231,7 +231,7 @@ ia64_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/mips-fbsd.c b/usr.bin/truss/mips-fbsd.c
index 55cbdb186dc0..5d295c7550c0 100644
--- a/usr.bin/truss/mips-fbsd.c
+++ b/usr.bin/truss/mips-fbsd.c
@@ -276,7 +276,7 @@ mips_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/powerpc-fbsd.c b/usr.bin/truss/powerpc-fbsd.c
index d2c1db810269..5643f72d3551 100644
--- a/usr.bin/truss/powerpc-fbsd.c
+++ b/usr.bin/truss/powerpc-fbsd.c
@@ -262,7 +262,7 @@ powerpc_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/powerpc64-fbsd.c b/usr.bin/truss/powerpc64-fbsd.c
index ffa34f256e27..f072544bab6d 100644
--- a/usr.bin/truss/powerpc64-fbsd.c
+++ b/usr.bin/truss/powerpc64-fbsd.c
@@ -250,7 +250,7 @@ powerpc64_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long
diff --git a/usr.bin/truss/sparc64-fbsd.c b/usr.bin/truss/sparc64-fbsd.c
index 2eb21bddb3cd..779d6d8cc556 100644
--- a/usr.bin/truss/sparc64-fbsd.c
+++ b/usr.bin/truss/sparc64-fbsd.c
@@ -274,7 +274,7 @@ sparc64_syscall_entry(struct trussinfo *trussinfo, int nargs) {
* And when the system call is done, we handle it here.
* Currently, no attempt is made to ensure that the system calls
* match -- this needs to be fixed (and is, in fact, why S_SCX includes
- * the sytem call number instead of, say, an error status).
+ * the system call number instead of, say, an error status).
*/
long