mariadb/portability/tests/test-active-cpus.cc
Leif Walsh c8f788758c refs #4871 finish removing affinity stuff
git-svn-id: file:///svn/toku/tokudb@50311 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:01:18 -04:00

32 lines
1.2 KiB
C++

/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
#ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
#include <stdio.h>
#include <stdlib.h>
#include <toku_stdint.h>
#include <unistd.h>
#include <toku_assert.h>
#include "toku_os.h"
int main(void) {
int r;
r = unsetenv("TOKU_NCPUS");
assert(r == 0);
int max_cpus = sysconf(_SC_NPROCESSORS_ONLN);
assert(toku_os_get_number_active_processors() == max_cpus);
// change the TOKU_NCPUS env variable and verify that the correct number is computed
for (int ncpus = 1; ncpus <= max_cpus; ncpus++) {
char ncpus_str[32];
sprintf(ncpus_str, "%d", ncpus);
r = setenv("TOKU_NCPUS", ncpus_str, 1);
assert(r == 0);
assert(toku_os_get_number_active_processors() == ncpus);
}
return 0;
}