summaryrefslogtreecommitdiffstats
path: root/usr.bin/truss
diff options
context:
space:
mode:
authorbcr <bcr@FreeBSD.org>2010-10-13 20:08:02 +0000
committerbcr <bcr@FreeBSD.org>2010-10-13 20:08:02 +0000
commit2ea7523b1b43740b19aa64e670034320df31618b (patch)
treeef976e06670aa092eb897985fefc8cdefc48ab7c /usr.bin/truss
parent58aac0183d96af58e4d598c20f9c028308e3ca11 (diff)
downloadFreeBSD-src-2ea7523b1b43740b19aa64e670034320df31618b.zip
FreeBSD-src-2ea7523b1b43740b19aa64e670034320df31618b.tar.gz
s/sytem/system in comments, no functional changes.
Reviewed by: alfred@
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 b6a5195..a4e5311 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 ec8b406..b25b818 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 9c20eb5..70b051c 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 e631707..285e314 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 55cbdb1..5d295c7 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 d2c1db8..5643f72 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 ffa34f2..f072544 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 2eb21bd..779d6d8 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
OpenPOWER on IntegriCloud