Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 / -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 /
3 / This Source Code Form is subject to the terms of the Mozilla Public
4 / License, v. 2.0. If a copy of the MPL was not distributed with this
5 / file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 .text
8 .align 4
9 .globl PR_NewMonitor
10 PR_NewMonitor:
11 jmp _PR_NewMonitor
13 .align 4
14 .globl PR_EnterMonitor
15 PR_EnterMonitor:
16 mov %eax, 4(%esp)
17 jmp _PR_EnterMonitor
19 .align 4
20 .globl PR_ExitMonitor
21 PR_ExitMonitor:
22 mov %eax, 4(%esp)
23 jmp _PR_ExitMonitor
27 .align 4
28 .globl PR_AttachThread
29 PR_AttachThread:
30 mov %eax, 4(%esp)
31 mov %edx, 8(%esp)
32 mov %ecx, 12(%esp)
33 jmp _PR_AttachThread
35 .align 4
36 .globl PR_DetachThread
37 PR_DetachThread:
38 jmp _PR_DetachThread
40 .align 4
41 .globl PR_GetCurrentThread
42 PR_GetCurrentThread:
43 jmp _PR_GetCurrentThread