Skip to content

Commit f9ca1fe

Browse files
committed
mailbox: drop inline from mailbox_enqueue_message
Signed-off-by: Paul Guyot <pguyot@kallisys.net>
1 parent f7594af commit f9ca1fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libAtomVM/mailbox.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ size_t mailbox_size(Mailbox *mbox)
213213
// Messages are enqueued using atomics (or emulation) unless this is a no-smp
214214
// build with no support for driver tasks
215215
#if !defined(AVM_NO_SMP) || defined(AVM_TASK_DRIVER_ENABLED)
216-
inline void mailbox_enqueue_message(Context *c, MailboxMessage *m)
216+
void mailbox_enqueue_message(Context *c, MailboxMessage *m)
217217
{
218218
// Append message at the beginning of outer_first.
219219
MailboxMessage *current_first = NULL;

0 commit comments

Comments
 (0)