Skip to content

Commit 2c9ad5c

Browse files
committed
zloop: ensure zsys_init() when creating zloop
If no sockets or actors are used in zloop, `zsys_init()` does not get run and zsys interrupt handler does not get initialized. This means that interrupts will not work correctly in zloop if, for example, only timers are used. `zsys_init()` is safe to call multiple times, so we ensure that it's called when new zloop instance is created.
1 parent 4af175a commit 2c9ad5c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/zloop.c

+2
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,8 @@ s_tickless (zloop_t *self)
313313
zloop_t *
314314
zloop_new (void)
315315
{
316+
zsys_init ();
317+
316318
zloop_t *self = (zloop_t *) zmalloc (sizeof (zloop_t));
317319
assert (self);
318320

0 commit comments

Comments
 (0)