Difference between revisions of "love.system.getProcessorCount"

m
(Returns)
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
Gets the number of CPU cores in the system.
+
Gets the amount of logical processor in the system.
  
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
cores = love.system.getProcessorCount( )
+
processorCount = love.system.getProcessorCount( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
{{param|number|cores|The number of CPU cores.}}
+
{{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 number of CPU cores in the system.}}
+
{{#set:Description=Gets the amount of logical processor in the system.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.system.getProcessorCount}}
 
{{i18n|love.system.getProcessorCount}}

Revision as of 11:03, 30 July 2018

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

Gets the amount of logical processor 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