forked from Imagelibrary/rtems
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:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user