These patches add a new priority inversion test (pip) similar to pi_stress The difference is, that pi_stress uses pthreads and pip uses processes. In addition there are changes to put the headers files in src/include and to add some common error handling routines to our library. Clark: You can pull these patches from git://git.kernel.org/pub/scm/linux/kernel/git/jkacur/rt-tests.git branch: rt-tests-dev-new Thank You John Kacur (5): rt-tests: Add error routines to the library rt-tests: Add a new test pip - priority inheritance with processes rt-tests: Move header files from src/lib to src/include rt-tests: pip - Use check_privs() from the rt-utils library. rt-tests: Add a "make tags" option. .gitignore | 2 +- Makefile | 12 ++- src/include/error.h | 15 ++ src/include/pip.h | 41 ++++++ src/include/rt-get_cpu.h | 46 ++++++ src/include/rt-utils.h | 11 ++ src/lib/error.c | 49 +++++++ src/lib/rt-get_cpu.h | 46 ------ src/lib/rt-utils.h | 11 -- src/pi_tests/pip.c | 347 ++++++++++++++++++++++++++++++++++++++++++++++ 10 files changed, 520 insertions(+), 60 deletions(-) create mode 100644 src/include/error.h create mode 100644 src/include/pip.h create mode 100644 src/include/rt-get_cpu.h create mode 100644 src/include/rt-utils.h create mode 100644 src/lib/error.c delete mode 100644 src/lib/rt-get_cpu.h delete mode 100644 src/lib/rt-utils.h create mode 100644 src/pi_tests/pip.c -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html