Re: [PATCH] kernel-doc: allow structs whose members are all private

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Randy Dunlap
Date: Monday, September 15, 2008 - 10:31 am

On Mon, 15 Sep 2008 13:26:48 -0400 Christoph Hellwig wrote:


Struct members may be marked as private by using
	/* private: */
before them, as noted in Documentation/kernel-doc-nano-HOWTO.txt:

<quote>
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;
};
</quote>


---
~Randy
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: [PATCH] kernel-doc: allow structs whose members are al ..., Christoph Hellwig, (Mon Sep 15, 10:26 am)
Re: [PATCH] kernel-doc: allow structs whose members are al ..., Randy Dunlap, (Mon Sep 15, 10:31 am)