comparison src/os/unix/ngx_sunpro_amd64.il @ 635:e67b227c8dbb default tip

Merge with current.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 25 Apr 2011 04:07:55 +0400
parents be4f34123024
children
comparison
equal deleted inserted replaced
578:f3a9e57d2e17 635:e67b227c8dbb
29 xaddq %rax, (%rdi) 29 xaddq %rax, (%rdi)
30 .end 30 .end
31 31
32 32
33 / ngx_cpu_pause() 33 / ngx_cpu_pause()
34 /
35 / the "rep; nop" is used instead of "pause" to avoid the "[ PAUSE ]" hardware
36 / capability added by linker because Solaris/amd64 does not know about it:
37 /
38 / ld.so.1: nginx: fatal: hardware capability unsupported: 0x2000 [ PAUSE ]
34 39
35 .inline ngx_cpu_pause,0 40 .inline ngx_cpu_pause,0
36 pause 41 rep; nop
37 .end 42 .end