equal
deleted
inserted
replaced
24 #include <list> |
24 #include <list> |
25 #include <stdio.h> |
25 #include <stdio.h> |
26 |
26 |
27 using std::list; |
27 using std::list; |
28 |
28 |
29 enum{ KMaxWindowsIOSize = 31 * 1024 * 1024 }; |
29 enum{ KMaxWindowsIOSize = 32 * 1024 * 1024 }; |
30 |
30 |
31 /** |
31 /** |
32 This class is for reading the ELF file generated by the static linker and based on whether it is |
32 This class is for reading the ELF file generated by the static linker and based on whether it is |
33 ET_EXEC or ET_DYN, it processes the imports(if required) or exports respectively. |
33 ET_EXEC or ET_DYN, it processes the imports(if required) or exports respectively. |
34 @internalComponent |
34 @internalComponent |