Mercurial > hg > Members > kono > Cerium
comparison include/TaskManager/DmaManager.h @ 180:5cde66c926b4
いろいろ fix 。詳しくは TaskManager/Changelog、test_render/Changelog を
author | gongo@localhost.localdomain |
---|---|
date | Mon, 22 Dec 2008 16:09:57 +0900 |
parents | 5c194c71eca8 |
children | d734af296d38 |
comparison
equal
deleted
inserted
replaced
179:434846aef389 | 180:5cde66c926b4 |
---|---|
3 | 3 |
4 #ifndef INCLUDED_BASE_H_ | 4 #ifndef INCLUDED_BASE_H_ |
5 # include "base.h" | 5 # include "base.h" |
6 #endif | 6 #endif |
7 | 7 |
8 | |
9 enum dma_tag { | |
10 #if 0 | |
11 DMA_READ = 27, | |
12 DMA_WRITE = 28, | |
13 DMA_READ_TASKLIST = 29, | |
14 DMA_READ_IN_LIST = 30, | |
15 DMA_READ_OUT_LIST = 31, | |
16 #else | |
17 DMA_READ_TASKLIST = 27, | |
18 DMA_READ_IN_LIST = 28, | |
19 DMA_READ_OUT_LIST = 29, | |
20 DMA_READ = 30, | |
21 DMA_WRITE = 31, | |
22 #endif | |
23 }; | |
24 | |
25 #ifndef INCLUDED_LIST_DATA | 8 #ifndef INCLUDED_LIST_DATA |
26 # include "ListData.h" | 9 # include "ListData.h" |
27 #endif | 10 #endif |
28 | 11 |
29 #ifndef INCLUDED_TYPES | 12 #ifndef INCLUDED_TYPES |
30 # include "types.h" | 13 # include "types.h" |
31 #endif | 14 #endif |
15 | |
16 enum dma_tag { | |
17 DMA_READ_TASKLIST = 27, | |
18 DMA_READ_IN_LIST = 28, | |
19 DMA_READ_OUT_LIST = 29, | |
20 DMA_READ = 30, | |
21 DMA_WRITE = 31, | |
22 }; | |
32 | 23 |
33 class DmaManager { | 24 class DmaManager { |
34 public: | 25 public: |
35 virtual ~DmaManager(void) {}; | 26 virtual ~DmaManager(void) {}; |
36 | 27 |