Skip to content
Snippets Groups Projects
Commit 57e4a176 authored by Blinningjr's avatar Blinningjr
Browse files

Finished timing_resources

parent 2b8e24e5
Branches
No related tags found
No related merge requests found
......@@ -321,4 +321,10 @@ const APP: () = {
// (Hint, what possible optimization can safely be applied by RTIC + Rust + LLVM.)
//
// [Your answer here]
// TODO
// From the exercises I have learnt that the RTIC way of handling concurrency is much faster
// because it doesn't have to use locks everywhere. And the lock are much more efficient then the
// ones used in C. RTIC is also much more efficient regarding context switching because it doesn't do it as often.
// Rust provides safety for pointers which C doesn't. This means that it is easier to write shorter
// code in rust, which also can be easily more optimized compared to C. The optimizer for C can
// also be much more aggressive resulting in code that doesn't work as intended.
//
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment