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
delay.h
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 1k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- /* $Id: delay.h,v 1.12.2.1 2002/02/02 02:11:52 kanoj Exp $
- * delay.h: Linux delay routines on the V9.
- *
- * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu).
- */
- #ifndef __SPARC64_DELAY_H
- #define __SPARC64_DELAY_H
- #include <linux/config.h>
- #include <linux/param.h>
- #ifndef __ASSEMBLY__
- #ifdef CONFIG_SMP
- #include <asm/smp.h>
- #else
- extern unsigned long loops_per_jiffy;
- #endif
- extern __inline__ void __delay(unsigned long loops)
- {
- __asm__ __volatile__(
- " b,pt %%xcc, 1fn"
- " cmp %0, 0n"
- " .align 32n"
- "1:n"
- " bne,pt %%xcc, 1bn"
- " subcc %0, 1, %0n"
- : "=&r" (loops)
- : "0" (loops)
- : "cc");
- }
- extern __inline__ void __udelay(unsigned long usecs, unsigned long lps)
- {
- usecs *= 0x00000000000010c6UL; /* 2**32 / 1000000 */
- __asm__ __volatile__(
- " mulx %1, %2, %0n"
- " srlx %0, 32, %0n"
- : "=r" (usecs)
- : "r" (usecs), "r" (lps));
- __delay(usecs * HZ);
- }
- #ifdef CONFIG_SMP
- #define __udelay_val cpu_data[smp_processor_id()].udelay_val
- #else
- #define __udelay_val loops_per_jiffy
- #endif
- #define udelay(usecs) __udelay((usecs),__udelay_val)
- #endif /* !__ASSEMBLY__ */
- #endif /* defined(__SPARC64_DELAY_H) */