Searched refs:fdfl (Results 1 – 3 of 3) sorted by relevance
/xen/tools/libxl/ |
A D | libxl.c | 757 int rc, ret, fdfl; in libxl__fd_flags_modify_save() local 759 fdfl = fcntl(fd, F_GETFL); in libxl__fd_flags_modify_save() 760 if (fdfl < 0) { in libxl__fd_flags_modify_save() 769 *r_oldflags = fdfl; in libxl__fd_flags_modify_save() 771 fdfl &= mask; in libxl__fd_flags_modify_save() 772 fdfl |= val; in libxl__fd_flags_modify_save() 774 LOG(DEBUG, "fnctl F_SETFL of fd %d to 0x%x", fd, fdfl); in libxl__fd_flags_modify_save() 776 ret = fcntl(fd, F_SETFL, fdfl); in libxl__fd_flags_modify_save() 789 int libxl__fd_flags_restore(libxl__gc *gc, int fd, int fdfl) in libxl__fd_flags_restore() argument 793 LOG(DEBUG, "fnctl F_SETFL of fd %d to 0x%x", fd, fdfl); in libxl__fd_flags_restore() [all …]
|
A D | libxl_domain.c | 500 flrc = libxl__fd_flags_restore(gc, dss->fd, dss->fdfl); in domain_suspend_cb() 535 &dss->fdfl); in libxl_domain_suspend()
|
A D | libxl_internal.h | 3631 int fdfl; /* original flags on fd */ member
|
Completed in 20 milliseconds