File: test.c

package info (click to toggle)
mafft 6.864-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,400 kB
  • sloc: ansic: 51,638; sh: 2,205; makefile: 387; ruby: 372
file content (7 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#include <stdio.h>
#include <unistd.h>
main()
{
	fprintf( stdout, "nprocess = %d\n", sysconf( _SC_NPROCESSORS_ONLN ) );
	fprintf( stdout, "nprocess = %d\n", sysconf( _SC_NPROCESSORS_CONF ) );
}