2010-06-21 Joel Sherrill <joel.sherrilL@OARcorp.com>

PR 1581/cpukit
	* libcsupport/include/rtems/malloc.h, sapi/include/confdefs.h: Remove
	extra * on function pointer declaration.
This commit is contained in:
Joel Sherrill
2010-06-21 21:13:42 +00:00
parent 94f4f116e6
commit 0de235f97f
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2010-06-21 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1581/cpukit
* libcsupport/include/rtems/malloc.h, sapi/include/confdefs.h: Remove
extra * on function pointer declaration.
2010-06-21 Peter Dufault <dufault@hda.com> 2010-06-21 Peter Dufault <dufault@hda.com>
PR 1570/cpukit PR 1570/cpukit

View File

@@ -84,7 +84,7 @@ extern rtems_malloc_sbrk_functions_t *rtems_malloc_sbrk_helpers;
* Malloc Plugin to Dirty Memory at Allocation Time * Malloc Plugin to Dirty Memory at Allocation Time
*/ */
typedef void (*rtems_malloc_dirtier_t)(void *, size_t); typedef void (*rtems_malloc_dirtier_t)(void *, size_t);
extern rtems_malloc_dirtier_t *rtems_malloc_dirty_helper; extern rtems_malloc_dirtier_t rtems_malloc_dirty_helper;
/** @brief Dirty memory function /** @brief Dirty memory function
* *

View File

@@ -703,7 +703,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
* allocated. This is helpful for finding unitialized data structure * allocated. This is helpful for finding unitialized data structure
* problems. * problems.
*/ */
rtems_malloc_dirtier_t *rtems_malloc_dirty_helper = rtems_malloc_dirtier_t rtems_malloc_dirty_helper =
#if defined(CONFIGURE_MALLOC_DIRTY) #if defined(CONFIGURE_MALLOC_DIRTY)
rtems_malloc_dirty_memory; rtems_malloc_dirty_memory;
#else #else