2004-09-11 06:59:30 +02:00
|
|
|
//===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===//
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2004-09-11 06:59:30 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2005-04-22 00:55:34 +02:00
|
|
|
// This file was developed by Reid Spencer and is distributed under the
|
2004-09-11 06:59:30 +02:00
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2004-09-11 06:59:30 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This header file implements the operating system Process concept.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/System/Process.h"
|
2004-12-27 07:15:29 +01:00
|
|
|
#include "llvm/Config/config.h"
|
2004-09-11 06:59:30 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
2005-04-22 00:55:34 +02:00
|
|
|
//=== independent code.
|
2004-09-11 06:59:30 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the platform-specific parts of this class.
|
2004-12-27 07:15:29 +01:00
|
|
|
#ifdef LLVM_ON_UNIX
|
2005-01-10 00:29:00 +01:00
|
|
|
#include "Unix/Process.inc"
|
2004-12-27 07:15:29 +01:00
|
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
2005-01-10 00:29:00 +01:00
|
|
|
#include "Win32/Process.inc"
|
2004-12-27 07:15:29 +01:00
|
|
|
#endif
|
2004-09-11 06:59:30 +02:00
|
|
|
|
2006-07-26 18:55:39 +02:00
|
|
|
DEFINING_FILE_FOR(SystemProcess)
|