We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks to me that is just because on Windows files representing shmem objects go into
C:\Users\<user>\Temp\shared_memory-rs
and on Linux into
/dev/shm
Once I forced the Windows/Wine process to create a file in Z:\\dev\\shm, which in Wine corresponds to Linux's /dev/shm, sharing seems to work fine.
Z:\\dev\\shm
What do you think of a new wine feature where windows.rs get_tmp_dir() would just return Ok(PathBuf::from("Z:\\dev\\shm")) ?
wine
windows.rs
get_tmp_dir()
Ok(PathBuf::from("Z:\\dev\\shm"))
The text was updated successfully, but these errors were encountered:
Why would I want to do that? My use case:
Sorry, something went wrong.
No branches or pull requests
It looks to me that is just because on Windows files representing shmem objects go into
and on Linux into
Once I forced the Windows/Wine process to create a file in
Z:\\dev\\shm
, which in Wine corresponds to Linux's/dev/shm
, sharing seems to work fine.What do you think of a new
wine
feature wherewindows.rs
get_tmp_dir()
would just returnOk(PathBuf::from("Z:\\dev\\shm"))
?The text was updated successfully, but these errors were encountered: