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
param.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
- #ifndef _ASM_PPC64_PARAM_H
- #define _ASM_PPC64_PARAM_H
- /*
- * 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 HZ
- #define HZ 100
- #ifdef __KERNEL__
- #if HZ == 100
- /* ppc (like X86) is defined to provide userspace with a world where HZ=100
- We have to do this, (x*const)/const2 isnt optimised out because its not
- a null operation as it might overflow.. */
- #define hz_to_std(a) (a)
- #else
- #define hz_to_std(a) ((a)*(100/HZ)+((a)*(100%HZ))/HZ)
- #endif
- #endif
- #endif
- #define EXEC_PAGESIZE 4096
- #ifndef NGROUPS
- #define NGROUPS 32
- #endif
- #ifndef NOGROUP
- #define NOGROUP (-1)
- #endif
- #define MAXHOSTNAMELEN 64 /* max length of hostname */
- #ifdef __KERNEL__
- # define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
- #endif
- #endif /* _ASM_PPC64_PARAM_H */