Skip to content

Instantly share code, notes, and snippets.

@zhangyuchi
Created June 26, 2017 10:55
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 zhangyuchi/bbf9b556470cfce75aa43019ec97d4c2 to your computer and use it in GitHub Desktop.
Save zhangyuchi/bbf9b556470cfce75aa43019ec97d4c2 to your computer and use it in GitHub Desktop.
获取cpu核心数
#include <unistd.h>
int main(){
return static_cast<int>(sysconf(_SC_NPROCESSORS_ONLN));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment