From 88d8ff904f7c5507c036a00fa484c9c8a7073d1d Mon Sep 17 00:00:00 2001 From: Douglas Clowes Date: Tue, 14 Sep 2010 11:24:41 +1000 Subject: [PATCH] add timeout processing timestamp at start of read r3024 | dcl | 2010-09-14 11:24:41 +1000 (Tue, 14 Sep 2010) | 1 line --- site_ansto/hardsup/sct_oxfordprot.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/site_ansto/hardsup/sct_oxfordprot.c b/site_ansto/hardsup/sct_oxfordprot.c index f2e0cc15..9f796441 100644 --- a/site_ansto/hardsup/sct_oxfordprot.c +++ b/site_ansto/hardsup/sct_oxfordprot.c @@ -157,6 +157,11 @@ int OxfordProtHandler(Ascon *a) { ret = OxfordWriting(a); return ret; break; + case AsconReadStart: + a->start = DoubleTime(); + ret = AsconStdHandler(a); + return ret; + break; case AsconReading: ret = OxfordReading(a); return ret; @@ -164,6 +169,7 @@ int OxfordProtHandler(Ascon *a) { default: ret = AsconStdHandler(a); return ret; + break; } return 1; }