Skip to content
This repository was archived by the owner on Oct 31, 2020. It is now read-only.

Commit f0ebf18

Browse files
committed
don't use pthread_exit. switch to primorial thread and return normally
1 parent 930a93c commit f0ebf18

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

examples/threaded.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,5 @@ int main(int argc, char *argv[]) {
5454
}
5555

5656
st_thread_exit(NULL);
57-
printf("does not happen\n");
58-
59-
return 1;
57+
return 0;
6058
}

sched.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,11 @@ void *_st_idle_thread_start(void *arg)
239239
_ST_SWITCH_CONTEXT(me);
240240
}
241241

242+
_ST_RESTORE_CONTEXT(_st_this_vp.primorial_thread);
242243
/* No more threads */
243244
free(_st_this_vp.primorial_thread);
244245
/* Free resources in use by event system */
245246
(*_st_eventsys->free)();
246-
247-
pthread_exit(NULL);
248-
249-
/* NOTREACHED */
250247
return NULL;
251248
}
252249

@@ -288,10 +285,10 @@ void st_thread_exit(void *retval)
288285
_st_stack_free(thread->stack);
289286
}
290287

291-
292288
/* Find another thread to run */
293289
_ST_SWITCH_CONTEXT(thread);
294-
/* Not going to land here */
290+
free(thread);
291+
(*_st_eventsys->free)();
295292
}
296293

297294

0 commit comments

Comments
 (0)