Revision 9f72ac36440c6c83a35958037fff258259f4ba28 authored by Brad King on 03 June 2024, 17:32:21 UTC, committed by Brad King on 03 June 2024, 17:35:26 UTC
1 parent 713bca2
Raw File
cmAffinity.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep

#include <cstddef>
#include <set>

namespace cmAffinity {

std::set<size_t> GetProcessorsAvailable();
}
back to top