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
When trying to use pycriu to dump a python process, it is throwing error
import os from pycriu.criu import criu
c=criu() f = os.open("dummy", os.O_DIRECTORY) c.opts.images_dir_fd = f c.use_binary("/home/ec2-user/criu/criu/criu/criu") c.dump()
python does not allow getting file descriptors for directories and then write files in that directory.
Has anyone use pycriu library and successfully dumped the process?
Please help.
The text was updated successfully, but these errors were encountered:
Please do not add the same question to multiple tickets.
Take a look at p.haul which uses pycriu: https://github.com/checkpoint-restore/p.haul/
Sorry, something went wrong.
A friendly reminder that this issue had no activity for 30 days.
No branches or pull requests
When trying to use pycriu to dump a python process, it is throwing error
import os
from pycriu.criu import criu
c=criu()
f = os.open("dummy", os.O_DIRECTORY)
c.opts.images_dir_fd = f
c.use_binary("/home/ec2-user/criu/criu/criu/criu")
c.dump()
python does not allow getting file descriptors for directories and then write files in that directory.
Has anyone use pycriu library and successfully dumped the process?
Please help.
The text was updated successfully, but these errors were encountered: