* gendef: Throughout, remove lock from xchgl since it is implied.
(__ZN7_cygtls3popEv): Avoid potential (but probably nonexistent) race when clearing element after pop.
This commit is contained in:
parent
ad6319f01a
commit
3a7c5515b2
|
@ -1,3 +1,9 @@
|
|||
2010-07-18 Christopher Faylor <me+cygwin@cgf.cx>
|
||||
|
||||
* gendef: Throughout, remove lock from xchgl since it is implied.
|
||||
(__ZN7_cygtls3popEv): Avoid potential (but probably nonexistent) race
|
||||
when clearing element after pop.
|
||||
|
||||
2010-07-15 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* wincap.cc (wincap_7): Set needs_count_in_si_lpres2 to false.
|
||||
|
|
|
@ -122,7 +122,7 @@ __sigfe:
|
|||
pushl %edx
|
||||
movl %fs:4,%ebx # location of bottom of stack
|
||||
1: movl \$1,%eax # potential lock value
|
||||
lock xchgl %eax,$tls::stacklock(%ebx) # see if we can grab it
|
||||
xchgl %eax,$tls::stacklock(%ebx) # see if we can grab it
|
||||
movl %eax,$tls::spinning(%ebx) # flag if we are waiting for lock
|
||||
testl %eax,%eax # it will be zero
|
||||
jz 2f # if so
|
||||
|
@ -146,7 +146,7 @@ __sigbe: # return here after cygwin syscall
|
|||
pushl %eax # don't clobber
|
||||
1: movl %fs:4,%ebx # address of bottom of tls
|
||||
movl \$1,%eax # potential lock value
|
||||
lock xchgl %eax,$tls::stacklock(%ebx) # see if we can grab it
|
||||
xchgl %eax,$tls::stacklock(%ebx) # see if we can grab it
|
||||
movl %eax,$tls::spinning(%ebx) # flag if we are waiting for lock
|
||||
testl %eax,%eax # it will be zero
|
||||
jz 2f # if so
|
||||
|
@ -171,7 +171,7 @@ _sigreturn:
|
|||
call _set_process_mask\@4
|
||||
|
||||
1: movl \$1,%eax # potential lock value
|
||||
lock xchgl %eax,$tls::stacklock(%ebx) # see if we can grab it
|
||||
xchgl %eax,$tls::stacklock(%ebx) # see if we can grab it
|
||||
movl %eax,$tls::spinning(%ebx) # flag if we are waiting for lock
|
||||
testl %eax,%eax # it will be zero
|
||||
jz 2f # if so
|
||||
|
@ -237,13 +237,9 @@ _sigdelayed:
|
|||
.global __ZN7_cygtls3popEv
|
||||
__ZN7_cygtls3popEv:
|
||||
1: pushl %ebx
|
||||
pushl %edx # FIXME: needed?
|
||||
movl %eax,%ebx
|
||||
movl \$-4,%edx
|
||||
xadd %edx,$tls::pstackptr(%ebx)
|
||||
xorl %eax,%eax
|
||||
xchgl %eax,-4(%edx)
|
||||
popl %edx # FIXME: needed?
|
||||
movl %eax,%ebx # this
|
||||
movl \$-4,%eax
|
||||
xadd %eax,$tls::pstackptr(%ebx)
|
||||
popl %ebx
|
||||
ret
|
||||
|
||||
|
@ -252,7 +248,7 @@ __ZN7_cygtls4lockEv:
|
|||
pushl %ebx
|
||||
movl %eax,%ebx
|
||||
1: movl \$1,%eax
|
||||
lock xchgl %eax,$tls::pstacklock(%ebx)
|
||||
xchgl %eax,$tls::pstacklock(%ebx)
|
||||
testl %eax,%eax
|
||||
jz 2f
|
||||
call _yield
|
||||
|
@ -275,7 +271,7 @@ stabilize_sig_stack:
|
|||
movl %fs:4,%ebx
|
||||
incl $tls::incyg(%ebx)
|
||||
1: movl \$1,%eax
|
||||
lock xchgl %eax,$tls::stacklock(%ebx)
|
||||
xchgl %eax,$tls::stacklock(%ebx)
|
||||
movl %eax,$tls::spinning(%ebx) # flag if we are waiting for lock
|
||||
testl %eax,%eax
|
||||
jz 2f
|
||||
|
|
Loading…
Reference in New Issue