src/Pure/System/host.scala
changeset 78435 a623cb346b4a
parent 78396 7853d9072d1b
child 78837 f97e23eaa628
--- a/src/Pure/System/host.scala	Sat Jul 22 13:31:55 2023 +0200
+++ b/src/Pure/System/host.scala	Sat Jul 22 16:01:46 2023 +0200
@@ -17,7 +17,7 @@
   def numactl(node: Int): String = "numactl -m" + node + " -N" + node
   def numactl_ok(node: Int): Boolean = Isabelle_System.bash(numactl(node) + " true").ok
 
-  def process_policy(options: Options, numa_node: Option[Int]): Options =
+  def process_policy_options(options: Options, numa_node: Option[Int]): Options =
     numa_node match {
       case None => options
       case Some(node) =>
@@ -32,9 +32,6 @@
   sealed case class Node_Info(hostname: String, numa_node: Option[Int]) {
     override def toString: String =
       hostname + if_proper(numa_node, "/" + numa_node.get.toString)
-
-    def process_policy(options: Options): Options =
-      Host.process_policy(options, numa_node)
   }