aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kernel/vdso/README.md7
-rw-r--r--kernel/vdso/vdso.c2
2 files changed, 4 insertions, 5 deletions
diff --git a/kernel/vdso/README.md b/kernel/vdso/README.md
index 573c564..bef3e57 100644
--- a/kernel/vdso/README.md
+++ b/kernel/vdso/README.md
@@ -5,10 +5,9 @@ kernel automatically maps into the address space of all user-space
applications. This way, user space can perform some system calls via this
interface and avoid the cost of entering kernel space.
-This is important for
-system calls that the community has detected to be performed most often by all
-applications. Note that the regular joe doesn't have to deal with any of this as
-glibc and the likes will already take care of this.
+This is important for system calls that the community has detected to be
+performed most often by all applications. Note that the regular joe doesn't have
+to deal with any of this as glibc and the likes will already take care of this.
For much more, this is all better documented via `man vdso`.
diff --git a/kernel/vdso/vdso.c b/kernel/vdso/vdso.c
index 6a1c198..4aa7ae9 100644
--- a/kernel/vdso/vdso.c
+++ b/kernel/vdso/vdso.c
@@ -11,7 +11,7 @@
/*
* In projects like github.com/mssola/fbos I already dealt with ELF parsing
* myself and it wasn't the nicest experience. Plus, in here I have to do some
- * heave usage of some ELF sections. For this reason I will not do things
+ * heavy usage of some ELF sections. For this reason I will not do things
* manually and use the standard library instead.
*/
#include <elf.h>