Split initialisation into own function
this unbreaks the samples
This commit is contained in:
parent
9048c9700b
commit
31f2d9c602
10
coio.cpp
10
coio.cpp
|
@ -82,11 +82,17 @@ _process_events()
|
|||
}
|
||||
}
|
||||
|
||||
int
|
||||
coio_main()
|
||||
void
|
||||
coio_init()
|
||||
{
|
||||
/* initialize empty ctx for scheduler */
|
||||
coio_sched_ctx = co_active();
|
||||
}
|
||||
|
||||
int
|
||||
coio_main()
|
||||
{
|
||||
coio_init();
|
||||
|
||||
/* scheduler mainloop */
|
||||
for (;;) {
|
||||
|
|
2
coio.h
2
coio.h
|
@ -25,6 +25,8 @@ typedef unsigned long long uvlong;
|
|||
|
||||
extern CoioTask* coio_current;
|
||||
|
||||
void
|
||||
coio_init();
|
||||
int
|
||||
coio_main();
|
||||
int
|
||||
|
|
|
@ -137,7 +137,7 @@ coio_source_finalize(GSource* source)
|
|||
GSource*
|
||||
coio_gsource_create()
|
||||
{
|
||||
coio_sched_ctx = co_active();
|
||||
coio_init();
|
||||
|
||||
static GSourceFuncs funcs = { coio_source_prepare,
|
||||
coio_source_check,
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "coio.h"
|
||||
|
||||
void
|
||||
_t1(void* arg)
|
||||
_t1()
|
||||
{
|
||||
printf("going to sleep 1000ms (1s)\n");
|
||||
coio_delay(1000);
|
||||
|
@ -30,7 +30,9 @@ main(int argc, char** argv)
|
|||
(void) argc;
|
||||
(void) argv;
|
||||
|
||||
coio_create("t1", _t1, NULL, 0x8000);
|
||||
coio_init();
|
||||
|
||||
coio_create("t1", _t1, 0x8000);
|
||||
|
||||
if (coio_main() < 0) {
|
||||
printf("Deadlocked\n");
|
||||
|
|
Loading…
Reference in a new issue