mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-24 02:29:23 +00:00
11 lines
217 B
Python
Executable file
11 lines
217 B
Python
Executable file
import os
|
|
|
|
def create_fds():
|
|
(fd1, fd2) = os.pipe()
|
|
return (os.fdopen(fd2, "wb"), os.fdopen(fd1, "rb"))
|
|
|
|
def filename(pipef):
|
|
return 'pipe:[%d]' % os.fstat(pipef.fileno()).st_ino
|
|
|
|
def dump_opts(sockf):
|
|
return [ ]
|