aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/IScheduler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/IScheduler.cpp')
-rw-r--r--src/runtime/IScheduler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/IScheduler.cpp b/src/runtime/IScheduler.cpp
index 02541810bd..1d06c4e5e9 100644
--- a/src/runtime/IScheduler.cpp
+++ b/src/runtime/IScheduler.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2017 ARM Limited.
+ * Copyright (c) 2016-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -38,7 +38,7 @@ unsigned int get_cpu_impl()
{
#ifndef BARE_METAL
int fd = open("/proc/cpuinfo", 0); // NOLINT
- std::array<char, 1200> buff{ {} };
+ std::array<char, 3000> buff{ {} };
char *pos = nullptr;
char *end = nullptr;
bool foundid = false;
@@ -50,7 +50,7 @@ unsigned int get_cpu_impl()
return 0;
}
- int charsread = read(fd, buff.data(), 1200);
+ int charsread = read(fd, buff.data(), 3000);
pos = buff.data();
end = buff.data() + charsread;