1
0
mirror of https://github.com/bashrc/LKMPG.git synced 2018-06-11 03:06:54 +02:00

Less wisecracks and more gender neutral language

This commit is contained in:
Bob Mottram
2016-03-21 17:53:31 +00:00
parent e1f678a056
commit d87368015b
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2016-03-21 Mon 15:41 -->
<!-- 2016-03-21 Mon 17:52 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>The Linux Kernel Module Programming Guide</title>
@@ -618,7 +618,7 @@ Ironically, this can also cause a problem. By default, gcc on your system may lo
<h3 id="orgheadline15">Hello, World (part 1): The Simplest Module</h3>
<div class="outline-text-3" id="text-orgheadline15">
<p>
When the first caveman programmer chiseled the first program on the walls of the first cave computer, it was a program to paint the string `Hello, world' in Antelope pictures. Roman programming textbooks began with the `Salut, Mundi' program. I don't know what happens to people who break with this tradition, but I think it's safer not to find out. We'll start with a series of hello world programs that demonstrate the different aspects of the basics of writing a kernel module.
Most people learning programming start out with some sort of <i>"hello world"</i> example. I don't know what happens to people who break with this tradition, but I think it's safer not to find out. We'll start with a series of hello world programs that demonstrate the different aspects of the basics of writing a kernel module.
</p>
<p>

View File

@@ -143,7 +143,7 @@ Ironically, this can also cause a problem. By default, gcc on your system may lo
* Hello World
** Hello, World (part 1): The Simplest Module
When the first caveman programmer chiseled the first program on the walls of the first cave computer, it was a program to paint the string `Hello, world' in Antelope pictures. Roman programming textbooks began with the `Salut, Mundi' program. I don't know what happens to people who break with this tradition, but I think it's safer not to find out. We'll start with a series of hello world programs that demonstrate the different aspects of the basics of writing a kernel module.
Most people learning programming start out with some sort of /"hello world"/ example. I don't know what happens to people who break with this tradition, but I think it's safer not to find out. We'll start with a series of hello world programs that demonstrate the different aspects of the basics of writing a kernel module.
Here's the simplest module possible.