#include <BeOSBuildCompatibility.h>#include <OS.h>static const thread_id kMainThreadID = 3;// kill_threadstatus_tkill_thread(thread_id thread){return B_BAD_VALUE;}// resume_threadstatus_tresume_thread(thread_id thread){return B_BAD_VALUE;}// suspend_threadstatus_tsuspend_thread(thread_id thread){return B_BAD_VALUE;}// find_threadthread_idfind_thread(const char *name){if (name != NULL)return B_ENTRY_NOT_FOUND;return kMainThreadID;}// _get_thread_infostatus_t_get_thread_info(thread_id id, thread_info* info, size_t size){return B_ERROR;}// _get_next_thread_info// status_t// _get_next_thread_info(team_id team, int32 *cookie, thread_info *info,// size_t size)// {// return B_ERROR;// }