Differences From Artifact [97cad1fce3]:
- File
src/thread.m
— part of check-in
[5358e9ea6a]
at
2019-08-01 20:14:35
on branch trunk
— Split threading.[hm] into multiple files
This allows the runtime to only link against the parts it needs, without
pulling in unnecessary parts like thread spawning, TLS and conditions. (user: js, size: 771) [annotate] [blame] [check-ins using]
To Artifact [4db82960e0]:
- File src/thread.m — part of check-in [da383f4f03] at 2019-08-03 18:13:50 on branch trunk — Add threads for AmigaOS (user: js, size: 824) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
19 20 21 22 23 24 25 26 | #import "thread.h" #if defined(OF_HAVE_PTHREADS) # include "thread_pthread.m" #elif defined(OF_WINDOWS) # include "thread_winapi.m" #endif | > > | 19 20 21 22 23 24 25 26 27 28 | #import "thread.h" #if defined(OF_HAVE_PTHREADS) # include "thread_pthread.m" #elif defined(OF_WINDOWS) # include "thread_winapi.m" #elif defined(OF_AMIGAOS) # include "thread_amiga.m" #endif |