tvl-depot/third_party/git/t/helper/test-online-cpus.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
176 B
C
Raw Normal View History

#include "test-tool.h"
#include "git-compat-util.h"
#include "thread-utils.h"
int cmd__online_cpus(int argc, const char **argv)
{
printf("%d\n", online_cpus());
return 0;
}