Skip to content

Commit

Permalink
WIP fix mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ko1 committed Oct 10, 2023
1 parent ef78536 commit 7fc45c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion thread_none.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ thread_sched_yield(struct rb_thread_sched *sched, rb_thread_t *th)
}

void
rb_thread_sched_init(struct rb_thread_sched *sched)
rb_thread_sched_init(struct rb_thread_sched *sched, bool atfork)
{
}

Expand Down
2 changes: 1 addition & 1 deletion thread_win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ thread_sched_yield(struct rb_thread_sched *sched, rb_thread_t *th)
}

void
rb_thread_sched_init(struct rb_thread_sched *sched)
rb_thread_sched_init(struct rb_thread_sched *sched, bool atfork)
{
if (GVL_DEBUG) fprintf(stderr, "sched init\n");
sched->lock = w32_mutex_create();
Expand Down

0 comments on commit 7fc45c2

Please sign in to comment.