Changed radeons memory manager to use areas instead of malloc. Now the radeon.driver should work without hacking the kernel heap bigger.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12134 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2005-03-29 21:09:05 +00:00
parent d19337ad86
commit bccfa80b9b
3 changed files with 31 additions and 11 deletions
+1
View File
@@ -26,6 +26,7 @@ typedef struct mem_block {
// memory heap
typedef struct mem_info {
mem_block *first;
area_id heap_area;
uint32 block_size;
sem_id lock;
mem_block *heap;