Unverified Commit 1302d2ce by Dominic Hamon Committed by GitHub

Add missing breaks for QNX cache counting (#1012)

parent 99010118
...@@ -384,9 +384,11 @@ std::vector<CPUInfo::CacheInfo> GetCacheSizesQNX() { ...@@ -384,9 +384,11 @@ std::vector<CPUInfo::CacheInfo> GetCacheSizesQNX() {
case CACHE_FLAG_UNIFIED : case CACHE_FLAG_UNIFIED :
info.type = "Unified"; info.type = "Unified";
info.level = 2; info.level = 2;
break;
case CACHE_FLAG_SHARED : case CACHE_FLAG_SHARED :
info.type = "Shared"; info.type = "Shared";
info.level = 3; info.level = 3;
break;
default : default :
continue; continue;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment