Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active April 13, 2022 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Morfly/b0a06589e0fa79687251edb0c39411ae to your computer and use it in GitHub Desktop.
Save Morfly/b0a06589e0fa79687251edb0c39411ae to your computer and use it in GitHub Desktop.
// C
#include <unistd.h>
long numCores = sysconf(_SC_NPROCESSORS_CONF);
// Kotlin
import android.system.Os
import android.system.OsConstants
val numCores = Os.sysconf(OsConstants._SC_NPROCESSORS_CONF)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment