2010-11-29 19:44:50 +00:00
|
|
|
//===- llvm/Support/Unix/Unix.h - Common Unix Include File -------*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-25 06:20:07 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-08-25 06:20:07 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines things specific to Unix implementations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-12-27 06:17:50 +00:00
|
|
|
#ifndef LLVM_SYSTEM_UNIX_UNIX_H
|
|
|
|
#define LLVM_SYSTEM_UNIX_UNIX_H
|
|
|
|
|
2004-08-25 06:20:07 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only generic UNIX code that
|
|
|
|
//=== is guaranteed to work on all UNIX variants.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Config/config.h" // Get autoconf configuration settings
|
2010-11-29 18:29:55 +00:00
|
|
|
#include "llvm/Support/Errno.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include <algorithm>
|
2013-07-26 16:54:23 +00:00
|
|
|
#include <assert.h>
|
2012-12-04 07:12:27 +00:00
|
|
|
#include <cerrno>
|
2004-08-29 19:24:20 +00:00
|
|
|
#include <cstdio>
|
2012-12-04 07:12:27 +00:00
|
|
|
#include <cstdlib>
|
2004-08-29 19:24:20 +00:00
|
|
|
#include <cstring>
|
2004-12-27 06:17:50 +00:00
|
|
|
#include <string>
|
2013-07-26 16:54:23 +00:00
|
|
|
#include <sys/types.h>
|
2004-12-27 06:17:50 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
2004-08-25 06:20:07 +00:00
|
|
|
#include <sys/param.h>
|
2005-04-21 22:55:34 +00:00
|
|
|
#endif
|
2004-12-27 06:17:50 +00:00
|
|
|
|
2012-04-23 19:00:27 +00:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2004-12-27 06:17:50 +00:00
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
2012-04-23 19:00:27 +00:00
|
|
|
#include <time.h>
|
2004-12-27 06:17:50 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_WAIT_H
|
|
|
|
# include <sys/wait.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WEXITSTATUS
|
|
|
|
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WIFEXITED
|
|
|
|
# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
|
|
|
|
#endif
|
2004-08-25 06:20:07 +00:00
|
|
|
|
2006-08-21 06:02:44 +00:00
|
|
|
/// This function builds an error message into \p ErrMsg using the \p prefix
|
|
|
|
/// string and the Unix error number given by \p errnum. If errnum is -1, the
|
|
|
|
/// default then the value of errno is used.
|
|
|
|
/// @brief Make an error message
|
2009-04-20 20:50:13 +00:00
|
|
|
///
|
|
|
|
/// If the error number can be converted to a string, it will be
|
|
|
|
/// separated from prefix by ": ".
|
2008-05-13 00:00:25 +00:00
|
|
|
static inline bool MakeErrMsg(
|
2006-08-21 06:02:44 +00:00
|
|
|
std::string* ErrMsg, const std::string& prefix, int errnum = -1) {
|
|
|
|
if (!ErrMsg)
|
2006-08-23 07:30:48 +00:00
|
|
|
return true;
|
2006-08-21 06:02:44 +00:00
|
|
|
if (errnum == -1)
|
|
|
|
errnum = errno;
|
2009-07-01 18:11:20 +00:00
|
|
|
*ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
|
2006-08-23 07:30:48 +00:00
|
|
|
return true;
|
2006-08-21 06:02:44 +00:00
|
|
|
}
|
|
|
|
|
2004-12-27 06:17:50 +00:00
|
|
|
#endif
|