Skip to content
Snippets Groups Projects
Commit 4ea54827 authored by Federico's avatar Federico
Browse files

Add inline and fix compiling on non-SMP hardware

parent c5462e41
Branches
No related tags found
No related merge requests found
......@@ -230,13 +230,13 @@ inline void fastEnableInterrupts() noexcept;
*/
bool areInterruptsEnabled() noexcept;
void globalInterruptLock() noexcept;
void globalInterruptUnlock() noexcept;
inline void globalInterruptLock() noexcept;
inline void globalInterruptUnlock() noexcept;
#ifndef WITH_SMP
void globalInterruptLock() {}
void globalInterruptUnlock() {}
inline void globalInterruptLock() noexcept {}
inline void globalInterruptUnlock() noexcept {}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment