Differences From Artifact [81cc6ed979]:
- File src/autorelease.m — part of check-in [3b97fc3cd9] at 2014-01-04 00:24:08 on branch trunk — Update copyright. (user: js, size: 3246) [annotate] [blame] [check-ins using]
To Artifact [2dc209441b]:
- File
src/autorelease.m
— part of check-in
[c701e89b83]
at
2014-05-14 20:19:05
on branch trunk
— Use thread_local instead of __thread
If threads.h exists, the thread_local from there is used. If it doesn't,
but _Thread_local exists, it's defined to that. As a last fallback, it
is defined to __thread. (user: js, size: 3258) [annotate] [blame] [check-ins using]
| ︙ | |||
26 27 28 29 30 31 32 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - - - + + + | # import "threading.h" #endif #import "macros.h" #import "autorelease.h" #if defined(OF_HAVE_COMPILER_TLS) |
| ︙ |