From b61ec9773acf7ea2ead87fc68449d6587a7da88d Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Fri, 10 Oct 2003 22:59:51 -0400 Subject: [PATCH] Make things work on OpenBSD again sim/sim_time.cc: make this work in OpenBSD sim/sim_time.hh: timeval is defined in sys/time.h base/remote_gdb.cc: need to include for sprintf --HG-- extra : convert_revision : a230aa691bb798c37243fe4253399b2e40a2d12d --- base/remote_gdb.cc | 1 + sim/sim_time.cc | 6 +++--- sim/sim_time.hh | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/base/remote_gdb.cc b/base/remote_gdb.cc index 0289f29db..a7893cdf7 100644 --- a/base/remote_gdb.cc +++ b/base/remote_gdb.cc @@ -91,6 +91,7 @@ #include +#include #include #include "cpu/exec_context.hh" diff --git a/sim/sim_time.cc b/sim/sim_time.cc index 3d91eba83..70483d9a2 100644 --- a/sim/sim_time.cc +++ b/sim/sim_time.cc @@ -132,21 +132,21 @@ namespace Time ostream & operator<<(ostream &out, const Start &start) { - out << ::ctime(&start.get().tv_sec); + out << ::ctime((const time_t *)&start.get().tv_sec); return out; } ostream & operator<<(ostream &out, const Now &now) { - out << ::ctime(&now.get().tv_sec); + out << ::ctime((const time_t *)&now.get().tv_sec); return out; } ostream & operator<<(ostream &out, const Elapsed &elapsed) { - out << ::ctime(&elapsed.get().tv_sec); + out << ::ctime((const time_t *)&elapsed.get().tv_sec); return out; } } diff --git a/sim/sim_time.hh b/sim/sim_time.hh index dbba42aa7..af69c3321 100644 --- a/sim/sim_time.hh +++ b/sim/sim_time.hh @@ -29,6 +29,8 @@ #ifndef __SIM_TIME_HH__ #define __SIM_TIME_HH__ +#include + #include namespace Time { -- 2.30.2