missing-system-includes
authorAndroid Tools Maintainers <android-tools-devel@lists.alioth.debian.org>
Tue, 19 Mar 2019 01:46:21 +0000 (01:46 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Tue, 19 Mar 2019 01:46:21 +0000 (01:46 +0000)
Gbp-Pq: Name missing-system-includes.patch

21 files changed:
runtime/arch/instruction_set_features.cc
runtime/arch/mips/instruction_set_features_mips.cc
runtime/arch/x86/context_x86.cc
runtime/base/arena_allocator.h
runtime/base/bit_vector.h
runtime/base/mutex.cc
runtime/base/scoped_flock.cc
runtime/base/stl_util.h
runtime/base/stringpiece.cc
runtime/base/unix_file/fd_file.cc
runtime/dex_file.h
runtime/exec_utils.cc
runtime/gc/accounting/heap_bitmap.cc
runtime/gc/accounting/read_barrier_table.h
runtime/gc/collector/immune_spaces.cc
runtime/jdwp/jdwp_handler.cc
runtime/jit/profiling_info.h
runtime/monitor.h
runtime/primitive.h
runtime/runtime_common.h
sigchainlib/sigchain.cc

index 43c1711a7236fb206807501a958ad9662eb99f5f..32e285ae90b8bd4a6b024c1be2c1d3f76b962bf7 100644 (file)
@@ -16,6 +16,8 @@
 
 #include "instruction_set_features.h"
 
+#include <algorithm>
+
 #include "android-base/strings.h"
 
 #include "base/casts.h"
index 6540b4451894132d1d0a60abce40fa6ca777bfdd..dd42aa1f3c855ccc5bd128d66d48759b82ccdf22 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <fstream>
 #include <sstream>
+#include <cstring>
 
 #include "android-base/stringprintf.h"
 #include "android-base/strings.h"
index 5c3171299c87e7a713f78fc959a114922ff65d2a..825e60a3c0626481bc6b715f50a862bc6b14a2d2 100644 (file)
@@ -16,6 +16,8 @@
 
 #include "context_x86.h"
 
+#include <cstring>
+
 #include "base/bit_utils.h"
 #include "base/bit_utils_iterator.h"
 #include "base/memory_tool.h"
index a484c5c105c1ef0b108990aa246245091a66cc37..403c049a1d1946b38643c6d6d4680e3d75d7549c 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <stdint.h>
 #include <stddef.h>
+#include <cstring>
 
 #include "base/bit_utils.h"
 #include "base/dchecked_vector.h"
index 56090672ce87f22ae10e98dd2888d44756362092..a16fe368eb8c582df18d65c7d5afcda07ab3345c 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <stdint.h>
 #include <iterator>
+#include <cstring>
 
 #include "base/bit_utils.h"
 #include "globals.h"
index 03dda12f241892eed2e1c735b8ecaab9dfc9446d..998826aa61d0edb3e89168587e17dacb0741794d 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <errno.h>
 #include <sys/time.h>
+#include <algorithm>
 
 #include "android-base/stringprintf.h"
 
index b8df6897e47e7708639c4de1679d1c953f552564..3d5ad95ee8f266d29209493877b1287cc25098cd 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <sys/file.h>
 #include <sys/stat.h>
+#include <cstring>
 
 #include "android-base/stringprintf.h"
 
index b27297241df494a04aafee1bfad24250635fa5f3..931d7109d1a60ce0b39616feb4f1e6329a0b0352 100644 (file)
@@ -20,6 +20,7 @@
 #include <algorithm>
 #include <set>
 #include <sstream>
+#include <vector>
 
 #include "base/logging.h"
 
index 2570bad85dd82c58381cc6de062506e94e583ada..4b1a5d72179148bc8d8968023216c95e4f3238fe 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <ostream>
 #include <utility>
+#include <algorithm>
 
 #include "logging.h"
 
index fd567afd2d9e6ed93125b7f351a7fcb59265620d..a17f1cfbff50908deea09830fe4d46ea3ac2f38b 100644 (file)
@@ -21,6 +21,7 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <unistd.h>
+#include <cstring>
 
 #include "base/logging.h"
 
index 990ab118e7daeb39ccc0e3669e57248da01f8601..9b7565d99b831b931fe8e69f5d47e16562b0ea2f 100644 (file)
@@ -20,6 +20,7 @@
 #include <memory>
 #include <string>
 #include <vector>
+#include <cstring>
 
 #include "base/logging.h"
 #include "base/value_object.h"
index db1baa76f9b959d79e7e851c9639fcad81367c39..0954f4a8bedae0d33d5e3e910bd5df186fa0335a 100644 (file)
@@ -20,6 +20,7 @@
 #include <sys/wait.h>
 #include <string>
 #include <vector>
+#include <cstring>
 
 #include "android-base/stringprintf.h"
 #include "android-base/strings.h"
index 1d729ff4b1e4e00a0df3b6e341638f78af7aacc8..c4f1f35c5c657f22d5feeea174746740f4a5082e 100644 (file)
@@ -16,6 +16,8 @@
 
 #include "heap_bitmap.h"
 
+#include <algorithm>
+
 #include "gc/accounting/space_bitmap-inl.h"
 #include "gc/space/space.h"
 
index 775746f68dda7f0f052a5c0454f6fd0b0c430fa9..e52496147ba5c700853fe632545e496aee1ff031 100644 (file)
@@ -18,6 +18,7 @@
 #define ART_RUNTIME_GC_ACCOUNTING_READ_BARRIER_TABLE_H_
 
 #include <sys/mman.h>  // For the PROT_* and MAP_* constants.
+#include <cstring>
 
 #include "base/bit_utils.h"
 #include "base/mutex.h"
index 1e5f28382bdac9e121262fcd2cf7a7dda5cd26fa..3ef9fadb2a0a097d399a14a7de497aca5bd1b4a8 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <vector>
 #include <tuple>
+#include <algorithm>
 
 #include "gc/space/space-inl.h"
 #include "mirror/object.h"
index 618332b7ef02c6e419bb3e4eb43e54d2d3236f44..fc1d94bc909ee6700aa63bffb7867fcdab8beeb0 100644 (file)
@@ -19,6 +19,7 @@
 #include <unistd.h>
 #include <memory>
 #include <string>
+#include <algorithm>
 
 #include "android-base/stringprintf.h"
 
index 788fa1f92bc86c1b57a096e6dad09dfcda1fe8df..5f07be965a57ea48123f6cd82ef05f76f8520c6e 100644 (file)
@@ -18,6 +18,7 @@
 #define ART_RUNTIME_JIT_PROFILING_INFO_H_
 
 #include <vector>
+#include <cstring>
 
 #include "base/macros.h"
 #include "gc_root.h"
index 09faeba9a63f4e57635f1dd3fe1b7908f7cda682..c0e501f88db5300a7fcb415bdf944f668f35c1ce 100644 (file)
@@ -24,6 +24,7 @@
 #include <iosfwd>
 #include <list>
 #include <vector>
+#include <cstring>
 
 #include "atomic.h"
 #include "base/allocator.h"
index a0edaee6fef3ef5209e2e5b5c19936dbc6ae4bcd..ea29dbad400821f499cc8746981ebba418321bcc 100644 (file)
@@ -18,6 +18,7 @@
 #define ART_RUNTIME_PRIMITIVE_H_
 
 #include <sys/types.h>
+#include <limits>
 
 #include "base/logging.h"
 #include "base/macros.h"
index 06d66270afe54771e454bfe3b712fc47079b0860..fa3a5513bbb2d27c81f3a82f98eed9f76c4899a1 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <sys/utsname.h>
 #include <ucontext.h>
+#include <signal.h>
 
 #include <iomanip>
 
index b8ab51b6292fd631e46427428fb9770c0dad7581..1ec422e3459e8d5c2aa5c4847462f9202f453494 100644 (file)
@@ -33,6 +33,8 @@
 #include <mutex>
 #include <utility>
 
+#include <climits>
+
 #include "sigchain.h"
 
 #if defined(__APPLE__)