summaryrefslogtreecommitdiff
path: root/src/buildstream/_platform/darwin.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_platform/darwin.py')
-rw-r--r--src/buildstream/_platform/darwin.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/buildstream/_platform/darwin.py b/src/buildstream/_platform/darwin.py
index 06491e8b4..2e244557e 100644
--- a/src/buildstream/_platform/darwin.py
+++ b/src/buildstream/_platform/darwin.py
@@ -15,7 +15,6 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
-import os
import resource
from ..sandbox import SandboxDummy
@@ -28,13 +27,6 @@ class Darwin(Platform):
# This value comes from OPEN_MAX in syslimits.h
OPEN_MAX = 10240
- def get_cpu_count(self, cap=None):
- cpu_count = os.cpu_count()
- if cap is None:
- return cpu_count
- else:
- return min(cpu_count, cap)
-
def maximize_open_file_limit(self):
# Note that on Mac OSX, you may not be able to simply set the soft
# limit to the reported hard limit, as it may not be the only limit in