X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fcross_osx.cc;h=eb713a980eb7325dae61459b66af7769ac7c3e6c;hp=02f720fee421835f511924874036304b6767bba9;hb=2695f450ca00654cef8709e4e3cfb4cf5de48fc7;hpb=3c29aa6531a4046a8db72dcac81189eb8893233c diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc index 02f720fee..eb713a980 100644 --- a/src/lib/cross_osx.cc +++ b/src/lib/cross_osx.cc @@ -27,9 +27,6 @@ #include "exceptions.h" #include #include -extern "C" { -#include -} #include #include #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 () @@ -156,24 +138,6 @@ disk_writer_path () #endif -/* Apparently there is no way to create an ofstream using a UTF-8 - filename under Windows. We are hence reduced to using fopen - with this wrapper. -*/ -FILE * -fopen_boost (boost::filesystem::path p, string t) -{ - return fopen (p.c_str(), t.c_str()); -} - - -int -dcpomatic_fseek (FILE* stream, int64_t offset, int whence) -{ - return fseek (stream, offset, whence); -} - - void Waker::nudge () { @@ -232,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 get_vendor (CFDictionaryRef& description) { @@ -533,20 +467,6 @@ LIBDCP_ENABLE_WARNINGS } -string -dcpomatic::get_process_id () -{ - return dcp::raw_convert(getpid()); -} - - -boost::filesystem::path -fix_long_path (boost::filesystem::path path) -{ - return path; -} - - bool show_in_file_manager (boost::filesystem::path, boost::filesystem::path select) {