psl1ght
A free SDK for Sony's PS3 console
Loading...
Searching...
No Matches
mm.h
Go to the documentation of this file.
1
5#ifndef __RSX_MM_H__
6#define __RSX_MM_H__
7
8#include <ppu-types.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
18
23void* rsxMalloc(u32 size);
24
30void* rsxMemalign(u32 alignment,u32 size);
31
37void rsxFree(void *ptr);
38
39#ifdef __cplusplus
40 }
41#endif
42
43#endif
uintptr_t size
Definition heap.h:1
s32 rsxHeapInit()
Initialize the RSX heap.
void rsxFree(void *ptr)
Deallocation of a previously dynamically allocated RSX buffer.
void * rsxMemalign(u32 alignment, u32 size)
Dynamic allocation of aligned RSX memory.
void * rsxMalloc(u32 size)
Dynamic allocation of RSX memory.