index
:
delta/bdwgc.git
add-long-weakref
draft-appveyor
draft-travis
fix_tsx_bug
freebsd-ports-devel-boehm-gc
freebsd-ports-devel-boehm-gc-integrate
gc6x-branch
gcc_boehmgc
ios-unified-ts-fix
jtotz-bdwgc-integrate
jtotz_bdwgc
master
mono_libgc
racket_gc
release-7_2
release-7_4
release-7_6
release-8_0
release-8_2
thread-suspend
github.com: ivmai/bdwgc.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
pthread_stop_world.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Workaround 'if condition is the same as the previous one' cppcheck warnings
Ivan Maidanski
2019-01-15
1
-8
/
+8
*
Fix deadlocks in write and suspend handlers if AO test-and-set is emulated
Ivan Maidanski
2018-11-20
1
-10
/
+31
*
Use macro to operate on a flag residing in GC_stop_count
Ivan Maidanski
2018-11-07
1
-10
/
+14
*
Prevent a deadlock in suspend_thread and after process forking
Ivan Maidanski
2018-09-27
1
-5
/
+14
*
Fix concurrent bitmap update in GC_dirty
Ivan Maidanski
2018-09-25
1
-0
/
+21
*
Use THREAD_EQUAL consistently to compare pthread_t values
Ivan Maidanski
2018-04-20
1
-1
/
+1
*
Do not resend the restart signal to threads that are already restarted
Ivan Maidanski
2018-04-05
1
-13
/
+27
*
Replace GC_NO_RETRY_SIGNALS environment variable with GC_RETRY_SIGNALS=0
Ivan Maidanski
2018-04-03
1
-6
/
+10
*
Handle pthread restart signals loss if retry_signals
Ivan Maidanski
2018-04-03
1
-10
/
+21
*
Fix a typo in WARN message of resend_lost_signals
Ivan Maidanski
2018-04-03
1
-1
/
+1
*
Define static resend_lost_signals(), restart_all() in pthread_stop_world
Ivan Maidanski
2018-04-02
1
-101
/
+114
*
Unblock only GC signals in suspend_handler (TSan)
Ivan Maidanski
2018-03-30
1
-2
/
+6
*
Acknowledge thread restart from suspend_handler (NetBSD)
Ivan Maidanski
2018-03-29
1
-42
/
+22
*
Minimize delay between sem_post and sigsuspend in suspend_handler if TSan
Ivan Maidanski
2018-03-29
1
-6
/
+5
*
Explicitly unblock GC signals on GC initialization
Ivan Maidanski
2018-03-23
1
-1
/
+6
*
Wrap remaining extern symbols in .c files into EXTERN_C_BEGIN/END
Ivan Maidanski
2018-03-02
1
-0
/
+4
*
Fix linkage of javaxfc.h symbols for the case of compilation as C++ code
Ivan Maidanski
2018-03-01
1
-0
/
+1
*
Always include gc_atomic_ops.h unless threads are disabled
Ivan Maidanski
2018-02-26
1
-2
/
+0
*
Eliminate C++ warnings about deprecated register keyword (GC source)
Jay Krell
2018-02-22
1
-4
/
+4
*
Initial support of Sony PlayStation Portable 2
Jonathan Chambers
2018-02-01
1
-1
/
+2
*
Initial support of Orbis target
Jonathan Chambers
2018-01-29
1
-1
/
+1
*
Prevent multiple sem_post calls for a thread in suspend_handler
Ivan Maidanski
2017-12-28
1
-7
/
+8
*
Do not call sem_getvalue in stop_world if one thread exists
Ivan Maidanski
2017-12-28
1
-1
/
+1
*
Add assertion for suspend_ack_sem in start_world
Ivan Maidanski
2017-12-28
1
-0
/
+7
*
Allow GC_NETBSD_THREADS_WORKAROUND macro manual definition
Ivan Maidanski
2017-12-28
1
-4
/
+2
*
Fix error code in abort message if sem_wait failed in start_world (NetBSD)
Ivan Maidanski
2017-12-27
1
-4
/
+2
*
Really prevent hang in sem_wait in stop_world if compiled with TSan
Ivan Maidanski
2017-12-12
1
-11
/
+4
*
Add a sanity check that load_acquire and store_release are available
Ivan Maidanski
2017-11-29
1
-0
/
+6
*
Improve comment in store_stack_ptr in pthread_stop_world.c
Ivan Maidanski
2017-11-29
1
-3
/
+3
*
Remove explicit case of TRUE/FALSE to AO_t in suspend/resume_thread
Ivan Maidanski
2017-11-29
1
-2
/
+2
*
Fix lack of barriers to synchronize memory for suspend_handler
Ivan Maidanski
2017-11-24
1
-6
/
+11
*
Eliminate TSan false positive related to stop_info.stack_ptr access
Ivan Maidanski
2017-11-24
1
-17
/
+23
*
Fix data race in last_stop_count access (suspend_handler_inner)
Ivan Maidanski
2017-11-23
1
-8
/
+3
*
Fix data race in GC_suspend/resume_thread
Ivan Maidanski
2017-11-23
1
-11
/
+19
*
Revert 'Workaround TSan false positives in suspend/resume_thread'
Ivan Maidanski
2017-11-23
1
-16
/
+1
*
Workaround TSan false positive in lookup_thread called by suspend_handler
Ivan Maidanski
2017-11-22
1
-5
/
+22
*
Place no_sanitize attributes in a GCC-compliant way
Ivan Maidanski
2017-11-21
1
-5
/
+5
*
Workaround hangs in sigsuspend and sem_wait if compiled with TSan
Ivan Maidanski
2017-11-17
1
-1
/
+18
*
Revert 'Workaround a hang in sigsuspend if compiled with Thread Sanitizer'
Ivan Maidanski
2017-11-17
1
-9
/
+0
*
Workaround a hang in sigsuspend if compiled with Thread Sanitizer
Ivan Maidanski
2017-11-13
1
-0
/
+9
*
Workaround TSan false positives in suspend/resume_thread
Ivan Maidanski
2017-11-13
1
-2
/
+17
*
Workaround Thread Sanitizer (TSan) false positive warnings (partially)
Ivan Maidanski
2017-10-20
1
-1
/
+7
*
Fix deadlock in GC_suspend_thread when thread is rebuilding free list
Ivan Maidanski
2017-07-21
1
-2
/
+14
*
Specify that unused select() result is intentional
Ivan Maidanski
2017-07-20
1
-1
/
+1
*
Fix deadlock in GC_suspend_thread when thread is finished
Ivan Maidanski
2017-07-12
1
-6
/
+6
*
Workaround 'waiting while holding lock' code defect in stop_world (Unix)
Ivan Maidanski
2017-05-18
1
-1
/
+6
*
Workaround 'obsolescent usleep called' cppcheck warning (POSIX)
Ivan Maidanski
2017-03-07
1
-1
/
+13
*
Fix 'size of tv is unknown' error in brief_async_signal_safe_sleep (musl)
Mikael Djurfeldt
2017-03-03
1
-0
/
+2
*
Add AO primitives implementation to GC based on C11 atomic intrinsic
Ivan Maidanski
2017-01-25
1
-1
/
+2
*
Workaround 'value of macro unknown' cppcheck info messages
Ivan Maidanski
2016-10-24
1
-6
/
+6
[next]