Difference between revisions of "love.system.getProcessorCount"

(Returns)
m
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
Gets the amount of logical processor in the system.
+
Gets the amount of logical processors in the system.
  
 
== Function ==
 
== Function ==
Line 10: Line 10:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number (Русский)|processorCount|Amount of logical processors.}}
+
{{param|number|processorCount|Amount of logical processors.}}
  
 
== Notes ==
 
== Notes ==
Line 18: Line 18:
 
* [[love.thread.newThread]]
 
* [[love.thread.newThread]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Gets the amount of logical processor in the system.}}
+
{{#set:Description=Gets the amount of logical processors in the system.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.system.getProcessorCount}}
 
{{i18n|love.system.getProcessorCount}}

Latest revision as of 14:57, 28 November 2021

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the amount of logical processors in the system.

Function

Synopsis

processorCount = love.system.getProcessorCount( )

Arguments

None.

Returns

number processorCount
Amount of logical processors.

Notes

The number includes the threads reported if technologies such as Intel's Hyper-threading are enabled. For example, on a 4-core CPU with Hyper-threading, this function will return 8.

See Also

Other Languages