summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/osdcore.h')
-rw-r--r--src/osd/osdcore.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/osd/osdcore.h b/src/osd/osdcore.h
index 5a2422e50f9..c22bfd03800 100644
--- a/src/osd/osdcore.h
+++ b/src/osd/osdcore.h
@@ -685,59 +685,6 @@ void osd_work_item_release(osd_work_item *item);
***************************************************************************/
/*-----------------------------------------------------------------------------
- osd_malloc: allocate memory
-
- Parameters:
-
- size - the number of bytes to allocate
-
- Return value:
-
- a pointer to the allocated memory
-
- Notes:
-
- This is just a hook to do OS-specific allocation trickery.
- It can be safely written as a wrapper to malloc().
------------------------------------------------------------------------------*/
-void *osd_malloc(size_t size);
-
-
-/*-----------------------------------------------------------------------------
- osd_malloc_array: allocate memory, hinting tha this memory contains an
- array
-
- Parameters:
-
- size - the number of bytes to allocate
-
- Return value:
-
- a pointer to the allocated memory
-
- Notes:
-
- This is just a hook to do OS-specific allocation trickery.
- It can be safely written as a wrapper to malloc().
------------------------------------------------------------------------------*/
-void *osd_malloc_array(size_t size);
-
-
-/*-----------------------------------------------------------------------------
- osd_free: free memory allocated by osd_malloc
-
- Parameters:
-
- ptr - the pointer returned from osd_mallo
-
- Return value:
-
- None
------------------------------------------------------------------------------*/
-void osd_free(void *ptr);
-
-
-/*-----------------------------------------------------------------------------
osd_alloc_executable: allocate memory that can contain executable code
Parameters: