152SN/A/*
21762SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
352SN/A * All rights reserved.
452SN/A *
552SN/A * Redistribution and use in source and binary forms, with or without
652SN/A * modification, are permitted provided that the following conditions are
752SN/A * met: redistributions of source code must retain the above copyright
852SN/A * notice, this list of conditions and the following disclaimer;
952SN/A * redistributions in binary form must reproduce the above copyright
1052SN/A * notice, this list of conditions and the following disclaimer in the
1152SN/A * documentation and/or other materials provided with the distribution;
1252SN/A * neither the name of the copyright holders nor the names of its
1352SN/A * contributors may be used to endorse or promote products derived from
1452SN/A * this software without specific prior written permission.
1552SN/A *
1652SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1752SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1852SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1952SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2052SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2152SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2252SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2352SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2452SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2552SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2652SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
2952SN/A */
3052SN/A
3152SN/A#ifndef __HOSTINFO_HH__
3252SN/A#define __HOSTINFO_HH__
3352SN/A
34401SN/A#include <string>
35401SN/A
366214Snate@binkert.org#include "base/types.hh"
3752SN/A
389554Sandreas.hansson@arm.comstd::string __get_hostname();
399554Sandreas.hansson@arm.com
40401SN/Astd::string &hostname();
41401SN/A
425202Sstever@gmail.comuint64_t procInfo(const char *filename, const char *target);
4352SN/A
448655Sandreas.hansson@arm.com/**
458655Sandreas.hansson@arm.com * Determine the simulator process' total virtual memory usage.
468655Sandreas.hansson@arm.com *
478655Sandreas.hansson@arm.com * @return virtual memory usage in kilobytes
488655Sandreas.hansson@arm.com */
498655Sandreas.hansson@arm.comuint64_t memUsage();
5052SN/A
5152SN/A#endif // __HOSTINFO_HH__
52