2012-09-29 07:57:51 +08:00
|
|
|
//===-- DynamicLibrary.cpp ------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/Core/Error.h"
|
|
|
|
#include "lldb/Host/DynamicLibrary.h"
|
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
DynamicLibrary::DynamicLibrary (const FileSpec& spec, uint32_t options) : m_filespec(spec)
|
|
|
|
{
|
|
|
|
Error err;
|
|
|
|
m_handle = Host::DynamicLibraryOpen (spec,options,err);
|
|
|
|
if (err.Fail())
|
|
|
|
m_handle = NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-25 05:29:08 +08:00
|
|
|
bool
|
|
|
|
DynamicLibrary::IsValid ()
|
|
|
|
{
|
|
|
|
return m_handle != NULL;
|
|
|
|
}
|
|
|
|
|
2012-09-29 07:57:51 +08:00
|
|
|
DynamicLibrary::~DynamicLibrary ()
|
|
|
|
{
|
|
|
|
if (m_handle)
|
|
|
|
Host::DynamicLibraryClose (m_handle);
|
|
|
|
}
|