- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
vmstat.h
资源名称:unzip540.zip [点击查看]
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:1k
源码类别:
压缩解压
开发平台:
MultiPlatform
- #ifndef __vmstat_h
- #define __vmstat_h
- /* stat.h definitions */
- #ifndef _INO_T_DEFINED
- typedef unsigned short ino_t; /* i-node number (not used on DOS) */
- #define _INO_T_DEFINED
- #endif
- #ifndef _DEV_T_DEFINED
- typedef short dev_t; /* device code */
- #define _DEV_T_DEFINED
- #endif
- #ifndef _OFF_T_DEFINED
- typedef long off_t; /* file offset value */
- #define _OFF_T_DEFINED
- #endif
- #ifndef _STAT_DEFINED
- struct stat {
- dev_t st_dev;
- ino_t st_ino;
- short st_mode;
- short st_nlink;
- int st_uid;
- int st_gid;
- off_t st_size;
- time_t st_atime;
- time_t st_mtime;
- time_t st_ctime;
- };
- #define _STAT_DEFINED
- #endif
- int stat(const char *path, struct stat *buf);
- int fstat(int fd, struct stat *buf);
- #define S_IFMT 0xFFFF
- #define _FLDATA(m) (*(fldata_t *) &m)
- #define S_ISDIR(m) (_FLDATA(m).__dsorgPDSdir)
- #define S_ISREG(m) (_FLDATA(m).__dsorgPO |
- _FLDATA(m).__dsorgPDSmem |
- _FLDATA(m).__dsorgPS)
- #define S_ISBLK(m) (_FLDATA(m).__recfmBlk)
- #define S_ISMEM(m) (_FLDATA(m).__dsorgMem)
- #endif /* __vmstat_h */