2 * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
3 * Distributed under the terms of the MIT License.
6 #include "compatibility.h"
12 #include "fssh_errors.h"
16 fssh_kill_thread(fssh_thread_id thread
)
18 return kill_thread(thread
);
23 fssh_resume_thread(fssh_thread_id thread
)
25 return resume_thread(thread
);
30 fssh_suspend_thread(fssh_thread_id thread
)
32 return suspend_thread(thread
);
37 fssh_find_thread(const char *name
)
39 return find_thread(name
);
44 fssh_snooze(fssh_bigtime_t amount
)
46 return snooze(amount
);
51 fssh_snooze_until(fssh_bigtime_t time
, int timeBase
)
53 return snooze_until(time
, timeBase
);