Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
rwlock.h
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 2k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- /* include/asm-x86_64/rwlock.h
- *
- * Helpers used by both rw spinlocks and rw semaphores.
- *
- * Based in part on code from semaphore.h and
- * spinlock.h Copyright 1996 Linus Torvalds.
- *
- * Copyright 1999 Red Hat, Inc.
- * Copyright 2001,2002 SuSE labs
- *
- * Written by Benjamin LaHaise.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
- #ifndef _ASM_X86_64_RWLOCK_H
- #define _ASM_X86_64_RWLOCK_H
- #include <linux/stringify.h>
- #define RW_LOCK_BIAS 0x01000000
- #define RW_LOCK_BIAS_STR "0x01000000"
- #define __build_read_lock_ptr(rw, helper)
- asm volatile(LOCK "subl $1,(%0)nt"
- "js 2fn"
- "1:n"
- LOCK_SECTION_START("")
- "2:tcall " helper "nt"
- "jmp 1bn"
- LOCK_SECTION_END
- ::"a" (rw) : "memory")
- #define __build_read_lock_const(rw, helper)
- asm volatile(LOCK "subl $1,%0nt"
- "js 2fn"
- "1:n"
- LOCK_SECTION_START("")
- "2:tpushq %%raxnt"
- "leaq %0,%%raxnt"
- "call " helper "nt"
- "popq %%raxnt"
- "jmp 1bn"
- LOCK_SECTION_END
- :"=m" (*((volatile int *)rw))::"memory")
- #define __build_read_lock(rw, helper) do {
- if (__builtin_constant_p(rw))
- __build_read_lock_const(rw, helper);
- else
- __build_read_lock_ptr(rw, helper);
- } while (0)
- #define __build_write_lock_ptr(rw, helper)
- asm volatile(LOCK "subl $" RW_LOCK_BIAS_STR ",(%0)nt"
- "jnz 2fn"
- "1:n"
- LOCK_SECTION_START("")
- "2:tcall " helper "nt"
- "jmp 1bn"
- LOCK_SECTION_END
- ::"a" (rw) : "memory")
- #define __build_write_lock_const(rw, helper)
- asm volatile(LOCK "subl $" RW_LOCK_BIAS_STR ",(%0)nt"
- "jnz 2fn"
- "1:n"
- LOCK_SECTION_START("")
- "2:tpushq %%raxnt"
- "leaq %0,%%raxnt"
- "call " helper "nt"
- "popq %%raxnt"
- "jmp 1bn"
- LOCK_SECTION_END
- :"=m" (*((volatile long *)rw))::"memory")
- #define __build_write_lock(rw, helper) do {
- if (__builtin_constant_p(rw))
- __build_write_lock_const(rw, helper);
- else
- __build_write_lock_ptr(rw, helper);
- } while (0)
- #endif