mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-03-27 11:30:36 +00:00
Disable VOSF on OSX, SIGSEGV recovery is too slow.
This commit is contained in:
parent
342db1fb26
commit
1c8f60e63a
@ -642,6 +642,14 @@ dnl Can we do Video on SEGV Signals ?
|
||||
CAN_VOSF=no
|
||||
if [[ -n "$sigsegv_recovery" ]]; then
|
||||
CAN_VOSF=yes
|
||||
case $target_os in
|
||||
darwin*)
|
||||
dnl Signal handlers in darwin are way too slow since the whole
|
||||
dnl machine state (GPRs, FPRs, VRs) is forcibly saved.
|
||||
dnl In other words, VOSF is slower than static window refreshes.
|
||||
CAN_VOSF=no
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
dnl Enable VOSF screen updates with this feature is requested and feasible
|
||||
|
Loading…
x
Reference in New Issue
Block a user