]> Nishi Git Mirror - gwion.git/commitdiff
:art: use next_bbq_pos (fix)
authorJérémie Astor <fennecdjay@gmail.com>
Thu, 1 Jul 2021 15:57:27 +0000 (17:57 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Thu, 1 Jul 2021 15:57:27 +0000 (17:57 +0200)
include/vm.h
src/vm/vm.c

index 471f48222b4712c2385f372f39d649c51c284faa..a21b68ecd6c33c77a774b18760442ba2470c3345 100644 (file)
@@ -140,5 +140,5 @@ ANN void     handle(VM_Shred shred, const m_str effect);
 
 #define BBQ_POS_MAX 16777216
 
-void next_bbq_pos(const VM *vm);
+ANN void next_bbq_pos(const VM *vm);
 #endif
index 7ec9cbac5204708aef711120760430fac860bca5..7c5e68464f7f560663a3193aa4bd1ed48dce0461 100644 (file)
@@ -1202,7 +1202,7 @@ vm_run(const VM *vm) { // lgtm [cpp/use-of-goto]
   }
 }
 
-static inline next_bbq_pos(const VM *vm) {
+ANN void next_bbq_pos(const VM *vm) {
   Driver *const di = vm->bbq;
   if(++di->pos == 16777216-1) {
     for(m_uint i = 0; i < vector_size(&vm->shreduler->shreds); i++) {