From d2fdc279df461d164860cf08645affca39232355 Mon Sep 17 00:00:00 2001 From: Nicolas 'Pixel' Noble Date: Mon, 21 Jan 2013 16:22:45 -0800 Subject: Output operations open, close and write are now fully interruptible. --- includes/Output.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'includes') diff --git a/includes/Output.h b/includes/Output.h index fec3154..c80cf40 100644 --- a/includes/Output.h +++ b/includes/Output.h @@ -15,6 +15,7 @@ class Output : public SeekableHandle { virtual const char * getName(); virtual off_t getSize(); virtual time_t getMTime(); + virtual bool isPendingComplete(); const char * getFName() { return m_fname.to_charp(); } private: int m_fd = -1; @@ -22,6 +23,7 @@ class Output : public SeekableHandle { String m_fname; off_t m_size = -1; time_t m_mtime = -1; + void * m_pendingOp = NULL; }; }; -- cgit v1.2.3