Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Jul 6, 2019
1 parent 74e0145 commit b3eb9d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/event_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ bool event_loop_init(struct event_loop *event_loop)
{
queue_init(&event_loop->queue);
event_loop->is_running = 0;
event_loop->semaphore = sem_open("event_loop_semaphore", O_CREAT, 0600, 0);
sem_unlink("event_loop_semaphore");
event_loop->semaphore = sem_open("yabai_event_loop_semaphore", O_CREAT, 0600, 0);
sem_unlink("yabai_event_loop_semaphore");
return event_loop->semaphore != SEM_FAILED;
}

Expand Down

0 comments on commit b3eb9d1

Please # to comment.