Use the TheISA namespace in case we're coming from a file that doesn't do that for us. This should be contained in the scope of the function and not leak elsewhere.
--HG-- extra : convert_revision : 0bb0e1457011505a99a871c443bc45f4365e9c7e
This commit is contained in:
parent
03ff1c3167
commit
f1e3e1c305
1 changed files with 4 additions and 0 deletions
|
@ -353,6 +353,8 @@ template <typename target_stat, typename host_stat>
|
||||||
static void
|
static void
|
||||||
convertStatBuf(target_stat &tgt, host_stat *host, bool fakeTTY = false)
|
convertStatBuf(target_stat &tgt, host_stat *host, bool fakeTTY = false)
|
||||||
{
|
{
|
||||||
|
using namespace TheISA;
|
||||||
|
|
||||||
if (fakeTTY)
|
if (fakeTTY)
|
||||||
tgt->st_dev = 0xA;
|
tgt->st_dev = 0xA;
|
||||||
else
|
else
|
||||||
|
@ -395,6 +397,8 @@ template <typename target_stat, typename host_stat64>
|
||||||
static void
|
static void
|
||||||
convertStat64Buf(target_stat &tgt, host_stat64 *host, bool fakeTTY = false)
|
convertStat64Buf(target_stat &tgt, host_stat64 *host, bool fakeTTY = false)
|
||||||
{
|
{
|
||||||
|
using namespace TheISA;
|
||||||
|
|
||||||
convertStatBuf<target_stat, host_stat64>(tgt, host, fakeTTY);
|
convertStatBuf<target_stat, host_stat64>(tgt, host, fakeTTY);
|
||||||
#if defined(STAT_HAVE_NSEC)
|
#if defined(STAT_HAVE_NSEC)
|
||||||
tgt->st_atime_nsec = host->st_atime_nsec;
|
tgt->st_atime_nsec = host->st_atime_nsec;
|
||||||
|
|
Loading…
Reference in a new issue