Cross-platform sleep.
authorCarl Hetherington <cth@carlh.net>
Sun, 22 Jul 2012 17:26:58 +0000 (18:26 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 22 Jul 2012 17:26:58 +0000 (18:26 +0100)
src/lib/cross.cc [new file with mode: 0644]
src/lib/cross.h
src/lib/j2k_wav_encoder.cc

diff --git a/src/lib/cross.cc b/src/lib/cross.cc
new file mode 100644 (file)
index 0000000..94e0d92
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "cross.h"
+#ifdef DVDOMATIC_WINDOWS
+#include "windows.h"
+#endif
+
+void
+dvdomatic_sleep (int s)
+{
+#ifdef DVDOMATIC_POSIX
+       sleep (s);
+#endif
+#ifdef DVDOMATIC_WINDOWS
+       Sleep (s * 1000);
+#endif
+}
index b834926981709f62a2b79feea5f205194dab259c..110660b16ea1783fec6b625d8a6748e793974e00 100644 (file)
@@ -1,3 +1,24 @@
+/*
+    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 #ifdef DVDOMATIC_WINDOWS
 #define WEXITSTATUS(w) (w)
 #endif
+
+void dvdomatic_sleep (int);
index e6a1b285e1ba4d4e01af731f115b28bf043c7f60..b0881daf25296848eaf37562b723d7e607cae6e5 100644 (file)
@@ -38,6 +38,7 @@
 #include "server.h"
 #include "filter.h"
 #include "log.h"
+#include "cross.h"
 
 using namespace std;
 using namespace boost;
@@ -197,7 +198,7 @@ J2KWAVEncoder::encoder_thread (Server* server)
                }
 
                if (remote_backoff > 0) {
-                       sleep (remote_backoff);
+                       dvdomatic_sleep (remote_backoff);
                }
 
                lock.lock ();