Made the gen_section more accurate.

This commit is contained in:
Joel Sherrill
1999-05-26 18:20:40 +00:00
parent e968366e21
commit 110bdfe694
13 changed files with 257 additions and 253 deletions

View File

@@ -16,13 +16,13 @@ fixed block manager is ...
The services provided by the fixed block manager are:
@itemize @bullet
@item @code{cre_mpf} - Create Fixed-Size Memorypool
@item @code{del_mpf} - Delete Fixed-Size Memorypool
@item @code{get_blf} - Get Fixed-Size Memory Block
Poll and Get Fixed-Size Memory Block
Get Fixed-Size Memory Block with Timeout
@item @code{pget_blf} - Poll and Get Fixed-Size Memory Block
@item @code{tget_blf} - Get Fixed-Size Memory Block with Timeout
@item @code{cre_mpf} - Create Fixed-Size Memorypool
@item @code{del_mpf} - Delete Fixed-Size Memorypool
@item @code{get_blf} - Get Fixed-Size Memory Block
@item @code{pget_blf} - Poll and Get Fixed-Size Memory Block
@item @code{tget_blf} - Get Fixed-Size Memory Block with Timeout
@item @code{rel_blf} - Release Fixed-Size Memory Block
@item @code{ref_mpf} - Reference Fixed-Size Memorypool Status
@end itemize
@section Background
@@ -42,14 +42,14 @@ and status codes.
@c
@page
@subsection cre_mpf - Create Fixed-Size Memorypool
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER cre_mpf (
@example
ID mpfid, T_CMPF *pk_cmpf
);
@end example
@end ifset
@@ -71,14 +71,14 @@ ER cre_mpf (
@c
@page
@subsection del_mpf - Delete Fixed-Size Memorypool
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER del_mpf (
@example
ID mpfid
);
@end example
@end ifset
@@ -100,14 +100,14 @@ ER del_mpf (
@c
@page
@subsection get_blf - Get Fixed-Size Memory Block Poll and Get Fixed-Size Memory Block Get Fixed-Size Memory Block with Timeout
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER get_blf (
VP *p_blf, ID mpfid ER ercd =pget_blf
);
@end example
@end ifset
@@ -129,14 +129,14 @@ ER get_blf (
@c
@page
@c
@subsection pget_blf - Poll and Get Fixed-Size Memory Block
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER ercd =pget_blf (
@subheading CALLING SEQUENCE:
VP *p_blf, ID mpfid
);
@end example
@end ifset
@@ -158,14 +158,14 @@ ER ercd =pget_blf (
@c
@page
@c
@subsection tget_blf - Get Fixed-Size Memory Block with Timeout
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER ercd =tget_blf (
@subheading CALLING SEQUENCE:
VP *p_blf, ID mpfid, TMO tmout
);
@end example
@end ifset
@@ -187,14 +187,14 @@ ER ercd =tget_blf (
@c
@page
@c
@subsection rel_blf - Release Fixed-Size Memory Block
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER rel_blf (
@subheading CALLING SEQUENCE:
ID mpfid, VP blf
);
@end example
@end ifset
@@ -216,14 +216,14 @@ ER rel_blf (
@c
@page
@c
@subsection ref_mpf - Reference Fixed-Size Memorypool Status
@subheading CALLING SEQUENCE:
@ifset is-C
@example
ER ref_mpf (
@subheading CALLING SEQUENCE:
T_RMPF *pk_rmpf, ID mpfid
);
@end example
@end ifset