diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-12-13 11:51:54 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-12-13 11:51:54 -0800 |
commit | 5a9e37df223edefa76bfbdd1baee66e1f180f5e2 (patch) | |
tree | 5bf2efb8c6516faeada328d2edef1eae2614c886 /nptl/sysdeps/unix | |
parent | 75956694f3f80a1c32389c95069641f52c236c8b (diff) | |
download | glibc-5a9e37df223edefa76bfbdd1baee66e1f180f5e2.tar glibc-5a9e37df223edefa76bfbdd1baee66e1f180f5e2.tar.gz glibc-5a9e37df223edefa76bfbdd1baee66e1f180f5e2.tar.bz2 glibc-5a9e37df223edefa76bfbdd1baee66e1f180f5e2.zip |
Fix whitespaces.
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S | 6 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S index 7faf4415c6..218762a8ad 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S @@ -190,7 +190,7 @@ __pthread_cond_timedwait: andl $(ROBUST_BIT|PI_BIT), %eax cmpl $PI_BIT, %eax jne 40f - + movl $(FUTEX_WAIT_REQUEUE_PI|FUTEX_PRIVATE_FLAG), %ecx /* The following only works like this because we only support two clocks, represented using a single bit. */ @@ -198,7 +198,7 @@ __pthread_cond_timedwait: /* XXX Need to implement using sete instead of a jump. */ jne 42f orl $FUTEX_CLOCK_REALTIME, %ecx - + /* Requeue-PI uses absolute timeout */ 42: leal (%ebp), %esi movl 28(%esp), %edx @@ -218,7 +218,7 @@ __pthread_cond_timedwait: cmpl $-ENOSYS, %eax jne 41f xorl %ecx, %ecx - + 40: subl $1, %ecx #ifdef __ASSUME_PRIVATE_FUTEX andl $FUTEX_PRIVATE_FLAG, %ecx diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S index a60aac3377..8d0a555b31 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S @@ -107,7 +107,7 @@ __pthread_cond_wait: /* Reset the pi-requeued flag. */ 8: movl $0, 16(%esp) movl cond_futex(%ebx), %ebp - + /* Unlock. */ LOCK #if cond_lock == 0 @@ -133,7 +133,7 @@ __pthread_cond_wait: andl $(ROBUST_BIT|PI_BIT), %eax cmpl $PI_BIT, %eax jne 18f - + movl $(FUTEX_WAIT_REQUEUE_PI|FUTEX_PRIVATE_FLAG), %ecx movl %ebp, %edx xorl %esi, %esi @@ -152,7 +152,7 @@ __pthread_cond_wait: cmpl $-ENOSYS, %eax jne 19f xorl %ecx, %ecx - + 18: subl $1, %ecx #ifdef __ASSUME_PRIVATE_FUTEX andl $FUTEX_PRIVATE_FLAG, %ecx |