diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-05-10 16:05:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-11 20:38:01 +0200 |
| commit | 2695f450ca00654cef8709e4e3cfb4cf5de48fc7 (patch) | |
| tree | 4070d4f6e3ff3a68c875158ea1bc47dfa751d838 /src/lib/cross_linux.cc | |
| parent | b7a57184200d340bebcf81552aa1f05f220a8ec5 (diff) | |
Move some common methods out to cross_unix.cc
Diffstat (limited to 'src/lib/cross_linux.cc')
| -rw-r--r-- | src/lib/cross_linux.cc | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/lib/cross_linux.cc b/src/lib/cross_linux.cc index 89a9c5bb6..919927fda 100644 --- a/src/lib/cross_linux.cc +++ b/src/lib/cross_linux.cc @@ -29,11 +29,6 @@ #include <dcp/raw_convert.h> #include <dcp/warnings.h> #include <glib.h> -LIBDCP_DISABLE_WARNINGS -extern "C" { -#include <libavformat/avio.h> -} -LIBDCP_ENABLE_WARNINGS #include <boost/algorithm/string.hpp> #if BOOST_VERSION >= 106100 #include <boost/dll/runtime_symbol_info.hpp> @@ -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 () @@ -235,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<pair<string, string>> get_mounts (string prefix) @@ -368,14 +318,6 @@ disk_write_finished () } - -string -dcpomatic::get_process_id () -{ - return dcp::raw_convert<string>(getpid()); -} - - bool show_in_file_manager (boost::filesystem::path dir, boost::filesystem::path) { |
