test_spinlock.hpp 197 B

123456789101112
  1. #pragma once
  2. namespace ra
  3. {
  4. namespace unit_tests
  5. {
  6. //main
  7. void test_thread_spinlock();
  8. //subs
  9. void* thread_test_critical( void *x ); //must match rAthreadProc signature
  10. }
  11. }