source: bootcd/isolinux/syslinux-6.03/core/thread/sem_asm.S

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 247 bytes
Line 
1        .globl  sem_down
2        .type   sem_down, @function
3sem_down:
4        decl    (%eax)
5        js      __sem_down_slow
6        xorl    %eax, %eax
7        ret
8        .size   sem_down, .-sem_down
9
10        .globl  sem_up
11        .type   sem_up, @function
12sem_up:
13        incl    (%eax)
14        jle     __sem_up_slow
15        ret
16        .size   sem_up, .-sem_up
Note: See TracBrowser for help on using the repository browser.