Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libAtomVM/mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading