Skip to content

Commit

Permalink
last of doxygen warnings for C library
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed May 19, 2019
1 parent 527b999 commit dc60db6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions src/clib/pio_lists.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ pio_num_iosystem(int *niosysid)
/**
* Add an iodesc.
*
* @param io_desc_t pointer to data to add to list.
* @param iodesc io_desc_t pointer to data to add to list.
* @returns 0 for success, error code otherwise.
* @author Jim Edwards, Ed Hartnett
*/
Expand Down Expand Up @@ -299,8 +299,9 @@ pio_delete_iodesc_from_list(int ioid)
*
* @param varid the varid of the variable.
* @param rec_var non-zero if this is a record var.
* @param pio_type the PIO type.
* @param pio_type_size size of the PIO type in bytes
* @param mpi_type the MPI type
* @param mpi_type the MPI type.
* @param mpi_type_size size of the MPI type in bytes.
* @param varlist pointer to list to add to.
* @returns 0 for success, error code otherwise.
Expand Down
6 changes: 3 additions & 3 deletions src/clib/pioc_support.c
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ pio_err(iosystem_desc_t *ios, file_desc_t *file, int err_num, const char *fname,
* @param ios pointer to the IO system info, used for error
* handling. Ignored if NULL.
* @param ndims the number of dimensions for the data in this region.
* @param a pointer that gets a pointer to the newly allocated
* @param regionp a pointer that gets a pointer to the newly allocated
* io_region struct.
* @returns 0 for success, error code otherwise.
* @author Jim Edwards
Expand Down Expand Up @@ -2740,15 +2740,15 @@ PIOc_set_rearr_opts(int iosysid, int comm_type, int fcd, bool enable_hs_c2i,
* Note that memory is allocated for my_proc_list. This must be freed
* by the caller.
*
* @param num_io_proc the number of IO processes.
* @param num_io_procs the number of IO processes.
* @param component_count the number of computational components.
* @param num_procs_per_comp array (length component_count) which
* contains the number of processes to assign to each computation
* component.
* @param proc_list array (length component count) of arrays (length
* num_procs_per_comp_array[cmp]) which contain the list of processes
* for each computation component. May be NULL.
* @param array (length component count) of arrays (length
* @param my_proc_list array (length component count) of arrays (length
* num_procs_per_comp_array[cmp]) which will get the list of processes
* for each computation component.
* @returns 0 for success, error code otherwise
Expand Down

0 comments on commit dc60db6

Please sign in to comment.