Remove some spaces so GAS 2 won't barf (but I think I will)...
This commit is contained in:
parent
0a7b3f32a1
commit
7811307516
|
@ -45,7 +45,7 @@ ENTRY(exect)
|
|||
lea SYS_execve,%eax
|
||||
pushf
|
||||
popl %edx
|
||||
orl $ PSL_T,%edx
|
||||
orl $PSL_T,%edx
|
||||
pushl %edx
|
||||
popf
|
||||
LCALL(7,0)
|
||||
|
|
|
@ -52,7 +52,7 @@ ENTRY(sigprocmask)
|
|||
jmp 2f
|
||||
1: movl (%ecx),%ecx # fetch indirect ...
|
||||
movl %ecx,8(%esp) # to new mask arg
|
||||
2: movl $ SYS_sigprocmask , %eax
|
||||
2: movl $SYS_sigprocmask , %eax
|
||||
LCALL(0x7,0)
|
||||
jb err
|
||||
movl 12(%esp),%ecx # fetch old mask requested
|
||||
|
|
|
@ -47,7 +47,7 @@ ENTRY(sigsuspend)
|
|||
movl 4(%esp),%eax # fetch mask arg
|
||||
movl (%eax),%eax # indirect to mask arg
|
||||
movl %eax,4(%esp)
|
||||
movl $ SYS_sigsuspend ,%eax
|
||||
movl $SYS_sigsuspend ,%eax
|
||||
LCALL(0x7,0)
|
||||
jb err
|
||||
xorl %eax,%eax # shouldn t happen
|
||||
|
|
Loading…
Reference in New Issue