summaryrefslogtreecommitdiff
path: root/nuttx/syscall/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-08-25 16:44:11 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-08-25 16:44:11 +0000
commit0b0bd436389e01d8a6ba6a3e27e0126141b8bb27 (patch)
tree5920dc0adf5d3a1fea74d0c0fa7c4effb55db27b /nuttx/syscall/README.txt
parenta878ada10d3f2e93d4569706711f3260969518f6 (diff)
downloadpx4-nuttx-0b0bd436389e01d8a6ba6a3e27e0126141b8bb27.tar.gz
px4-nuttx-0b0bd436389e01d8a6ba6a3e27e0126141b8bb27.tar.bz2
px4-nuttx-0b0bd436389e01d8a6ba6a3e27e0126141b8bb27.zip
Documentation update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3914 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/syscall/README.txt')
-rw-r--r--nuttx/syscall/README.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/syscall/README.txt b/nuttx/syscall/README.txt
index 7797c5781..42ef78b1f 100644
--- a/nuttx/syscall/README.txt
+++ b/nuttx/syscall/README.txt
@@ -19,7 +19,7 @@ switch from user-mode to kernel-mode is accomplished using software
interrupts (SWIs). SWIs are implemented differently and named differently
by different manufacturers but all work essentially the same: A special
instruction is executed in user-mode that causes a software generated
-interrupt. The software generated interrrupt is caught within the kernel
+interrupt. The software generated interrupt is caught within the kernel
and handle in kernel-mode.
Header Files
@@ -117,7 +117,7 @@ database. Here the following definition is used:
Proxy - A tiny bit of code that executes in the user space. A proxy
has exactly the same function prototype as does the "real" function
for which it proxies. However, it only serves to map the function
- call into a syscall, marshalling all of the system call parameters
+ call into a syscall, marshaling all of the system call parameters
as necessary.
Stub - Another tiny bit of code that executes within the NuttX kernel