nsprpub/pr/src/md/os2/os2vaclegacy.s

Wed, 31 Dec 2014 06:55:46 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:46 +0100
changeset 1
ca08bd8f51b2
permissions
-rw-r--r--

Added tag TORBROWSER_REPLICA for changeset 6474c204b198

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

mercurial