Enlightenment CVS committal Author : mej Project : eterm Module : libast
Dir : eterm/libast/src Modified Files: mem.c obj.c options.c Log Message: Sun Nov 23 15:57:55 2003 Michael Jennings (mej) Cleanups required by doxygen 1.3.x. =================================================================== RCS file: /cvsroot/enlightenment/eterm/libast/src/mem.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- mem.c 10 Nov 2003 19:29:19 -0000 1.11 +++ mem.c 23 Nov 2003 20:58:20 -0000 1.12 @@ -29,11 +29,11 @@ * This file contains the memory management subsystem. * * @author Michael Jennings <[EMAIL PROTECTED]> - * $Revision: 1.11 $ - * $Date: 2003/11/10 19:29:19 $ + * $Revision: 1.12 $ + * $Date: 2003/11/23 20:58:20 $ */ -static const char cvs_ident[] = "$Id: mem.c,v 1.11 2003/11/10 19:29:19 mej Exp $"; +static const char cvs_ident[] = "$Id: mem.c,v 1.12 2003/11/23 20:58:20 mej Exp $"; #ifdef HAVE_CONFIG_H # include <config.h> @@ -58,7 +58,7 @@ * management functions. Call counting is controlled by the * #MALLOC_CALL_DEBUG symbol, and is off by default. * - * @see DOXGRP_MEM + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink * @ingroup DOXGRP_MEM */ @@ -79,7 +79,7 @@ * This structure keeps track of the pointer array which represents * pointers allocated via the memory management interface. * - * @see DOXGRP_MEM, memrec_t_struct + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, memrec_t_struct * @ingroup DOXGRP_MEM */ static memrec_t malloc_rec; @@ -89,7 +89,7 @@ * This structure keeps track of the pixmap array which represents * pixmaps allocated via the memory management interface. * - * @see DOXGRP_MEM, memrec_t_struct + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, memrec_t_struct * @ingroup DOXGRP_MEM */ static memrec_t pixmap_rec; @@ -100,7 +100,7 @@ * X11 Graphics Context objects, or GC's, allocated via the memory * management interface. * - * @see DOXGRP_MEM, memrec_t_struct + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, memrec_t_struct * @ingroup DOXGRP_MEM */ static memrec_t gc_rec; @@ -112,7 +112,7 @@ * memory management system is used. This function initializes the * pointer lists. * - * @see DOXGRP_MEM + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink * @ingroup DOXGRP_MEM */ void @@ -139,7 +139,7 @@ * @param ptr The allocated variable. * @param size The number of bytes requested. * - * @see DOXGRP_MEM, MALLOC(), libast_malloc() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, MALLOC(), libast_malloc() * @ingroup DOXGRP_MEM */ static void @@ -173,7 +173,7 @@ * @return A pointer to the #ptr_t object within @a memrec * that matches @a ptr, or NULL if not found. * - * @see DOXGRP_MEM, MALLOC(), libast_malloc() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, MALLOC(), libast_malloc() * @ingroup DOXGRP_MEM */ static ptr_t * @@ -208,7 +208,7 @@ * was freed. * @param ptr The freed variable. * - * @see DOXGRP_MEM, FREE(), libast_free() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, FREE(), libast_free() * @ingroup DOXGRP_MEM */ static void @@ -246,7 +246,7 @@ * @param newp The new value of the pointer. * @param size The new size in bytes. * - * @see DOXGRP_MEM, REALLOC(), libast_realloc() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, REALLOC(), libast_realloc() * @ingroup DOXGRP_MEM */ static void @@ -278,7 +278,7 @@ * * @param memrec Address of the #memrec_t we're dumping. * - * @see DOXGRP_MEM, MALLOC_DUMP(), libast_dump_mem_tables() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, MALLOC_DUMP(), libast_dump_mem_tables() * @ingroup DOXGRP_MEM */ static void @@ -358,7 +358,7 @@ * * @param memrec Address of the #memrec_t we're dumping. * - * @see DOXGRP_MEM, MALLOC_DUMP(), libast_dump_mem_tables(), + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, MALLOC_DUMP(), libast_dump_mem_tables(), * memrec_dump_pointers() * @ingroup DOXGRP_MEM */ @@ -404,7 +404,7 @@ * @param size The requested size in bytes (as passed to MALLOC()). * @return A pointer to the newly-allocated memory. * - * @see DOXGRP_MEM, MALLOC() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, MALLOC() * @ingroup DOXGRP_MEM */ void * @@ -446,7 +446,7 @@ * REALLOC()). * @return The new value (possibly moved) of the pointer. * - * @see DOXGRP_MEM, REALLOC() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, REALLOC() * @ingroup DOXGRP_MEM */ void * @@ -491,7 +491,7 @@ * CALLOC()). * @return A pointer to the newly-allocated, zeroed memory. * - * @see DOXGRP_MEM, CALLOC() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, CALLOC() * @ingroup DOXGRP_MEM */ void * @@ -528,7 +528,7 @@ * is being freed. * @param ptr The pointer being freed (as passed to FREE()). * - * @see DOXGRP_MEM, FREE() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, FREE() * @ingroup DOXGRP_MEM */ void @@ -566,7 +566,7 @@ * @param str The string being duplicated (as passed to STRDUP()). * @return A pointer to a newly-allocated copy of @a str. * - * @see DOXGRP_MEM, STRDUP() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, STRDUP() * @ingroup DOXGRP_MEM */ char * @@ -589,7 +589,7 @@ * This function simply calls memrec_dump_pointers() and passes in the * address of the #malloc_rec variable. * - * @see DOXGRP_MEM, MALLOC_DUMP(), memrec_dump_pointers() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, MALLOC_DUMP(), memrec_dump_pointers() * @ingroup DOXGRP_MEM */ void @@ -621,7 +621,7 @@ * @param depth The color depth for the new pixmap. * @return A newly-created Pixmap. * - * @see DOXGRP_MEM, X_CREATE_PIXMAP() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, X_CREATE_PIXMAP() * @ingroup DOXGRP_MEM */ Pixmap @@ -654,7 +654,7 @@ * @param d The Display for the pixmap. * @param p The Pixmap to be freed. * - * @see DOXGRP_MEM, X_FREE_PIXMAP() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, X_FREE_PIXMAP() * @ingroup DOXGRP_MEM */ void @@ -685,7 +685,7 @@ * being registered. * @param p The Pixmap being registered. * - * @see DOXGRP_MEM, IMLIB_REGISTER_PIXMAP() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, IMLIB_REGISTER_PIXMAP() * @ingroup DOXGRP_MEM */ void @@ -719,7 +719,7 @@ * being freed. * @param p The Pixmap being freed. * - * @see DOXGRP_MEM, IMLIB_FREE_PIXMAP() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, IMLIB_FREE_PIXMAP() * @ingroup DOXGRP_MEM */ void @@ -743,7 +743,7 @@ * This function simply calls memrec_dump_resources() and passes in * the address of the #pixmap_rec variable. * - * @see DOXGRP_MEM, PIXMAP_DUMP(), memrec_dump_resources() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, PIXMAP_DUMP(), memrec_dump_resources() * @ingroup DOXGRP_MEM */ void @@ -774,7 +774,7 @@ * @param gcv Pointer to XGCValues structure. * @return A newly-created GC. * - * @see DOXGRP_MEM, X_CREATE_GC() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, X_CREATE_GC() * @ingroup DOXGRP_MEM */ GC @@ -806,7 +806,7 @@ * @param d The Display for the GC. * @param gc The GC to be freed. * - * @see DOXGRP_MEM, X_FREE_GC() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, X_FREE_GC() * @ingroup DOXGRP_MEM */ void @@ -829,7 +829,7 @@ * This function simply calls memrec_dump_resources() and passes in * the address of the #gc_rec variable. * - * @see DOXGRP_MEM, GC_DUMP(), memrec_dump_resources() + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, GC_DUMP(), memrec_dump_resources() * @ingroup DOXGRP_MEM */ void =================================================================== RCS file: /cvsroot/enlightenment/eterm/libast/src/obj.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -3 -r1.18 -r1.19 --- obj.c 21 Nov 2003 23:43:26 -0000 1.18 +++ obj.c 23 Nov 2003 20:58:20 -0000 1.19 @@ -28,11 +28,11 @@ * This file contains the basic object class. * * @author Michael Jennings <[EMAIL PROTECTED]> - * $Revision: 1.18 $ - * $Date: 2003/11/21 23:43:26 $ + * $Revision: 1.19 $ + * $Date: 2003/11/23 20:58:20 $ */ -static const char cvs_ident[] = "$Id: obj.c,v 1.18 2003/11/21 23:43:26 mej Exp $"; +static const char cvs_ident[] = "$Id: obj.c,v 1.19 2003/11/23 20:58:20 mej Exp $"; #ifdef HAVE_CONFIG_H # include <config.h> @@ -55,7 +55,7 @@ * comp, dup, and type. Other classes may define other standard * functions. (This is used for doing interface classes.) * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ static SPIF_CONST_TYPE(class) o_class = { @@ -77,7 +77,7 @@ * to the spif_const_class_t structure above. This pointer value is * the very first thing stored in each * instance of an "obj." * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ SPIF_TYPE(class) SPIF_CLASS_VAR(obj) = &o_class; @@ -111,7 +111,7 @@ * * @return A new @c obj instance. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink */ spif_obj_t spif_obj_new(void) @@ -133,7 +133,7 @@ * @param self The @c obj instance to be deleted. * @return #TRUE if successful, #FALSE otherwise. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ spif_bool_t @@ -164,7 +164,7 @@ * @param self The @c obj instance to be initialized. * @return #TRUE if successful, #FALSE otherwise. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ spif_bool_t @@ -183,7 +183,7 @@ * @param self The @c obj instance to be zeroed and reinitialized. * @return #TRUE if successful, #FALSE otherwise. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ spif_bool_t @@ -228,7 +228,7 @@ * @return The @c str object, or a new one if @a buff was NULL, * describing @a self. * - * @see DOXGRP_OBJ, SPIF_SHOW() + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink, SPIF_SHOW() * @ingroup DOXGRP_OBJ */ spif_str_t @@ -267,7 +267,7 @@ * @return A spif_cmp_t value representing the comparison of @a * self and @a other. * - * @see DOXGRP_OBJ, spif_str_comp(), spif_cmp_t, SPIF_CMP_FROM_INT() + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink, spif_str_comp(), spif_cmp_t, SPIF_CMP_FROM_INT() * @ingroup DOXGRP_OBJ */ spif_cmp_t @@ -293,7 +293,7 @@ * @return An exact duplicate of @a self which is identical to, * but programmatically independent of, the original. * - * @see DOXGRP_OBJ, spif_str_dup() + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink, spif_str_dup() * @ingroup DOXGRP_OBJ */ spif_obj_t @@ -317,7 +317,7 @@ * @param self The @c obj instance. * @return The class name of @a self. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ spif_classname_t @@ -343,7 +343,7 @@ * @param self The @c obj instance. * @return The object's class, or NULL if @a self is NULL. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ spif_class_t @@ -370,7 +370,7 @@ * @param cls The @c class for the given instance. * @return #TRUE if successful, #FALSE otherwise. * - * @see DOXGRP_OBJ + * @see @link DOXGRP_OBJ LibAST Object Infrastructure @endlink * @ingroup DOXGRP_OBJ */ spif_bool_t =================================================================== RCS file: /cvsroot/enlightenment/eterm/libast/src/options.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- options.c 17 Jun 2003 00:44:08 -0000 1.8 +++ options.c 23 Nov 2003 20:58:20 -0000 1.9 @@ -29,11 +29,11 @@ * option parser. * * @author Michael Jennings <[EMAIL PROTECTED]> - * $Revision: 1.8 $ - * $Date: 2003/06/17 00:44:08 $ + * $Revision: 1.9 $ + * $Date: 2003/11/23 20:58:20 $ */ -static const char cvs_ident[] = "$Id: options.c,v 1.8 2003/06/17 00:44:08 mej Exp $"; +static const char cvs_ident[] = "$Id: options.c,v 1.9 2003/11/23 20:58:20 mej Exp $"; #ifdef HAVE_CONFIG_H # include <config.h> @@ -50,7 +50,7 @@ * parser. They are not available for use by client programs and are * documented here solely for completeness and clarity. * - * @see DOXGRP_OPT + * @see @link DOXGRP_OPT Command Line Option Parser @endlink * @ingroup DOXGRP_OPT */ @@ -72,7 +72,7 @@ * for the option parser. It should never be accessed directly, but * rather through use of the Option Parser Settings Macros. * - * @see DOXGRP_OPT + * @see @link DOXGRP_OPT Command Line Option Parser @endlink * @ingroup DOXGRP_OPT */ spifopt_settings_t spifopt_settings; @@ -87,7 +87,7 @@ * @param type The numeric option type (SPIFOPT_OPT_FLAGS()). * @return A 6-char-max string describing the option type. * - * @see DOXGRP_OPT + * @see @link DOXGRP_OPT Command Line Option Parser @endlink * @ingroup DOXGRP_OPT */ static const char * @@ -110,7 +110,7 @@ * prints out a brief type identifier as produced by * get_option_type_string(). * - * @see DOXGRP_MEM, SPIFOPT_HELPHANDLER_SET(), spifopt_helphandler_t + * @see @link DOXGRP_MEM Memory Management Subsystem @endlink, SPIFOPT_HELPHANDLER_SET(), spifopt_helphandler_t * @ingroup DOXGRP_MEM */ void @@ -177,7 +177,7 @@ * @param opt The long option string to match against. * @return The index of the matching option, or -1 if not found. * - * @see DOXGRP_OPT, is_valid_option() + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, is_valid_option() * @ingroup DOXGRP_OPT */ static spif_int32_t @@ -214,7 +214,7 @@ * @param opt The short option character to match against. * @return The index of the matching option, or -1 if not found. * - * @see DOXGRP_OPT, is_valid_option() + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, is_valid_option() * @ingroup DOXGRP_OPT */ static spif_int32_t @@ -248,7 +248,7 @@ * @return The option's value string, or NULL if no value is * found. * - * @see DOXGRP_OPT, spifopt_parse() + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse() * @ingroup DOXGRP_OPT */ static char * @@ -280,7 +280,7 @@ * @return The option's value string, or NULL if no value is * found. * - * @see DOXGRP_OPT, spifopt_parse() + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse() * @ingroup DOXGRP_OPT */ static char * @@ -306,7 +306,7 @@ * @param val_ptr The value to be tested. * @return TRUE if boolean, FALSE if not. * - * @see DOXGRP_OPT, spifopt_parse() + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse() * @ingroup DOXGRP_OPT */ static spif_bool_t @@ -327,7 +327,7 @@ * @param opt The argument string. * @return TRUE if a match is found, FALSE otherwise. * - * @see DOXGRP_OPT, spifopt_parse(), find_long_option(), + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse(), find_long_option(), * find_short_option() * @ingroup DOXGRP_OPT */ @@ -366,7 +366,7 @@ * @param islong 0 if the option was short, non-zero otherwise. * @return TRUE if a match is found, FALSE otherwise. * - * @see DOXGRP_OPT, spifopt_parse(), find_long_option(), + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse(), find_long_option(), * find_short_option() * @ingroup DOXGRP_OPT */ @@ -418,7 +418,7 @@ * @param n The index of the option. * @param val_ptr The value passed to the option. * - * @see DOXGRP_OPT, spifopt_parse(), find_long_option(), + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse(), find_long_option(), * find_short_option() * @ingroup DOXGRP_OPT */ @@ -439,7 +439,7 @@ * @param n The index of the option. * @param val_ptr The value passed to the option. * - * @see DOXGRP_OPT, spifopt_parse(), find_long_option(), + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse(), find_long_option(), * find_short_option() * @ingroup DOXGRP_OPT */ @@ -465,7 +465,7 @@ * @param argc The argument count. * @param argv The argument list. * - * @see DOXGRP_OPT, spifopt_parse(), find_long_option(), + * @see @link DOXGRP_OPT Command Line Option Parser @endlink, spifopt_parse(), find_long_option(), * find_short_option() * @ingroup DOXGRP_OPT */ @@ -513,7 +513,7 @@ * @param argc The number of arguments. * @param argv The array of argument strings. * - * @see DOXGRP_OPT + * @see @link DOXGRP_OPT Command Line Option Parser @endlink * @ingroup DOXGRP_OPT */ void ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ enlightenment-cvs mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs