blob: 090233ee675118de3cb419594b391ecf238423b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#include "types.h"
#include "OS/OSAlloc.h"
Cell *DLInsert(Cell *original, Cell *inserted)
{
Cell *prevCell = NULL;
Cell *nextCell = original;
for (nextCell = original, prevCell = NULL; nextCell; prevCell = nextCell, nextCell = nextCell->next)
{
if (inserted <= nextCell)
break;
}
inserted->next = nextCell;
inserted->prev = prevCell;
if (nextCell != NULL)
{
nextCell->prev = inserted;
Cell * temp = (Cell *)((char *)inserted + inserted->size);
if (temp == nextCell)
{
inserted->size += nextCell->size;
nextCell = nextCell->next;
inserted->next = nextCell;
if (nextCell != NULL)
nextCell->prev = inserted;
}
}
if (prevCell != NULL)
{
prevCell->next = inserted;
Cell * temp = (Cell *)((char *)prevCell + prevCell->size);
if (temp != inserted)
return original;
prevCell->size += inserted->size;
prevCell->next = nextCell;
if (nextCell != NULL)
nextCell->prev = prevCell;
return original;
}
return inserted;
}
|