summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJason Tedor <jason@tedor.me>2017-06-28 08:24:33 -0400
committerGitHub <noreply@github.com>2017-06-28 08:24:33 -0400
commitbe906628d5a7b991c637c9ffc902de89542289db (patch)
tree81c9f1d74ab7459b5c1da4575c8cbde4d4d63088 /core
parent960d63a3b3051a1d1865f8f90de7280356ae48b4 (diff)
Remove implicit 32-bit support
We previously tried to maintain (while not formally supporting) 32-bit support, although we never tested this anywhere in CI. Since we do not formally support this, and 32-bit usage is very low, we have elected to no longer maintain 32-bit support. This commit removes any implication of 32-bit support. Relates #25435
Diffstat (limited to 'core')
-rw-r--r--core/src/main/java/org/elasticsearch/bootstrap/SystemCallFilter.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/main/java/org/elasticsearch/bootstrap/SystemCallFilter.java b/core/src/main/java/org/elasticsearch/bootstrap/SystemCallFilter.java
index d9ca969871..c9971a8a72 100644
--- a/core/src/main/java/org/elasticsearch/bootstrap/SystemCallFilter.java
+++ b/core/src/main/java/org/elasticsearch/bootstrap/SystemCallFilter.java
@@ -242,7 +242,6 @@ final class SystemCallFilter {
static {
Map<String,Arch> m = new HashMap<>();
m.put("amd64", new Arch(0xC000003E, 0x3FFFFFFF, 57, 58, 59, 322, 317));
- m.put("i386", new Arch(0x40000003, 0xFFFFFFFF, 2, 190, 11, 358, 354));
ARCHITECTURES = Collections.unmodifiableMap(m);
}