Changeset 7c411bd in rtems for cpukit/libblock


Ignore:
Timestamp:
09/14/09 14:48:38 (15 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 5, master
Children:
eebcc5b
Parents:
1e2d7510
Message:

2009-09-14 Sebastian Huber <Sebastian.Huber@…>

  • score/src/wkspace.c: Removed work space area consistency checks.
  • libblock/include/rtems/ide_part_table.h: Functions are now deprecated.
  • libcsupport/include/rtems/libcsupport.h, libcsupport/src/calloc.c, libcsupport/src/malloc_boundary.c, libcsupport/src/malloc_initialize.c, libcsupport/src/malloc_report_statistics_plugin.c, libcsupport/src/malloc_statistics_helpers.c, libcsupport/src/malloc_walk.c, libcsupport/src/realloc.c, rtems/inline/rtems/rtems/region.inl: Update for heap API changes.

2009-09-14 Christian Mauderer <christian.mauderer@…>

  • libcsupport/src/vprintk.c: Fixed warnings. Print nothing in case the pointer to the string is NULL.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libblock/include/rtems/ide_part_table.h

    r1e2d7510 r7c411bd  
    166166 *      N/A
    167167 */
    168 void
    169 rtems_ide_part_table_free(rtems_disk_desc_t *disk_desc);
     168/**
     169 * @deprecated Use the @ref rtems_bdpart "block device partition module" instead.
     170 */
     171void rtems_ide_part_table_free(
     172  rtems_disk_desc_t *disk_desc
     173) RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
    170174
    171175
     
    182186 *      RTEMS_SUCCESSFUL if success, or -1 and corresponding errno else
    183187 */
    184 rtems_status_code
    185 rtems_ide_part_table_get(const char *dev_name, rtems_disk_desc_t *disk_desc);
     188/**
     189 * @deprecated Use the @ref rtems_bdpart "block device partition module" instead.
     190 */
     191rtems_status_code rtems_ide_part_table_get(
     192  const char *dev_name,
     193  rtems_disk_desc_t *disk_desc
     194) RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
    186195
    187196
     
    196205 *      RTEMS_SUCCESSFUL if success, or -1 and corresponding errno else
    197206 */
    198 rtems_status_code
    199 rtems_ide_part_table_initialize(char *dev_name);
     207/**
     208 * @deprecated Use the @ref rtems_bdpart "block device partition module" instead.
     209 */
     210rtems_status_code rtems_ide_part_table_initialize(
     211  char *dev_name
     212) RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
    200213
    201214#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.