home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gccdist / gcc / include / sys / resource.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-30  |  406 b   |  23 lines

  1. #ifndef __sys_resource_h
  2.  
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. #include <sys/time.h>
  8.  
  9. #define __sys_resource_h 1
  10.  
  11. int getrusage(int, struct rusage*);
  12. int getrlimit (int resource, struct rlimit *rlp);
  13. int setrlimit _G_ARGS((int resource, const struct rlimit *rlp));
  14. long      ulimit(int, long);
  15. int       getpriority(int, int);
  16. int       setpriority(int, int, int);
  17.  
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21.  
  22. #endif 
  23.