summaryrefslogtreecommitdiff
path: root/src/lib/cross_osx.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-27 23:44:06 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-27 23:44:12 +0200
commit13f302149a2a2846d801689e3d194af3249ed0b7 (patch)
tree389f698ed41942a554c581659d317ce765ee7b5d /src/lib/cross_osx.cc
parent0b94724919f01edc7fc91e899ef179a7d94da039 (diff)
Experimental use of /dev/rdisk rather than /dev/disk on macOS,
as there is some suggestion it is faster.
Diffstat (limited to 'src/lib/cross_osx.cc')
-rw-r--r--src/lib/cross_osx.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc
index 6e8ef168c..66be376d4 100644
--- a/src/lib/cross_osx.cc
+++ b/src/lib/cross_osx.cc
@@ -493,6 +493,16 @@ Drive::get ()
return drives;
}
+
+string
+Drive::device_for_write () const
+{
+ string w = _device;
+ boost::replace_all (w, "/dev/disk", "/dev/rdisk");
+ return w;
+}
+
+
boost::filesystem::path
config_path ()
{