mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
parent
ea294fff0c
commit
8264b63e0b
@ -35,56 +35,63 @@ Thread_capability Cpu_session_component::create_thread(Capability<Pd_session> pd
|
|||||||
|
|
||||||
withdraw(Ram_quota{_utcb_quota_size()});
|
withdraw(Ram_quota{_utcb_quota_size()});
|
||||||
|
|
||||||
Cpu_thread_component *thread = 0;
|
try {
|
||||||
|
|
||||||
if (weight.value == 0) {
|
Cpu_thread_component *thread = 0;
|
||||||
warning("Thread ", name, ": Bad weight 0, using default weight instead.");
|
|
||||||
weight = Weight();
|
|
||||||
}
|
|
||||||
if (weight.value > QUOTA_LIMIT) {
|
|
||||||
warning("Thread ", name, ": Oversized weight ", weight.value, ", using limit instead.");
|
|
||||||
weight = Weight(QUOTA_LIMIT);
|
|
||||||
}
|
|
||||||
|
|
||||||
Mutex::Guard thread_list_lock_guard(_thread_list_lock);
|
if (weight.value == 0) {
|
||||||
|
warning("Thread ", name, ": Bad weight 0, using default weight instead.");
|
||||||
/*
|
weight = Weight();
|
||||||
* Create thread associated with its protection domain
|
}
|
||||||
*/
|
if (weight.value > QUOTA_LIMIT) {
|
||||||
auto create_thread_lambda = [&] (Pd_session_component *pd) {
|
warning("Thread ", name, ": Oversized weight ", weight.value, ", using limit instead.");
|
||||||
if (!pd) {
|
weight = Weight(QUOTA_LIMIT);
|
||||||
error("create_thread: invalid PD argument");
|
|
||||||
throw Thread_creation_failed();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Mutex::Guard slab_lock_guard(_thread_alloc_lock);
|
Mutex::Guard thread_list_lock_guard(_thread_list_lock);
|
||||||
thread = new (&_thread_alloc)
|
|
||||||
Cpu_thread_component(
|
/*
|
||||||
cap(), _thread_ep, _pager_ep, *pd, _trace_control_area,
|
* Create thread associated with its protection domain
|
||||||
_trace_sources, weight, _weight_to_quota(weight.value),
|
*/
|
||||||
_thread_affinity(affinity), _label, thread_name,
|
auto create_thread_lambda = [&] (Pd_session_component *pd) {
|
||||||
_priority, utcb);
|
if (!pd) {
|
||||||
};
|
error("create_thread: invalid PD argument");
|
||||||
|
throw Thread_creation_failed();
|
||||||
|
}
|
||||||
|
|
||||||
|
Mutex::Guard slab_lock_guard(_thread_alloc_lock);
|
||||||
|
thread = new (&_thread_alloc)
|
||||||
|
Cpu_thread_component(
|
||||||
|
cap(), _thread_ep, _pager_ep, *pd, _trace_control_area,
|
||||||
|
_trace_sources, weight, _weight_to_quota(weight.value),
|
||||||
|
_thread_affinity(affinity), _label, thread_name,
|
||||||
|
_priority, utcb);
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
_incr_weight(weight.value);
|
||||||
|
_thread_ep.apply(pd_cap, create_thread_lambda);
|
||||||
|
} catch (Allocator::Out_of_memory) {
|
||||||
|
_decr_weight(weight.value);
|
||||||
|
throw Out_of_ram();
|
||||||
|
} catch (Native_capability::Reference_count_overflow) {
|
||||||
|
_decr_weight(weight.value);
|
||||||
|
throw Thread_creation_failed();
|
||||||
|
} catch (...) {
|
||||||
|
_decr_weight(weight.value);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
|
thread->session_exception_sigh(_exception_sigh);
|
||||||
|
|
||||||
|
_thread_list.insert(thread);
|
||||||
|
|
||||||
|
return thread->cap();
|
||||||
|
|
||||||
try {
|
|
||||||
_incr_weight(weight.value);
|
|
||||||
_thread_ep.apply(pd_cap, create_thread_lambda);
|
|
||||||
} catch (Allocator::Out_of_memory) {
|
|
||||||
_decr_weight(weight.value);
|
|
||||||
throw Out_of_ram();
|
|
||||||
} catch (Native_capability::Reference_count_overflow) {
|
|
||||||
_decr_weight(weight.value);
|
|
||||||
throw Thread_creation_failed();
|
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
_decr_weight(weight.value);
|
replenish(Ram_quota{_utcb_quota_size()});
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
thread->session_exception_sigh(_exception_sigh);
|
|
||||||
|
|
||||||
_thread_list.insert(thread);
|
|
||||||
|
|
||||||
return thread->cap();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user