Skip to content
Snippets Groups Projects
Commit bfc32b8d authored by Stephen R. van den Berg's avatar Stephen R. van den Berg
Browse files

Make Thread.THREAD_ABORTED visible.

parent b9c6e514
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,7 @@ optional constant all_threads = predef::all_threads; ...@@ -26,6 +26,7 @@ optional constant all_threads = predef::all_threads;
constant THREAD_NOT_STARTED = __builtin.THREAD_NOT_STARTED; constant THREAD_NOT_STARTED = __builtin.THREAD_NOT_STARTED;
constant THREAD_RUNNING = __builtin.THREAD_RUNNING; constant THREAD_RUNNING = __builtin.THREAD_RUNNING;
constant THREAD_EXITED = __builtin.THREAD_EXITED; constant THREAD_EXITED = __builtin.THREAD_EXITED;
constant THREAD_ABORTED = __builtin.THREAD_ABORTED;
private local void unlock(MutexKey key) private local void unlock(MutexKey key)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment