summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorVincent Guittot <vincent.guittot@linaro.org>2015-07-28 11:23:50 +0200
committerVincent Guittot <vincent.guittot@linaro.org>2015-08-03 16:44:03 +0200
commit380c8872361cf65cd45b4117fab2b2d75acd3cb0 (patch)
tree0f405896d53058386b1bdc2b636514bc14117e1a /doc
parent16c5a334e1b50887743f2f010cf3d50d04cf12de (diff)
rt-app: fix comments
Align the comment and values of examples files Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/tutorial/example1.json2
-rw-r--r--doc/examples/tutorial/example2.json2
-rw-r--r--doc/examples/tutorial/example3.json4
-rw-r--r--doc/examples/tutorial/example5.json2
4 files changed, 5 insertions, 5 deletions
diff --git a/doc/examples/tutorial/example1.json b/doc/examples/tutorial/example1.json
index 4ae2914..48f4941 100644
--- a/doc/examples/tutorial/example1.json
+++ b/doc/examples/tutorial/example1.json
@@ -1,6 +1,6 @@
{
/*
- * Simple use case which creates a thread that run 1ms then sleep 9ms
+ * Simple use case which creates a thread that run 2ms then sleep 8ms
* until the use case is stopped with Ctrl+C
*/
"tasks" : {
diff --git a/doc/examples/tutorial/example2.json b/doc/examples/tutorial/example2.json
index 6bf8973..970a37a 100644
--- a/doc/examples/tutorial/example2.json
+++ b/doc/examples/tutorial/example2.json
@@ -7,7 +7,7 @@
"thread0" : {
"instance" : 1,
"loop" : -1,
- "run" : 20000,
+ "run" : 10000,
"timer" : { "ref" : "unique", "period" : 100000 }
}
},
diff --git a/doc/examples/tutorial/example3.json b/doc/examples/tutorial/example3.json
index 7dbd94c..a304d32 100644
--- a/doc/examples/tutorial/example3.json
+++ b/doc/examples/tutorial/example3.json
@@ -10,12 +10,12 @@
"phases" : {
"light" : {
"loop" : 10,
- "run" : 1000,
+ "run" : 3000,
"timer" : { "ref" : "unique", "period" : 30000 }
},
"heavy" : {
"loop" : 10,
- "run" : 4000,
+ "run" : 27000,
"timer" : { "ref" : "unique", "period" : 30000 }
}
}
diff --git a/doc/examples/tutorial/example5.json b/doc/examples/tutorial/example5.json
index 4ad421a..ab730a1 100644
--- a/doc/examples/tutorial/example5.json
+++ b/doc/examples/tutorial/example5.json
@@ -1,6 +1,6 @@
{
/* This example doesn't care of unique id constraint imposed for json
- * file and multiplies thge used of the same key id at same object's level.
+ * file and multiplies the used of the same key id at same object's level.
* Removing this constraint makes the json file more readable and easier
* to create. This file can't be used directly with rt-app but can be used
* with workgen which parses and modifies it to match with json requirement