Last change
on this file since 608 was
80,
checked in by Sam Hocevar, 15 years ago
|
- Adding the Golgotha source code. Not sure what's going to be interesting
in there, but since it's all public domain, there's certainly stuff to
pick up.
|
File size:
1019 bytes
|
Rev | Line | |
---|
[80] | 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 |
|
---|
| 9 | #include "threads.hh"
|
---|
| 10 |
|
---|
| 11 | // stubs while golgatha transitions away from threads
|
---|
| 12 |
|
---|
| 13 | void i4_add_thread(i4_thread_func_type fun, w32 stack_size, void *arg_list)
|
---|
| 14 | {}
|
---|
| 15 |
|
---|
| 16 | void i4_que_thread(i4_thread_func_type fun, w32 stack_size, void *arg_list)
|
---|
| 17 | {}
|
---|
| 18 |
|
---|
| 19 | void i4_end_of_thread()
|
---|
| 20 | {}
|
---|
| 21 |
|
---|
| 22 | void i4_end_of_que_thread()
|
---|
| 23 | {}
|
---|
| 24 |
|
---|
| 25 | void i4_thread_yield()
|
---|
| 26 | {}
|
---|
| 27 |
|
---|
| 28 | void i4_wait_threads()
|
---|
| 29 | {}
|
---|
| 30 |
|
---|
| 31 | void i4_set_thread_priority(int thread_id, i4_thread_priority_type priority)
|
---|
| 32 | {}
|
---|
| 33 |
|
---|
| 34 | //{{{ Emacs Locals
|
---|
| 35 | // Local Variables:
|
---|
| 36 | // folded-file: t
|
---|
| 37 | // End:
|
---|
| 38 | //}}}
|
---|
Note: See
TracBrowser
for help on using the repository browser.