| OLD | NEW |
| 1 // Copyright (c) 2014 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2014 The Native Client Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NACL_SPAWN_ELF_READER_ | 5 #ifndef NACL_SPAWN_ELF_READER_ |
| 6 #define NACL_SPAWN_ELF_READER_ | 6 #define NACL_SPAWN_ELF_READER_ |
| 7 | 7 |
| 8 #include <elf.h> | 8 #include <elf.h> |
| 9 #include <stdio.h> | 9 #include <stdio.h> |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 const char* filename_; | 37 const char* filename_; |
| 38 bool is_valid_; | 38 bool is_valid_; |
| 39 bool is_static_; | 39 bool is_static_; |
| 40 Elf64_Half machine_; | 40 Elf64_Half machine_; |
| 41 unsigned char elf_class_; | 41 unsigned char elf_class_; |
| 42 std::vector<std::string> neededs_; | 42 std::vector<std::string> neededs_; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 #endif // NACL_SPAWN_ELF_READER_ | 45 #endif // NACL_SPAWN_ELF_READER_ |
| OLD | NEW |