summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/include/rtems/ide_part_table.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-14 14:48:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-14 14:48:38 +0000
commit7c411bda5ba29eb8fb5be3841626a485c0d650cb (patch)
tree049b9b8b77421704c34c29ad0d9a940ff0025f4c /cpukit/libblock/include/rtems/ide_part_table.h
parent2009-09-13 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-7c411bda5ba29eb8fb5be3841626a485c0d650cb.tar.bz2
2009-09-14 Sebastian Huber <Sebastian.Huber@embedded-brains.de>
* 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@embedded-brains.de> * libcsupport/src/vprintk.c: Fixed warnings. Print nothing in case the pointer to the string is NULL.
Diffstat (limited to 'cpukit/libblock/include/rtems/ide_part_table.h')
-rw-r--r--cpukit/libblock/include/rtems/ide_part_table.h25
1 files changed, 19 insertions, 6 deletions
diff --git a/cpukit/libblock/include/rtems/ide_part_table.h b/cpukit/libblock/include/rtems/ide_part_table.h
index b07465b005..ee4dc77ca8 100644
--- a/cpukit/libblock/include/rtems/ide_part_table.h
+++ b/cpukit/libblock/include/rtems/ide_part_table.h
@@ -165,8 +165,12 @@ extern "C" {
* RETURNS:
* N/A
*/
-void
-rtems_ide_part_table_free(rtems_disk_desc_t *disk_desc);
+/**
+ * @deprecated Use the @ref rtems_bdpart "block device partition module" instead.
+ */
+void rtems_ide_part_table_free(
+ rtems_disk_desc_t *disk_desc
+) RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
/*
@@ -181,8 +185,13 @@ rtems_ide_part_table_free(rtems_disk_desc_t *disk_desc);
* RETURNS:
* RTEMS_SUCCESSFUL if success, or -1 and corresponding errno else
*/
-rtems_status_code
-rtems_ide_part_table_get(const char *dev_name, rtems_disk_desc_t *disk_desc);
+/**
+ * @deprecated Use the @ref rtems_bdpart "block device partition module" instead.
+ */
+rtems_status_code rtems_ide_part_table_get(
+ const char *dev_name,
+ rtems_disk_desc_t *disk_desc
+) RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
/*
@@ -195,8 +204,12 @@ rtems_ide_part_table_get(const char *dev_name, rtems_disk_desc_t *disk_desc);
* RETURNS:
* RTEMS_SUCCESSFUL if success, or -1 and corresponding errno else
*/
-rtems_status_code
-rtems_ide_part_table_initialize(char *dev_name);
+/**
+ * @deprecated Use the @ref rtems_bdpart "block device partition module" instead.
+ */
+rtems_status_code rtems_ide_part_table_initialize(
+ char *dev_name
+) RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
#ifdef __cplusplus
}