diff options
Diffstat (limited to 'android/defs.go')
-rw-r--r-- | android/defs.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android/defs.go b/android/defs.go index 4890c6618..5c815e64e 100644 --- a/android/defs.go +++ b/android/defs.go @@ -99,6 +99,9 @@ var ( // Used only when USE_GOMA=true is set, to restrict non-goma jobs to the local parallelism value localPool = blueprint.NewBuiltinPool("local_pool") + + // Used for processes that need significant RAM to ensure there are not too many running in parallel. + highmemPool = blueprint.NewBuiltinPool("highmem_pool") ) func init() { |