From f9ca1fe577a0ec92632d14667cea3a87f5c22f54 Mon Sep 17 00:00:00 2001 From: Paul Guyot Date: Sun, 12 Jul 2026 19:38:51 +0200 Subject: [PATCH] mailbox: drop inline from mailbox_enqueue_message Signed-off-by: Paul Guyot --- src/libAtomVM/mailbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libAtomVM/mailbox.c b/src/libAtomVM/mailbox.c index dea77740b7..defd17a06f 100644 --- a/src/libAtomVM/mailbox.c +++ b/src/libAtomVM/mailbox.c @@ -213,7 +213,7 @@ size_t mailbox_size(Mailbox *mbox) // Messages are enqueued using atomics (or emulation) unless this is a no-smp // build with no support for driver tasks #if !defined(AVM_NO_SMP) || defined(AVM_TASK_DRIVER_ENABLED) -inline void mailbox_enqueue_message(Context *c, MailboxMessage *m) +void mailbox_enqueue_message(Context *c, MailboxMessage *m) { // Append message at the beginning of outer_first. MailboxMessage *current_first = NULL;