summaryrefslogtreecommitdiffstats
path: root/doc/itron3.0/gen_section
diff options
context:
space:
mode:
Diffstat (limited to 'doc/itron3.0/gen_section')
-rw-r--r--doc/itron3.0/gen_section10
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/itron3.0/gen_section b/doc/itron3.0/gen_section
index 0b069914b7..e82a793b25 100644
--- a/doc/itron3.0/gen_section
+++ b/doc/itron3.0/gen_section
@@ -126,7 +126,9 @@ echo "@itemize @bullet"
for routine in ${ROUTINES}
do
- echo "@item @code{${routine}} - "
+ description=`grep ${routine} ../../itron_spec/itron3-1.txt | grep "]" | cut -d']' -f2`
+ description=`echo ${description}`
+ echo "@item @code{${routine}} - ${description}"
done
echo "@end itemize"
@@ -135,7 +137,7 @@ echo "@section Background"
echo ""
echo "@section Operations"
echo ""
-echo "@section Directives"
+echo "@section System Calls"
echo ""
echo "This section details the ${CHAPTER_LOWER} manager's services."
echo "A subsection is dedicated to each of this manager's services"
@@ -145,13 +147,15 @@ echo ""
for routine in ${ROUTINES}
do
+ description=`grep ${routine} ../../itron_spec/itron3-1.txt | grep "]" | cut -d']' -f2`
+ description=`echo ${description}`
echo ""
echo "@c"
echo "@c ${routine}"
echo "@c"
echo ""
echo "@page"
- echo "@subsection ${routine} - "
+ echo "@subsection ${routine} - ${description}"
echo ""
echo "@subheading CALLING SEQUENCE:"
echo ""