X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcross_linux.cc;h=919927fdacddd53cf14b7e05c79d9052718b5a76;hb=f706bbb9afd10472e81a051cd5db601d6404377c;hp=d7d1089fc8c90f2484436e30587d80eb8af00f40;hpb=3c29aa6531a4046a8db72dcac81189eb8893233c;p=dcpomatic.git diff --git a/src/lib/cross_linux.cc b/src/lib/cross_linux.cc index d7d1089fc..919927fda 100644 --- a/src/lib/cross_linux.cc +++ b/src/lib/cross_linux.cc @@ -29,11 +29,6 @@ #include #include #include -LIBDCP_DISABLE_WARNINGS -extern "C" { -#include -} -LIBDCP_ENABLE_WARNINGS #include #if BOOST_VERSION >= 106100 #include @@ -61,21 +56,6 @@ using std::vector; using boost::optional; -/** @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 () @@ -189,24 +169,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 () { @@ -253,36 +215,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 Linux */ - return false; -} - - static vector> get_mounts (string prefix) @@ -386,21 +318,6 @@ disk_write_finished () } - -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 dir, boost::filesystem::path) {