rusagestub.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * rusagestub.h
  4.  *   Stubs for getrusage(3).
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: rusagestub.h,v 1.4 1999/02/13 23:20:47 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef RUSAGESTUB_H
  14. #define RUSAGESTUB_H
  15. #include <sys/time.h> /* for struct timeval */
  16. #include <sys/times.h> /* for struct tms */
  17. #include <limits.h> /* for CLK_TCK */
  18. #define RUSAGE_SELF 0
  19. #define RUSAGE_CHILDREN -1
  20. struct rusage
  21. {
  22. struct timeval ru_utime; /* user time used */
  23. struct timeval ru_stime; /* system time used */
  24. };
  25. extern int getrusage(int who, struct rusage * rusage);
  26. #endif  /* RUSAGESTUB_H */