Spaces:
Runtime error
Runtime error
| /* | |
| * Copyright (C) 2016, Red Hat Inc, Alexander Gordeev <agordeev@redhat.com> | |
| * | |
| * This work is licensed under the terms of the GNU LGPL, version 2. | |
| */ | |
| /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */ | |
| static inline void rep_nop(void) | |
| { | |
| asm volatile("rep; nop" ::: "memory"); | |
| } | |
| static inline void cpu_relax(void) | |
| { | |
| rep_nop(); | |
| } | |