Symbol: fssh_thread_id
headers/private/fs_shell/fssh_api_wrapper.h
1130
#define thread_id fssh_thread_id
headers/private/fs_shell/fssh_kernel_export.h
16
extern fssh_thread_id fssh_spawn_kernel_thread(fssh_thread_func function,
headers/private/fs_shell/fssh_lock.h
20
fssh_thread_id holder;
headers/private/fs_shell/fssh_lock.h
28
fssh_thread_id holder;
headers/private/fs_shell/fssh_lock.h
35
fssh_thread_id holder;
headers/private/fs_shell/fssh_lock.h
64
extern void fssh_recursive_lock_transfer_lock(fssh_recursive_lock *lock, fssh_thread_id thread);
headers/private/fs_shell/fssh_lock.h
82
extern void fssh_mutex_transfer_lock(fssh_mutex* lock, fssh_thread_id thread);
headers/private/fs_shell/fssh_os.h
119
fssh_thread_id thread;
headers/private/fs_shell/fssh_os.h
151
extern fssh_thread_id fssh_spawn_thread(fssh_thread_func, const char *name,
headers/private/fs_shell/fssh_os.h
153
extern fssh_status_t fssh_kill_thread(fssh_thread_id thread);
headers/private/fs_shell/fssh_os.h
154
extern fssh_status_t fssh_resume_thread(fssh_thread_id thread);
headers/private/fs_shell/fssh_os.h
155
extern fssh_status_t fssh_suspend_thread(fssh_thread_id thread);
headers/private/fs_shell/fssh_os.h
157
extern fssh_status_t fssh_rename_thread(fssh_thread_id thread,
headers/private/fs_shell/fssh_os.h
159
extern fssh_status_t fssh_set_thread_priority (fssh_thread_id thread,
headers/private/fs_shell/fssh_os.h
162
extern fssh_status_t fssh_wait_for_thread (fssh_thread_id thread,
headers/private/fs_shell/fssh_os.h
167
extern fssh_thread_id fssh_find_thread(const char *name);
headers/private/fs_shell/fssh_os.h
169
extern fssh_status_t fssh_send_data(fssh_thread_id thread, int32_t code,
headers/private/fs_shell/fssh_os.h
172
extern int32_t fssh_receive_data(fssh_thread_id *sender, void *buffer,
headers/private/fs_shell/fssh_os.h
174
extern bool fssh_has_data(fssh_thread_id thread);
headers/private/fs_shell/fssh_os.h
182
extern fssh_status_t _fssh_get_thread_info(fssh_thread_id id,
headers/private/fs_shell/fssh_os.h
43
fssh_thread_id latest_holder;
src/tools/fs_shell/kernel_export.cpp
16
fssh_thread_id
src/tools/fs_shell/kernel_export.cpp
25
fssh_wait_for_thread(fssh_thread_id thread, fssh_status_t *_returnCode)
src/tools/fs_shell/lock.cpp
117
fssh_thread_id thread)
src/tools/fs_shell/lock.cpp
170
fssh_thread_id me = fssh_find_thread(NULL);
src/tools/fs_shell/lock.cpp
188
fssh_thread_id me = fssh_find_thread(NULL);
src/tools/fs_shell/lock.cpp
201
fssh_mutex_transfer_lock(fssh_mutex *mutex, fssh_thread_id thread)
src/tools/fs_shell/lock.cpp
70
fssh_thread_id thread = fssh_find_thread(NULL);
src/tools/fs_shell/lock.cpp
87
fssh_thread_id thread = fssh_find_thread(NULL);
src/tools/fs_shell/thread.cpp
16
fssh_kill_thread(fssh_thread_id thread)
src/tools/fs_shell/thread.cpp
23
fssh_resume_thread(fssh_thread_id thread)
src/tools/fs_shell/thread.cpp
30
fssh_suspend_thread(fssh_thread_id thread)
src/tools/fs_shell/thread.cpp
36
fssh_thread_id