summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-17 16:54:23 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-17 16:56:17 +0100
commit77998753b522e28f1b6f92ebab407e1fcaef5296 (patch)
treeaff584f670dd662e85cba95aa96f97f802f52f04 /testsuites/support/include
parentAdd functions for greedy workspace allocation (diff)
downloadrtems-77998753b522e28f1b6f92ebab407e1fcaef5296.tar.bz2
Use alternative API
Replaced Allocate_majority_of_workspace() with rtems_workspace_allocate(). Replaced Allocate_majority_of_heap() with rtems_heap_greedy_allocate().
Diffstat (limited to 'testsuites/support/include')
-rw-r--r--testsuites/support/include/test_support.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/testsuites/support/include/test_support.h b/testsuites/support/include/test_support.h
index f478067c43..5317113197 100644
--- a/testsuites/support/include/test_support.h
+++ b/testsuites/support/include/test_support.h
@@ -17,24 +17,6 @@ extern "C" {
#endif
/*
- * Allocate a number of small blocks from the workspace
- * until the largest free block of memory available is
- * smaller than smallest.
- *
- * NOTE: The memory CANNOT be freed.
- */
-void Allocate_majority_of_workspace( int smallest );
-
-/*
- * Allocate a number of small blocks from the heap
- * until the largest free block of memory available is
- * smaller than smallest.
- *
- * NOTE: The memory CANNOT be freed.
- */
-void Allocate_majority_of_heap( int smallest );
-
-/*
* Return a pointer to the POSIX name that is slightly
* beyond the legal limit.
*/