From: Peter C. <pc...@us...> - 2010-02-03 01:26:59
|
Update of /cvsroot/ipbench/ipbench2/src/tests/cpu_target_lukem In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20202/src/tests/cpu_target_lukem Modified Files: cpu_target_lukem.c Log Message: Many minor mods: --- rename ipbench.py and ipbenchd.py to remove suffix --- Check return values on system() , nice() etc., to allow building with -Werror --- Fix installation varation between Ubuntu and Debian: site-packages vs dist-packages. Index: cpu_target_lukem.c =================================================================== RCS file: /cvsroot/ipbench/ipbench2/src/tests/cpu_target_lukem/cpu_target_lukem.c,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** cpu_target_lukem.c 5 May 2005 02:42:21 -0000 1.13 --- cpu_target_lukem.c 3 Feb 2010 01:26:51 -0000 1.14 *************** *** 109,113 **** /* put ourselves at a low priority */ ! nice(20); /* create the idle thread */ --- 109,114 ---- /* put ourselves at a low priority */ ! if (nice(20) == -1) ! dbprintf("nice for cpu measurement: %s\n", strerror(errno)); /* create the idle thread */ |