blob: 0b51941424a59582b86b5cf8e81492ad04361946 [file] [log] [blame]
Chris Lattner526a80e2004-02-26 08:01:30 +00001/*===-- Config/sys/resource.h -----------------------------------*- C++ -*-===//
John Criswell4c8472d2003-10-20 20:11:43 +00002 *
3 * The LLVM Compiler Infrastructure
John Criswell3ef61af2003-06-30 21:59:07 +00004 *
John Criswell4c8472d2003-10-20 20:11:43 +00005 * This file was developed by the LLVM research group and is distributed under
6 * the University of Illinois Open Source License. See LICENSE.TXT for details.
7 *
8 *===----------------------------------------------------------------------===//
9 *
John Criswell3ef61af2003-06-30 21:59:07 +000010 * This header file is the autoconf replacement for sys/resource.h (if it
11 * lives on the system).
John Criswell4c8472d2003-10-20 20:11:43 +000012 *
13 *===----------------------------------------------------------------------===//
John Criswell3ef61af2003-06-30 21:59:07 +000014 */
15
16#ifndef _CONFIG_SYS_RESOURCE_H
17#define _CONFIG_SYS_RESOURCE_H
18
19#include "Config/config.h"
20
21#ifdef HAVE_SYS_RESOURCE_H
22
23/*
24 * In LLVM, we use sys/resource.h to use getrusage() and maybe some other
25 * stuff. Some man pages say that you also need sys/time.h and unistd.h.
26 * So, to be paranoid, we will try to include all three if possible.
27 */
28#ifdef HAVE_SYS_TIME_H
29#include <sys/time.h>
30#endif
31
32#include <sys/resource.h>
33
34#ifdef HAVE_UNISTD_H
35#include <unistd.h>
36#endif
37
38#endif
39
40#endif