Changeset b67fe85
- Timestamp:
- Aug 30, 2022, 10:16:21 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 38a238d, f13906f9
- Parents:
- 4858a88
- Location:
- tests/concurrent
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/clib.c
r4858a88 rb67fe85 8 8 } 9 9 10 thread_local struct drand48_data buffer = { 0 };10 _Thread_local struct drand48_data buffer = { 0 }; 11 11 int myrand() { 12 12 long int result; -
tests/concurrent/clib_tls.c
r4858a88 rb67fe85 14 14 15 15 16 thread_local int checkval = 0xBAADF00D;16 _Thread_local int checkval = 0xBAADF00D; 17 17 18 18 void init(void * ) { -
tests/concurrent/park/contention.cfa
r4858a88 rb67fe85 2 2 #include <thread.hfa> 3 3 4 thread_local drand48_data buffer = { 0 };4 _Thread_local drand48_data buffer = { 0 }; 5 5 int myrand() { 6 6 long int result;
Note: See TracChangeset
for help on using the changeset viewer.