comparison src/os/unix/ngx_sunpro_amd64.il @ 665:0b460e61bdcd default tip

Merge with nginx 1.0.0.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 25 Apr 2011 04:22:17 +0400
parents be4f34123024
children
comparison
equal deleted inserted replaced
572:06419a2298a9 665:0b460e61bdcd
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