123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
- /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
- /* Copyright (C) 2014 Stony Brook University
- This file is part of Graphene Library OS.
- Graphene Library OS is free software: you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public License
- as published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- Graphene Library OS is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
- /*
- * shim_thread.c
- *
- * This file contains codes to maintain bookkeeping of threads in library OS.
- */
- #include <shim_internal.h>
- #include <shim_thread.h>
- #include <shim_handle.h>
- #include <shim_vma.h>
- #include <shim_fs.h>
- #include <shim_checkpoint.h>
- #include <pal.h>
- #include <list.h>
- static IDTYPE tid_alloc_idx __attribute_migratable = 0;
- static LISTP_TYPE(shim_thread) thread_list = LISTP_INIT;
- DEFINE_LISTP(shim_simple_thread);
- static LISTP_TYPE(shim_simple_thread) simple_thread_list = LISTP_INIT;
- LOCKTYPE thread_list_lock;
- static IDTYPE internal_tid_alloc_idx = INTERNAL_TID_BASE;
- PAL_HANDLE thread_start_event = NULL;
- //#define DEBUG_REF
- int init_thread (void)
- {
- create_lock(thread_list_lock);
- struct shim_thread * cur_thread = get_cur_thread();
- if (cur_thread)
- return 0;
- if (!(cur_thread = get_new_thread(0)))
- return -ENOMEM;
- cur_thread->in_vm = cur_thread->is_alive = true;
- set_cur_thread(cur_thread);
- add_thread(cur_thread);
- cur_thread->pal_handle = PAL_CB(first_thread);
- return 0;
- }
- void dump_threads (void)
- {
- struct shim_thread * tmp;
- lock(thread_list_lock);
- listp_for_each_entry(tmp, &thread_list, list) {
- debug("thread %d, vmid = %d, pgid = %d, ppid = %d, tgid = %d, in_vm = %d\n",
- tmp->tid, tmp->vmid, tmp->pgid, tmp->ppid, tmp->tgid, tmp->in_vm);
- }
- unlock(thread_list_lock);
- }
- struct shim_thread * __lookup_thread (IDTYPE tid)
- {
- struct shim_thread * tmp;
- listp_for_each_entry(tmp, &thread_list, list) {
- if (tmp->tid == tid) {
- get_thread(tmp);
- return tmp;
- }
- }
- return NULL;
- }
- struct shim_thread * lookup_thread (IDTYPE tid)
- {
- lock(thread_list_lock);
- struct shim_thread * thread = __lookup_thread(tid);
- unlock(thread_list_lock);
- return thread;
- }
- struct shim_thread * __get_cur_thread (void)
- {
- return SHIM_THREAD_SELF();
- }
- shim_tcb_t * __get_cur_tcb (void)
- {
- return SHIM_GET_TLS();
- }
- IDTYPE get_pid (void)
- {
- IDTYPE idx;
- while (1) {
- IDTYPE old_idx = tid_alloc_idx;
- IDTYPE max = 0;
- idx = old_idx + 1;
- do {
- if ((idx = allocate_pid(idx, max)))
- break;
- tid_alloc_idx = idx;
- if (!idx) {
- if (max == old_idx)
- break;
- max = old_idx;
- }
- } while (idx != tid_alloc_idx);
- if (idx != tid_alloc_idx)
- break;
- if (ipc_pid_lease_send(NULL) < 0)
- return 0;
- }
- tid_alloc_idx = idx;
- return idx;
- }
- static IDTYPE get_internal_pid (void)
- {
- lock(thread_list_lock);
- internal_tid_alloc_idx++;
- IDTYPE idx = internal_tid_alloc_idx;
- unlock(thread_list_lock);
- return idx;
- }
- struct shim_thread * alloc_new_thread (void)
- {
- struct shim_thread * thread = malloc(sizeof(struct shim_thread));
- if (!thread)
- return NULL;
- memset(thread, 0, sizeof(struct shim_thread));
- REF_SET(thread->ref_count, 1);
- INIT_LISTP(&thread->children);
- INIT_LIST_HEAD(thread, siblings);
- INIT_LISTP(&thread->exited_children);
- INIT_LIST_HEAD(thread, list);
- return thread;
- }
- struct shim_thread * get_new_thread (IDTYPE new_tid)
- {
- if (!new_tid) {
- new_tid = get_pid();
- assert(new_tid);
- }
- struct shim_thread * thread = alloc_new_thread();
- if (!thread)
- return NULL;
- struct shim_thread * cur_thread = get_cur_thread();
- thread->tid = new_tid;
- if (cur_thread) {
- /* The newly created thread will be in the same thread group
- (process group as well) with its parent */
- thread->pgid = cur_thread->pgid;
- thread->ppid = cur_thread->tgid;
- thread->tgid = cur_thread->tgid;
- thread->uid = cur_thread->uid;
- thread->gid = cur_thread->gid;
- thread->euid = cur_thread->euid;
- thread->egid = cur_thread->egid;
- thread->parent = cur_thread;
- thread->stack = cur_thread->stack;
- thread->stack_top = cur_thread->stack_top;
- thread->stack_red = cur_thread->stack_red;
- thread->cwd = cur_thread->cwd;
- thread->root = cur_thread->root;
- thread->umask = cur_thread->umask;
- thread->exec = cur_thread->exec;
- get_handle(cur_thread->exec);
- for (int i = 0 ; i < NUM_SIGS ; i++) {
- if (!cur_thread->signal_handles[i].action)
- continue;
- thread->signal_handles[i].action =
- remalloc(cur_thread->signal_handles[i].action,
- sizeof(struct shim_signal_handle));
- }
- memcpy(&thread->signal_mask, &cur_thread->signal_mask,
- sizeof(sigset_t));
- get_dentry(cur_thread->cwd);
- get_dentry(cur_thread->root);
- struct shim_handle_map * map = get_cur_handle_map(cur_thread);
- assert(map);
- set_handle_map(thread, map);
- } else {
- /* default pid and pgid equals to tid */
- thread->ppid = thread->pgid = thread->tgid = new_tid;
- /* This case should fall back to the global root of the file system.
- */
- path_lookupat(NULL, "/", 0, &thread->root, NULL);
- char dir_cfg[CONFIG_MAX];
- if (root_config &&
- get_config(root_config, "fs.start_dir", dir_cfg, CONFIG_MAX) > 0) {
- path_lookupat(NULL, dir_cfg, 0, &thread->cwd, NULL);
- } else if (thread->root) {
- get_dentry(thread->root);
- thread->cwd = thread->root;
- }
- }
- thread->signal_logs = malloc(sizeof(struct shim_signal_log) *
- NUM_SIGS);
- thread->vmid = cur_process.vmid;
- create_lock(thread->lock);
- thread->scheduler_event = DkNotificationEventCreate(PAL_TRUE);
- thread->exit_event = DkNotificationEventCreate(PAL_FALSE);
- thread->child_exit_event = DkNotificationEventCreate(PAL_FALSE);
- return thread;
- }
- struct shim_thread * get_new_internal_thread (void)
- {
- IDTYPE new_tid = get_internal_pid();
- assert(new_tid);
- struct shim_thread * thread = alloc_new_thread();
- if (!thread)
- return NULL;
- thread->vmid = cur_process.vmid;
- thread->tid = new_tid;
- thread->in_vm = thread->is_alive = true;
- create_lock(thread->lock);
- thread->exit_event = DkNotificationEventCreate(PAL_FALSE);
- return thread;
- }
- struct shim_simple_thread * __lookup_simple_thread (IDTYPE tid)
- {
- struct shim_simple_thread * tmp;
- listp_for_each_entry(tmp, &simple_thread_list, list) {
- if (tmp->tid == tid) {
- get_simple_thread(tmp);
- return tmp;
- }
- }
- return NULL;
- }
- struct shim_simple_thread * lookup_simple_thread (IDTYPE tid)
- {
- lock(thread_list_lock);
- struct shim_simple_thread * thread = __lookup_simple_thread(tid);
- unlock(thread_list_lock);
- return thread;
- }
- struct shim_simple_thread * get_new_simple_thread (void)
- {
- struct shim_simple_thread * thread =
- malloc(sizeof(struct shim_simple_thread));
- if (!thread)
- return NULL;
- memset(thread, 0, sizeof(struct shim_simple_thread));
- INIT_LIST_HEAD(thread, list);
- create_lock(thread->lock);
- thread->exit_event = DkNotificationEventCreate(PAL_FALSE);
- return thread;
- }
- void get_thread (struct shim_thread * thread)
- {
- #ifdef DEBUG_REF
- int ref_count = REF_INC(thread->ref_count);
- debug("get_thread %p(%d) (ref_count = %d)\n", thread, thread->tid,
- ref_count);
- #else
- REF_INC(thread->ref_count);
- #endif
- }
- void put_thread (struct shim_thread * thread)
- {
- int ref_count = REF_DEC(thread->ref_count);
- #ifdef DEBUG_REF
- debug("put thread %p(%d) (ref_count = %d)\n", thread, thread->tid,
- ref_count);
- #endif
- if (!ref_count) {
- if (thread->exec)
- put_handle(thread->exec);
- if (!IS_INTERNAL(thread))
- release_pid(thread->tid);
- if (thread->pal_handle &&
- thread->pal_handle != PAL_CB(first_thread))
- DkObjectClose(thread->pal_handle);
- if (thread->scheduler_event)
- DkObjectClose(thread->scheduler_event);
- if (thread->exit_event)
- DkObjectClose(thread->exit_event);
- if (thread->child_exit_event)
- DkObjectClose(thread->child_exit_event);
- destroy_lock(thread->lock);
- if (MEMORY_MIGRATED(thread))
- memset(thread, 0, sizeof(struct shim_thread));
- else
- free(thread);
- }
- }
- void get_simple_thread (struct shim_simple_thread * thread)
- {
- REF_INC(thread->ref_count);
- }
- void put_simple_thread (struct shim_simple_thread * thread)
- {
- int ref_count = REF_DEC(thread->ref_count);
- if (!ref_count) {
- /* Simple threads always live on the simple thread list */
- listp_del(thread, &simple_thread_list, list);
- if (thread->exit_event)
- DkObjectClose(thread->exit_event);
- destroy_lock(thread->lock);
- free(thread);
- }
- }
- void set_as_child (struct shim_thread * parent,
- struct shim_thread * child)
- {
- if (!parent)
- parent = get_cur_thread();
- get_thread(parent);
- get_thread(child);
- lock(child->lock);
- child->ppid = parent->tid;
- child->parent = parent;
- lock(parent->lock);
- listp_add_tail(child, &parent->children, siblings);
- unlock(parent->lock);
- unlock(child->lock);
- }
- void add_thread (struct shim_thread * thread)
- {
- if (IS_INTERNAL(thread) || !list_empty(thread, list))
- return;
- struct shim_thread * tmp, * prev = NULL;
- lock(thread_list_lock);
- /* keep it sorted */
- listp_for_each_entry_reverse(tmp, &thread_list, list) {
- if (tmp->tid == thread->tid) {
- unlock(thread_list_lock);
- return;
- }
- if (tmp->tid < thread->tid) {
- prev = tmp;
- break;
- }
- }
- get_thread(thread);
- listp_add_after(thread, prev, &thread_list, list);
- unlock(thread_list_lock);
- }
- void del_thread (struct shim_thread * thread)
- {
- debug("del_thread(%p, %d, %d)\n", thread, thread ? thread->tid : -1,
- thread->ref_count);
- if (IS_INTERNAL(thread) || list_empty(thread, list)) {
- debug("del_thread: internal\n");
- return;
- }
- lock(thread_list_lock);
- /* thread->list goes on the thread_list */
- listp_del_init(thread, &thread_list, list);
- unlock(thread_list_lock);
- put_thread(thread);
- }
- void add_simple_thread (struct shim_simple_thread * thread)
- {
- if (!list_empty(thread, list))
- return;
- struct shim_simple_thread * tmp, * prev = NULL;
- lock(thread_list_lock);
- /* keep it sorted */
- listp_for_each_entry_reverse(tmp, &simple_thread_list, list) {
- if (tmp->tid == thread->tid) {
- unlock(thread_list_lock);
- return;
- }
- if (tmp->tid < thread->tid) {
- prev = tmp;
- break;
- }
- }
- get_simple_thread(thread);
- listp_add_after(thread, prev, &simple_thread_list, list);
- unlock(thread_list_lock);
- }
- void del_simple_thread (struct shim_simple_thread * thread)
- {
- if (list_empty(thread, list))
- return;
- lock(thread_list_lock);
- listp_del_init(thread, &simple_thread_list, list);
- unlock(thread_list_lock);
- put_simple_thread(thread);
- }
- int check_last_thread (struct shim_thread * self)
- {
- struct shim_thread * tmp;
- lock(thread_list_lock);
- /* find out if there is any thread that is
- 1) no current thread 2) in current vm
- 3) still alive */
- listp_for_each_entry(tmp, &thread_list, list) {
- if (tmp->tid &&
- (!self || tmp->tid != self->tid) && tmp->in_vm && tmp->is_alive) {
- debug("check_last_thread: thread %d is alive\n", tmp->tid);
- unlock(thread_list_lock);
- return tmp->tid;
- }
- }
- debug("this is the only thread\n", self->tid);
- unlock(thread_list_lock);
- return 0;
- }
- int walk_thread_list (int (*callback) (struct shim_thread *, void *, bool *),
- void * arg, bool may_write)
- {
- struct shim_thread * tmp, * n;
- bool srched = false;
- int ret;
- IDTYPE min_tid = 0;
- relock:
- lock(thread_list_lock);
- debug("walk_thread_list(callback=%p)\n", callback);
- listp_for_each_entry_safe(tmp, n, &thread_list, list) {
- if (tmp->tid <= min_tid)
- continue;
- bool unlocked = false;
- ret = (*callback) (tmp, arg, &unlocked);
- if (ret < 0 && ret != -ESRCH) {
- if (unlocked)
- goto out;
- else
- goto out_locked;
- }
- if (ret > 0)
- srched = true;
- if (unlocked) {
- min_tid = tmp->tid;
- goto relock;
- }
- }
- ret = srched ? 0 : -ESRCH;
- out_locked:
- unlock(thread_list_lock);
- out:
- return ret;
- }
- int walk_simple_thread_list (int (*callback) (struct shim_simple_thread *,
- void *, bool *),
- void * arg, bool may_write)
- {
- struct shim_simple_thread * tmp, * n;
- bool srched = false;
- int ret;
- IDTYPE min_tid = 0;
- relock:
- lock(thread_list_lock);
- listp_for_each_entry_safe(tmp, n, &simple_thread_list, list) {
- if (tmp->tid <= min_tid)
- continue;
- bool unlocked = false;
- ret = (*callback) (tmp, arg, &unlocked);
- if (ret < 0 && ret != -ESRCH) {
- if (unlocked)
- goto out;
- else
- goto out_locked;
- }
- if (ret > 0)
- srched = true;
- if (unlocked) {
- min_tid = tmp->tid;
- goto relock;
- }
- }
- ret = srched ? 0 : -ESRCH;
- out_locked:
- unlock(thread_list_lock);
- out:
- return ret;
- }
- void switch_dummy_thread (struct shim_thread * thread)
- {
- struct shim_thread * real_thread = thread->dummy;
- IDTYPE child = thread->tid;
- assert(thread->frameptr);
- assert(real_thread->stack);
- assert(real_thread->stack_top > real_thread->stack);
- memcpy(thread->frameptr, real_thread->stack,
- real_thread->stack_top - real_thread->stack);
- real_thread->stack = thread->stack;
- real_thread->stack_top = thread->stack_top;
- real_thread->frameptr = thread->frameptr;
- DkSegmentRegister(PAL_SEGMENT_FS, real_thread->tcb);
- set_cur_thread(real_thread);
- debug("set tcb to %p\n", real_thread->tcb);
- debug("jump to the stack %p\n", real_thread->frameptr);
- debug("shim_vfork success (returning %d)\n", child);
- /* jump onto old stack
- we actually pop rbp as rsp, and later we will call 'ret' */
- asm volatile("movq %0, %%rbp\r\n"
- "leaveq\r\n"
- "retq\r\n" :
- : "g"(real_thread->frameptr),
- "a"(child)
- : "memory");
- }
- BEGIN_CP_FUNC(thread)
- {
- assert(size == sizeof(struct shim_thread));
- struct shim_thread * thread = (struct shim_thread *) obj;
- struct shim_thread * new_thread = NULL;
- ptr_t off = GET_FROM_CP_MAP(obj);
- if (!off) {
- off = ADD_CP_OFFSET(sizeof(struct shim_thread));
- ADD_TO_CP_MAP(obj, off);
- new_thread = (struct shim_thread *) (base + off);
- memcpy(new_thread, thread, sizeof(struct shim_thread));
- INIT_LISTP(&new_thread->children);
- INIT_LIST_HEAD(new_thread, siblings);
- INIT_LISTP(&new_thread->exited_children);
- INIT_LIST_HEAD(new_thread, list);
- new_thread->in_vm = false;
- new_thread->parent = NULL;
- new_thread->dummy = NULL;
- new_thread->handle_map = NULL;
- new_thread->root = NULL;
- new_thread->cwd = NULL;
- new_thread->signal_logs = NULL;
- new_thread->robust_list = NULL;
- REF_SET(new_thread->ref_count, 0);
- for (int i = 0 ; i < NUM_SIGS ; i++)
- if (thread->signal_handles[i].action) {
- ptr_t soff = ADD_CP_OFFSET(sizeof(struct __kernel_sigaction));
- new_thread->signal_handles[i].action
- = (struct __kernel_sigaction *) (base + soff);
- memcpy(new_thread->signal_handles[i].action,
- thread->signal_handles[i].action,
- sizeof(struct __kernel_sigaction));
- }
- DO_CP_MEMBER(handle, thread, new_thread, exec);
- DO_CP_MEMBER(handle_map, thread, new_thread, handle_map);
- DO_CP_MEMBER(dentry, thread, new_thread, root);
- DO_CP_MEMBER(dentry, thread, new_thread, cwd);
- ADD_CP_FUNC_ENTRY(off);
- } else {
- new_thread = (struct shim_thread *) (base + off);
- }
- if (objp)
- *objp = (void *) new_thread;
- }
- END_CP_FUNC(thread)
-
- BEGIN_RS_FUNC(thread)
- {
- struct shim_thread * thread = (void *) (base + GET_CP_FUNC_ENTRY());
- CP_REBASE(thread->children);
- CP_REBASE(thread->siblings);
- CP_REBASE(thread->exited_children);
- CP_REBASE(thread->list);
- CP_REBASE(thread->exec);
- CP_REBASE(thread->handle_map);
- CP_REBASE(thread->root);
- CP_REBASE(thread->cwd);
- CP_REBASE(thread->signal_handles);
- create_lock(thread->lock);
- thread->scheduler_event = DkNotificationEventCreate(PAL_TRUE);
- thread->exit_event = DkNotificationEventCreate(PAL_FALSE);
- thread->child_exit_event = DkNotificationEventCreate(PAL_FALSE);
- add_thread(thread);
- if (thread->exec)
- get_handle(thread->exec);
- if (thread->handle_map)
- get_handle_map(thread->handle_map);
- if (thread->root)
- get_dentry(thread->root);
- if (thread->cwd)
- get_dentry(thread->cwd);
- DEBUG_RS("tid=%d,tgid=%d,parent=%d,stack=%p,frameptr=%p,tcb=%p",
- thread->tid, thread->tgid,
- thread->parent ? thread->parent->tid : thread->tid,
- thread->stack, thread->frameptr, thread->tcb);
- }
- END_RS_FUNC(thread)
- BEGIN_CP_FUNC(running_thread)
- {
- assert(size == sizeof(struct shim_thread));
- struct shim_thread * thread = (struct shim_thread *) obj;
- struct shim_thread * new_thread = NULL;
- DO_CP(thread, thread, &new_thread);
- ADD_CP_FUNC_ENTRY((ptr_t) new_thread - base);
- if (!thread->user_tcb && thread->tcb) {
- ptr_t toff = ADD_CP_OFFSET(sizeof(__libc_tcb_t));
- new_thread->tcb = (void *) (base + toff);
- memcpy(new_thread->tcb, thread->tcb, sizeof(__libc_tcb_t));
- }
- }
- END_CP_FUNC(running_thread)
-
- int resume_wrapper (void * param)
- {
- struct shim_thread * thread = (struct shim_thread *) param;
- assert(thread);
- __libc_tcb_t * libc_tcb = (__libc_tcb_t *) thread->tcb;
- assert(libc_tcb);
- shim_tcb_t * tcb = &libc_tcb->shim_tcb;
- assert(tcb->context.sp);
- thread->in_vm = thread->is_alive = true;
- allocate_tls(libc_tcb, thread->user_tcb, thread);
- debug_setbuf(tcb, true);
- debug("set tcb to %p\n", libc_tcb);
- DkObjectsWaitAny(1, &thread_start_event, NO_TIMEOUT);
- restore_context(&tcb->context);
- return 0;
- }
- BEGIN_RS_FUNC(running_thread)
- {
- struct shim_thread * thread = (void *) (base + GET_CP_FUNC_ENTRY());
- struct shim_thread * cur_thread = get_cur_thread();
- thread->in_vm = true;
- if (!thread->user_tcb)
- CP_REBASE(thread->tcb);
- thread->signal_logs = malloc(sizeof(struct shim_signal_log) *
- NUM_SIGS);
- if (cur_thread) {
- PAL_HANDLE handle = DkThreadCreate(resume_wrapper, thread, 0);
- if (!thread)
- return -PAL_ERRNO;
- thread->pal_handle = handle;
- } else {
- __libc_tcb_t * libc_tcb = (__libc_tcb_t *) thread->tcb;
- if (libc_tcb) {
- shim_tcb_t * tcb = &libc_tcb->shim_tcb;
- assert(tcb->context.sp);
- tcb->debug_buf = SHIM_GET_TLS()->debug_buf;
- allocate_tls(libc_tcb, thread->user_tcb, thread);
- debug_setprefix(tcb);
- debug("after resume, set tcb to %p\n", libc_tcb);
- } else {
- set_cur_thread(thread);
- }
- thread->in_vm = thread->is_alive = true;
- thread->pal_handle = PAL_CB(first_thread);
- }
-
- DEBUG_RS("tid=%d", thread->tid);
- }
- END_RS_FUNC(running_thread)
- BEGIN_CP_FUNC(all_running_threads)
- {
- struct shim_thread * thread;
- lock(thread_list_lock);
- listp_for_each_entry(thread, &thread_list, list) {
- if (!thread->in_vm || !thread->is_alive)
- continue;
- DO_CP(running_thread, thread, NULL);
- DO_CP(handle_map, thread->handle_map, NULL);
- }
- unlock(thread_list_lock);
- }
- END_CP_FUNC_NO_RS(all_running_threads)
|