summaryrefslogtreecommitdiff
path: root/shared-core/sis_ds.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared-core/sis_ds.h')
-rw-r--r--shared-core/sis_ds.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/shared-core/sis_ds.h b/shared-core/sis_ds.h
index 6a64ba07..5abfeeaf 100644
--- a/shared-core/sis_ds.h
+++ b/shared-core/sis_ds.h
@@ -115,8 +115,6 @@ static __inline__ void mmMarkReserved(PMemBlock b)
*/
memHeap_t *mmInit(int ofs, int size);
-memHeap_t *mmAddRange(memHeap_t * heap, int ofs, int size);
-
/*
* Allocate 'size' bytes with 2^align2 bytes alignment,
* restrict the search to free memory after 'startSearch'
@@ -141,21 +139,6 @@ int mmBlockInHeap(PMemBlock heap, PMemBlock b);
*/
int mmFreeMem(PMemBlock b);
-/*
- * Reserve 'size' bytes block start at offset
- * This is used to prevent allocation of memory already used
- * by the X server for the front buffer, pixmaps, and cursor
- * input: size, offset
- * output: 0 if OK, -1 if error
- */
-int mmReserveMem(memHeap_t * heap, int offset, int size);
-int mmFreeReserved(memHeap_t * heap, int offset);
-
-/*
- * destroy MM
- */
-void mmDestroy(memHeap_t * mmInit);
-
/* For debuging purpose. */
void mmDumpMemInfo(memHeap_t * mmInit);