From 33aa9315414dca1218b3c88b0c5ffc89d4379974 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 28 Aug 2008 17:45:30 +0000 Subject: Support OS X by moving to gettimeofday(2) and adding poll compat from OpenSSH. --- session.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'session.c') diff --git a/session.c b/session.c index b16482e7..e39cd182 100644 --- a/session.c +++ b/session.c @@ -1,4 +1,4 @@ -/* $Id: session.c,v 1.41 2008-06-30 19:11:33 nicm Exp $ */ +/* $Id: session.c,v 1.42 2008-08-28 17:45:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -17,10 +17,10 @@ */ #include +#include #include #include -#include #include #include "tmux.h" @@ -115,8 +115,8 @@ session_create(const char *name, const char *cmd, u_int sx, u_int sy) u_int i; s = xmalloc(sizeof *s); - if (clock_gettime(CLOCK_REALTIME, &s->ts) != 0) - fatal("clock_gettime failed"); + if (gettimeofday(&s->tv, NULL) != 0) + fatal("gettimeofday"); s->curw = s->lastw = NULL; RB_INIT(&s->windows); TAILQ_INIT(&s->alerts); -- cgit