nothread.cc 1019 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #include "threads.hh"
  9. // stubs while golgatha transitions away from threads
  10. void i4_add_thread(i4_thread_func_type fun, w32 stack_size, void *arg_list)
  11. {}
  12. void i4_que_thread(i4_thread_func_type fun, w32 stack_size, void *arg_list)
  13. {}
  14. void i4_end_of_thread()
  15. {}
  16. void i4_end_of_que_thread()
  17. {}
  18. void i4_thread_yield()
  19. {}
  20. void i4_wait_threads()
  21. {}
  22. void i4_set_thread_priority(int thread_id, i4_thread_priority_type priority)
  23. {}
  24. //{{{ Emacs Locals
  25. // Local Variables:
  26. // folded-file: t
  27. // End:
  28. //}}}