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
syscall-template-alpha-netbsd-1.3.S
Package: mysql-3.23.35.tar.gz [view]
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:
MySQL
Development Platform:
Visual C++
- #include <machine/asm.h>
- #define COMPAT_43
- #include <sys/syscall.h>
- #define CHMK() call_pal 0x83
- #ifdef SYS___sigsuspend14
- #define SYS_sigsuspend SYS___sigsuspend14
- #endif
- #ifdef SYS___sigprocmask14
- #define SYS_sigprocmask SYS___sigprocmask14
- #endif
- #undef SYSCALL
- /* Kernel syscall interface:
- Input:
- v0 - system call number
- a* - arguments, as in C
- Output:
- a3 - zero iff successful
- v0 - errno value on failure, else result
- This macro is similar to SYSCALL in asm.h, but not completely.
- There's room for optimization, if we assume this will continue to
- be assembled as one file.
- This macro expansions does not include the return instruction.
- If there's no other work to be done, use something like:
- SYSCALL(foo) ; ret
- If there is other work to do (in fork, maybe?), do it after the
- SYSCALL invocation. */
- #define SYSCALL(x)
- .align 4 ;
- .globl machdep_sys_##x ;
- .ent machdep_sys_##x, 0 ;
- machdep_sys_##x: ;
- .frame sp,0,ra ;
- ldiq v0, SYS_##x ;
- CHMK() ;
- beq a3, Lsys_noerr_##x ;
- br gp, Lsys_err_##x ;
- Lsys_err_##x: ;
- /* Load gp so we can find cerror to jump to. */;
- ldgp gp, 0(gp) ;
- jmp zero, machdep_cerror ;
- Lsys_noerr_##x:
- #define SIMPLE_SYSCALL(x) SYSCALL(x) ; ret ; .end machdep_sys_##x
- #define XSYSCALL(x) SIMPLE_SYSCALL(x)
- XSYSCALL(SYSCALL_NAME)