Commit 4fda909d by bernhard-gatzhammer

Removed warning in spin init for not returning a value.

EMBB-509
parent 6042e5f8
......@@ -120,6 +120,7 @@ int embb_spin_init(embb_spinlock_t* spinlock) {
// For now, store the initial value. In the future will use atomic init
// function (as soon as available).
embb_atomic_store_int(&spinlock->atomic_spin_variable_, 0);
return EMBB_SUCCESS;
}
int embb_spin_lock(embb_spinlock_t* spinlock) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment