Differences From Artifact [1e29dc7f87]:
- File src/threading_winapi.m — part of check-in [cfd374b906] at 2015-01-03 20:57:18 on branch trunk — Update copyright (user: js, size: 3856) [annotate] [blame] [check-ins using]
To Artifact [c4125134ec]:
- File
src/threading_winapi.m
— part of check-in
[ffb39d1df6]
at
2015-03-30 21:33:29
on branch trunk
— Add OF_NO_RETURN_FUNC
OF_NO_RETURN_FUNC is defined when __attribute__((__noreturn__)) is
supported for functions, whereas OF_NO_RETURN is only defined when it is
supported for both functions and methods. (user: js, size: 3861) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
67 68 69 70 71 72 73 | bool of_thread_detach(of_thread_t thread) { /* FIXME */ return true; } | | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | bool of_thread_detach(of_thread_t thread) { /* FIXME */ return true; } void OF_NO_RETURN_FUNC of_thread_exit(void) { ExitThread(0); OF_UNREACHABLE } |
︙ | ︙ |