summaryrefslogtreecommitdiff
path: root/src/lib/cross_osx.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-10 16:05:51 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-11 20:38:01 +0200
commit2695f450ca00654cef8709e4e3cfb4cf5de48fc7 (patch)
tree4070d4f6e3ff3a68c875158ea1bc47dfa751d838 /src/lib/cross_osx.cc
parentb7a57184200d340bebcf81552aa1f05f220a8ec5 (diff)
Move some common methods out to cross_unix.cc
Diffstat (limited to 'src/lib/cross_osx.cc')
-rw-r--r--src/lib/cross_osx.cc55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc
index b214b6359..eb713a980 100644
--- a/src/lib/cross_osx.cc
+++ b/src/lib/cross_osx.cc
@@ -27,9 +27,6 @@
#include "exceptions.h"
#include <dcp/raw_convert.h>
#include <glib.h>
-extern "C" {
-#include <libavformat/avio.h>
-}
#include <boost/algorithm/string.hpp>
#include <boost/regex.hpp>
#if BOOST_VERSION >= 106100
@@ -68,21 +65,6 @@ using boost::optional;
using std::function;
-/** @param s Number of seconds to sleep for */
-void
-dcpomatic_sleep_seconds (int s)
-{
- sleep (s);
-}
-
-
-void
-dcpomatic_sleep_milliseconds (int ms)
-{
- usleep (ms * 1000);
-}
-
-
/** @return A string of CPU information (model name etc.) */
string
cpu_info ()
@@ -214,36 +196,6 @@ start_player ()
}
-uint64_t
-thread_id ()
-{
- return (uint64_t) pthread_self ();
-}
-
-
-int
-avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags)
-{
- return avio_open (s, file.c_str(), flags);
-}
-
-
-boost::filesystem::path
-home_directory ()
-{
- return getenv("HOME");
-}
-
-
-/** @return true if this process is a 32-bit one running on a 64-bit-capable OS */
-bool
-running_32_on_64 ()
-{
- /* I'm assuming nobody does this on OS X */
- return false;
-}
-
-
static optional<string>
get_vendor (CFDictionaryRef& description)
{
@@ -515,13 +467,6 @@ LIBDCP_ENABLE_WARNINGS
}
-string
-dcpomatic::get_process_id ()
-{
- return dcp::raw_convert<string>(getpid());
-}
-
-
bool
show_in_file_manager (boost::filesystem::path, boost::filesystem::path select)
{