[PATCH] Doc/kernel-doc: add more usage info

- Add info that structs, unions, enums, and typedefs are supported.

- Add doc about "private:" and "public:" tags for struct fields.

- Fix some typos.

- Remove some trailing whitespace.

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Randy Dunlap 2006-02-01 03:06:57 -08:00 коммит произвёл Linus Torvalds
Родитель 7045f37b17
Коммит d28bee0c0a
2 изменённых файлов: 37 добавлений и 8 удалений

Просмотреть файл

@ -124,6 +124,36 @@ patterns, which are highlighted appropriately.
Take a look around the source tree for examples. Take a look around the source tree for examples.
kernel-doc for structs, unions, enums, and typedefs
---------------------------------------------------
Beside functions you can also write documentation for structs, unions,
enums and typedefs. Instead of the function name you must write the name
of the declaration; the struct/union/enum/typedef must always precede
the name. Nesting of declarations is not supported.
Use the argument mechanism to document members or constants.
Inside a struct description, you can use the "private:" and "public:"
comment tags. Structure fields that are inside a "private:" area
are not listed in the generated output documentation.
Example:
/**
* struct my_struct - short description
* @a: first member
* @b: second member
*
* Longer description
*/
struct my_struct {
int a;
int b;
/* private: */
int c;
};
How to make new SGML template files How to make new SGML template files
----------------------------------- -----------------------------------
@ -147,4 +177,3 @@ documentation, in <filename>, for the functions listed.
Tim. Tim.
*/ <twaugh@redhat.com> */ <twaugh@redhat.com>

Просмотреть файл

@ -45,7 +45,7 @@ use strict;
# Note: This only supports 'c'. # Note: This only supports 'c'.
# usage: # usage:
# kerneldoc [ -docbook | -html | -text | -man ] # kernel-doc [ -docbook | -html | -text | -man ]
# [ -function funcname [ -function funcname ...] ] c file(s)s > outputfile # [ -function funcname [ -function funcname ...] ] c file(s)s > outputfile
# or # or
# [ -nofunction funcname [ -function funcname ...] ] c file(s)s > outputfile # [ -nofunction funcname [ -function funcname ...] ] c file(s)s > outputfile
@ -59,7 +59,7 @@ use strict;
# -nofunction funcname # -nofunction funcname
# If set, then only generate documentation for the other function(s). All # If set, then only generate documentation for the other function(s). All
# other functions are ignored. Cannot be used with -function together # other functions are ignored. Cannot be used with -function together
# (yes thats a bug - perl hackers can fix it 8)) # (yes, that's a bug -- perl hackers can fix it 8))
# #
# c files - list of 'c' files to process # c files - list of 'c' files to process
# #
@ -434,7 +434,7 @@ sub output_enum_html(%) {
print "<hr>\n"; print "<hr>\n";
} }
# output tyepdef in html # output typedef in html
sub output_typedef_html(%) { sub output_typedef_html(%) {
my %args = %{$_[0]}; my %args = %{$_[0]};
my ($parameter); my ($parameter);