Skip to content
New issue

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

Port to GTK4 #484

Draft
wants to merge 54 commits into
base: test
Choose a base branch
from
Draft

Conversation

MostlyKIGuess
Copy link
Member

  • The messy branch with so many commits, I wanted to see the overall changes being made, and probably needed some suggestions on faster testing.

chimosky and others added 30 commits July 31, 2024 17:18
Signed-off-by: Chihurumnaya Ibiam <[email protected]>
Signed-off-by: Chihurumnaya Ibiam <[email protected]>
- Replace deprecated Gtk.Popover methods with GTK4 equivalents
- Update window positioning and menu handling for GTK4
- Add Gtk.EventControllerMotion for mouse event handling
- Update add_item method to use append instead of pack_start
- Remove deprecated transient_for handling
- Replace deprecated Gtk.VBox and Gtk.HBox with Gtk.Box
- Update widget packing methods from pack_start to append
- Use set_visible(True) instead of show()
- Update event handling methods to use set_state_flags and unset_state_flags
- Maintain existing comments and documentation
- Replace deprecated Gtk.VBox, Gtk.HBox, Gtk.Alignment, Gtk.HSeparator, and Gtk.HButtonBox with Gtk.Box and Gtk.Separator
- Update widget packing methods from pack_start to append
- Use set_visible(True) instead of show()
- Update event handling methods to use set_state_flags and unset_state_flags
- Update set_child for Gtk.Button instead of set_image
- Maintain existing comments and documentation
- Replace deprecated Gtk.MenuItem with Gtk.ListBox and Gtk.ListBoxRow
- Replace deprecated Gtk.EventBox with Gtk.Box
- Replace deprecated Gtk.VBox and Gtk.HBox with Gtk.Box
- Update widget packing methods from pack_start to append
- Use set_visible(True) instead of show()
- Update event handling methods to use set_state_flags and unset_state_flags
- Replace deprecated Gtk.ToolButton with Gtk.Button
- Update methods to use Gtk.Button APIs
- Replaced deprecated `Gtk.HBox` and `Gtk.HButtonBox` with `Gtk.Box` with appropriate orientation.
- Updated widget packing methods to use `append`.
- Used `set_visible(True)` instead of `show()`.
- Updated event handling methods to use `set_state_flags` and `unset_state_flags` for state changes.
- Replaced deprecated `Gtk.Toolbar` with `Gtk.Box` and updated orientation.
- Replaced deprecated `Gtk.ToolItem` with `Gtk.Box` and updated orientation.
- Replaced deprecated `Gtk.SeparatorToolItem` with `Gtk.Separator`.
- Updated widget packing methods to use `append`.
- Used `set_visible(True)` instead of `show()`.
- Updated screen dimension handling for GTK4.
refactor: Replace deprecated Gtk.AccelGroup with Gtk.ShortcutController and update monitor geometry handling
## Activity & Window Updates:
- Removed deprecated GTK3 methods such as `Gtk.main_quit` and `get_window()` from `activity.py`.
- Updated `activity.py` to use `GLib.MainLoop` for running and quitting the main loop.
- Adjusted `window.py` to follow GTK4 API patterns and layout changes.

## Widget & Signal Refactoring:
- Modified `widgets.py` and `graphics` modules (`radiopalette.py`, `radiotoolbutton.py`) to remove reliance on deprecated signals such as “hierarchy-changed”.
- Replaced GTK3 container iteration (e.g. `get_children()`) with GTK4-compatible approaches (using `get_first_child()/get_next_sibling()` or iterating directly).

## Accelerator Implementation:
- In `toolbutton.py`, removed the legacy `Gtk.AccelGroup` API and replaced it with a new GTK4-based accelerator implementation.
- Added `_add_accelerator_gtk4()` that leverages `Gtk.ShortcutTrigger`, `Gtk.CallbackAction`, and `Gtk.ShortcutController` to set up accelerators.
- Updated accelerator property notifications to re-apply controllers as needed.

## Palette & PaletteMenu Adjustments:
- Updated `palette.py`, `palettemenu.py`, and `palettewindow.py` to reflect GTK4 widget parenting and container APIs.
- Touched `menuitem.py` to ensure GTK4 layout and actions function as intended.

## ToolbarBox and Others:
- In `toolbarbox.py`, ensured that all toolbar components are arranged as per the GTK4 style guidelines.

## Additional Fixes:
- Addressed GDK cursor warnings related to GTK4 theme sizes.
- Handled session manager warnings by ensuring that components expect the absence of `SESSION_MANAGER`.
1. Event Handling & Window System
- Replaced deprecated GdkWindow APIs with new GdkSurface APIs in GTK4
- Updated event handling code to use GTK4's new event model
- Added conditional compilation (#if GTK_CHECK_VERSION(4,0,0)) blocks to handle API differences
- Replaced direct event field access with accessor functions (e.g., gdk_event_get_position)
- Updated X11-specific code to use the new gdk/x11/gdkx.h header path

2. Cursor Tracking
- Modernized cursor visibility tracking for GTK4
- Updated surface/window management code to work with both GTK3 and GTK4
- Replaced deprecated gdk_threads_* functions with their GTK4 equivalents
- Added proper cleanup and resource management for surfaces

3. Event Controllers
- Updated touch and gesture event handling for GTK4's new event model
- Implemented proper event propagation and handling
- Added support for GTK4's new event controller system
- Maintained backwards compatibility with GTK3's event system

4. Clipboard Handling
- Created compatibility layer for clipboard operations between GTK3 and GTK4
- Added stub implementation for GTK4 clipboard API
- Defined compatibility types and functions for smooth transition

5. Window Management
- Updated window positioning code to work with GTK4's new coordinate system
- Fixed window property handling for both GTK versions
- Improved error handling and reporting

6. Build System
- Updated configure.ac to properly detect and use GTK4
- Added version-specific compiler flags and dependencies
- Updated pkg-config requirements

7. Code Structure
- Improved code organization with better separation of GTK3/GTK4 specific code
- Added extensive documentation for version-specific implementations
- Cleaned up header includes and dependencies

8. Documentation
- Added comments explaining version-specific code paths
- Updated function documentation to reflect API changes
- Added migration notes for downstream applications

Technical Details:

Event Handling:
- Replaced event->type direct access with gdk_event_get_event_type()
- Updated event coordinate handling for GTK4's new coordinate system
- Added proper null checking and error handling for event access

Window Management:
- Implemented proper surface lifecycle management
- Updated window positioning code to use GTK4's new APIs
- Added proper cleanup for window resources

Event Controllers:
- Updated controller attachment and management
- Improved event propagation handling
- Added proper cleanup for controllers

The changes maintain backwards compatibility where possible while providing
a clear upgrade path to GTK4. Version-specific code is clearly marked and
documented to aid in future maintenance.

Testing:
- Tested on both GTK3 and GTK4 environments
- Verified window management functionality
- Confirmed event handling works correctly
- Validated cursor tracking behavior
- Checked clipboard operations

Note: Some GTK4 features (particularly advanced clipboard operations) are
currently stubbed out and will need further implementation in future updates.
@MostlyKIGuess
Copy link
Member Author

@quozl could you perhaps make this in a system where you can test it ( the current error on hello-world is very weird)?

  • I am currently able to compile this in debian 12.
  • I wanted to know how do I test it faster? I currently compile the library change new files using:
sudo rm -rf /usr/lib/python3.13/site-packages/sugar3;sudo cp -r ./src/sugar3 /usr/lib/python3.13/site-packages/sugar3

as well as SugarExt is not discovered ( i am not sure why this happens as well) but to fix that I update the path:

export GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0:$GI_TYPELIB_PATH
  • And then finally on hello-wold I run:
sugar-activity3 activity.HelloWorldActivity

Info about the Error:


(process:7959): Gtk-CRITICAL **: 00:54:31.298: gtk_box_append: assertion 'gtk_widget_get_parent (child) == NULL' failed

(process:7959): Gtk-CRITICAL **: 00:54:31.299: gtk_box_append: assertion 'gtk_widget_get_parent (child) == NULL' failed
        activity_button = ActivityToolbarButton(self)
  • Otherwise in GNOME it just segfaults without any warnings.

  • I am kind of stuck here now.

@quozl
Copy link
Contributor

quozl commented Feb 11, 2025

I'm sure you'll think of something. What is the stack trace of the segmentation fault? Have you made sure not to install anything except the toolkit and dependencies on your test system?

@MostlyKIGuess
Copy link
Member Author

I'm sure you'll think of something. What is the stack trace of the segmentation fault? Have you made sure not to install anything except the toolkit and dependencies on your test system?

Yes, the debian system only has installation things from portinggt4 md file.

I will get back to you on the trace

@MostlyKIGuess
Copy link
Member Author

I'm sure you'll think of something. What is the stack trace of the segmentation fault? Have you made sure not to install anything except the toolkit and dependencies on your test system?

Here's the full log from the start of application:

close(54)                               = 0
openat(AT_FDCWD, "/dev/nvidia0", O_RDWR|O_CLOEXEC) = 54
fcntl(54, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
ioctl(54, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xc9, 0x4), 0x7fffc2f3920c) = 0
ioctl(54, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xce, 0x10), 0x7fffc2f39250) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2b, 0x30), 0x7fffc2f39270) = 0
openat(AT_FDCWD, "/dev/nvidia0", O_RDWR|O_CLOEXEC) = 56
fcntl(56, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
ioctl(56, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xc9, 0x4), 0x7fffc2f3925c) = 0
ioctl(56, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xce, 0x10), 0x7fffc2f392a0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2b, 0x30), 0x7fffc2f392c0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4a, 0xb8), 0x7fffc2f38c40) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x57, 0x38), 0x7fffc2f38aa0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4a, 0xb8), 0x7fffc2f39260) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f38080) = 0
openat(AT_FDCWD, "/dev/nvidiactl", O_RDWR|O_CLOEXEC) = 57
fcntl(57, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4e, 0x38), 0x7fffc2f39120) = 0
mmap(NULL, 8294400, PROT_READ|PROT_WRITE, MAP_SHARED, 57, 0) = 0x76bf4922e000
close(57)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4a, 0xb8), 0x7fffc2f390b0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x57, 0x38), 0x7fffc2f38f80) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f36f00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f36f00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f36f00) = 0
openat(AT_FDCWD, "/dev/nvidiactl", O_RDWR|O_CLOEXEC) = 57
fcntl(57, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
ioctl(57, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xd4, 0x80), 0x7fffc2f38020) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f38240) = 0
ioctl(21, _IOC(_IOC_READ|_IOC_WRITE, 0x64, 0x58, 0x8), 0x7fffc2f391e8) = 0
ioctl(21, _IOC(_IOC_READ|_IOC_WRITE, 0x64, 0x41, 0x20), 0x7fffc2f392f0) = 0
close(57)                               = 0
ioctl(21, DRM_IOCTL_PRIME_HANDLE_TO_FD, 0x7fffc2f39248) = 0
ioctl(21, _IOC(_IOC_READ|_IOC_WRITE, 0x64, 0x58, 0x8), 0x7fffc2f39208) = 0
ioctl(21, DRM_IOCTL_GEM_CLOSE, 0x7fffc2f39218) = 0
fcntl(57, F_DUPFD_CLOEXEC, 0)           = 59
ioctl(21, DRM_IOCTL_SYNCOBJ_CREATE, 0x7fffc2f39330) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_HANDLE_TO_FD, 0x7fffc2f39320) = 0
fcntl(63, F_DUPFD_CLOEXEC, 0)           = 64
close(63)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f397f0) = 0
ioctl(37, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f397e0) = 0
close(37)                               = 0
poll([{fd=19, events=POLLIN|POLLERR|POLLHUP}], 1, 0) = 0 (Timeout)
ioctl(21, DRM_IOCTL_I915_GEM_PIN, 0x7fffc2f38d70) = 0
openat(AT_FDCWD, "/", O_RDONLY|O_CLOEXEC) = 63
fcntl(63, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
dup3(37, 63, O_CLOEXEC)                 = 63
close(37)                               = 0
openat(AT_FDCWD, "/", O_RDONLY|O_CLOEXEC) = 37
fcntl(37, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
dup3(63, 37, O_CLOEXEC)                 = 37
openat(AT_FDCWD, "/", O_RDONLY|O_CLOEXEC) = 65
fcntl(65, F_GETFD)                      = 0x1 (flags FD_CLOEXEC)
dup3(37, 65, O_CLOEXEC)                 = 65
close(37)                               = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_CREATE, 0x7fffc2f38d80) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_FD_TO_HANDLE, 0x7fffc2f38d80) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_TRANSFER, 0x7fffc2f38d70) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_DESTROY, 0x7fffc2f38d90) = 0
close(65)                               = 0
sendmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base=">\0\0\0\10\0\20\0\32\7\0\0\322\3\0\0>\0\0\0\7\0\20\0\0\0\0\0\0\0\0\0"..., iov_len=792}], msg_iovlen=1, msg_control=[{cmsg_len=48, cmsg_level=SOL_SOCKET, cmsg_type=SCM_RIGHTS, cmsg_data=[43, 45, 48, 50, 53, 55, 59, 64]}],(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f37 msg_controllen=48, msg_flags=0}, MSG_DONTWAIT|MSG_NOSIGNAL) = 792
close(43)                               = 0
close(45)                               = 0
close(48)                               = 0
close(50)                               = 0
close(53)                               = 0
close(55)                               = 0
close(59)                               = 0
close(64)                               = 0
close(63)                               = 0
futex(0x76bf40000f54, FUTEX_WAKE_PRIVATE, 2147483647) = 1
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=468513000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=468511106})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\36\0\0\0\0\0\f\0\30\0\0\0\36\0\0\0\2\0\f\0\1\0\0\0I\0\0\0\0\0\10\0"..., iov_len=3692}, {iov_base="", iov_len=404}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 92
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events
IN}], 4, {tv_sec=0, tv_nsec=468393000}
ts=POLLIN}], left {tv_sec=0, tv_nsec=4

recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="4\0\0\0\0\0\10\0\1\0\0\0\1\0\f\0004\0\0\0\1\0\0\0\1\0\f\0-\0\0\0"..., iov_len=3600}, {iov_base="", iov_len=496}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 2636
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, =POLLIN}, {fd=61, events=POLL, NULL, 8) = 1 ([{fd=4, revents=POLLIN, NULL, 8) = 1 ([{fd=4, reven66954064})                            67647166})                   recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="M\0\0\0\0\0\f\0\30\0\0\0M\0\0\0\1\0$\0\0\0\0\0\362\1\0\0\310)(\4"..., iov_len=964}, {iov_base="", iov_len=3132}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 84
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=8999000}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=457513000}, NULL, 8) = ? ERESTARTNOHAND (To be restarted if no handler)
--- SIGWINCH {si_signo=SIGWINCH, si_code=SI_KERNEL} ---
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=396045965}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=9, tv_nsec=402229000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=8, tv_nsec=727989472})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\"\0\0\0\0\0\30\0\352\5\0\0\f\236\7\0$\0\0\0\1\0\0\0", iov_len=880}, {iov_base="", iov_len=3216}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 24
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=8, tv_nsec=727129000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=8, tv_nsec=711073917})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\"\0\0\0\1\0\24\0\353\5\0\0\35\236\7\0\1\0\0\0\32\0\0\0\2\0\24\0\35\236\7\0"..., iov_len=856}, {iov_base="", iov_len=3240}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 48
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494438929})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0#\236\7\0\0\331\2\0\0w\2\0\32\0\0\0\5\0\10\0", iov_len=808}, {iov_base="", iov_len=3288}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493432668})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0*\236\7\0\0\330\2\0\0r\2\0\32\0\0\0\5\0\10\0", iov_len=780}, {iov_base="", iov_len=3316}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499977000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493991689})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0000\236\7\0\0\330\2\0\0n\2\0\32\0\0\0\5\0\10\0", iov_len=752}, {iov_base="", iov_len=3344}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499994000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494038133})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0007\236\7\0\0\330\2\0\0j\2\0\32\0\0\0\5\0\10\0", iov_len=724}, {iov_base="", iov_len=3372}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499991000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493646447})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0>\236\7\0\0\330\2\0\0g\2\0\32\0\0\0\5\0\10\0", iov_len=696}, {iov_base="", iov_len=3400}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499978000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=487802033})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0K\236\7\0\0\327\2\0\0f\2\0\32\0\0\0\5\0\10\0", iov_len=668}, {iov_base="", iov_len=3428}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499988000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494191132})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0Q\236\7\0\0\327\2\0\0e\2\0\32\0\0\0\5\0\10\0", iov_len=640}, {iov_base="", iov_len=3456}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493992612})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0X\236\7\0\0\326\2\0\0d\2\0\32\0\0\0\5\0\10\0", iov_len=612}, {iov_base="", iov_len=3484}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499983000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494212729})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0^\236\7\0\0\325\2\0\0c\2\0\32\0\0\0\5\0\10\0", iov_len=584}, {iov_base="", iov_len=3512}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493700428})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0e\236\7\0\0\323\2\0\0a\2\0\32\0\0\0\5\0\10\0", iov_len=556}, {iov_base="", iov_len=3540}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493892660})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0l\236\7\0\0\322\2\0\0_\2\0\32\0\0\0\5\0\10\0", iov_len=528}, {iov_base="", iov_len=3568}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493494802})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0r\236\7\0\0\317\2\0\0]\2\0\32\0\0\0\5\0\10\0", iov_len=500}, {iov_base="", iov_len=3596}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499987000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494202012})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0y\236\7\0\0\314\2\0\0[\2\0\32\0\0\0\5\0\10\0", iov_len=472}, {iov_base="", iov_len=3624}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499996000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493351033})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\177\236\7\0\0\310\2\0\0W\2\0\32\0\0\0\5\0\10\0", iov_len=444}, {iov_base="", iov_len=3652}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493489596})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\206\236\7\0\0\302\2\0\0S\2\0\32\0\0\0\5\0\10\0", iov_len=416}, {iov_base="", iov_len=3680}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494349817})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\215\236\7\0\0\272\2\0\0N\2\0\32\0\0\0\5\0\10\0", iov_len=388}, {iov_base="", iov_len=3708}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493696029})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\223\236\7\0\0\261\2\0\0I\2\0\32\0\0\0\5\0\10\0", iov_len=360}, {iov_base="", iov_len=3736}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493656972})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\232\236\7\0\0\246\2\0\0E\2\0\32\0\0\0\5\0\10\0", iov_len=332}, {iov_base="", iov_len=3764}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499979000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493775220})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\240\236\7\0\0\233\2\0\0B\2\0\32\0\0\0\5\0\10\0", iov_len=304}, {iov_base="", iov_len=3792}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499983000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494044967})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\247\236\7\0\0\220\2\0\0@\2\0\32\0\0\0\5\0\10\0", iov_len=276}, {iov_base="", iov_len=3820}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494057865})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\256\236\7\0\0\204\2\0\0?\2\0\32\0\0\0\5\0\10\0", iov_len=248}, {iov_base="", iov_len=3848}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493589271})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\264\236\7\0\0x\2\0\0>\2\0\32\0\0\0\5\0\10\0", iov_len=220}, {iov_base="", iov_len=3876}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493212160})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\273\236\7\0\0l\2\0\0>\2\0\32\0\0\0\5\0\10\0", iov_len=192}, {iov_base="", iov_len=3904}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=495100449})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\301\236\7\0\0a\2\0\0>\2\0\32\0\0\0\5\0\10\0", iov_len=164}, {iov_base="", iov_len=3932}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493625543})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\310\236\7\0\0W\2\0\0>\2\0\32\0\0\0\5\0\10\0", iov_len=136}, {iov_base="", iov_len=3960}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499978000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494262135})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\316\236\7\0\0N\2\0\0>\2\0\32\0\0\0\5\0\10\0", iov_len=108}, {iov_base="", iov_len=3988}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499984000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493144305})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\326\236\7\0\0F\2\0\0>\2\0\32\0\0\0\5\0\10\0", iov_len=80}, {iov_base="", iov_len=4016}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499994000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494472122})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\334\236\7\0\0@\2\0\0?\2\0\32\0\0\0\5\0\10\0", iov_len=52}, {iov_base="", iov_len=4044}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493679195})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\342\236\7\0\08\2\0\0@\2\0\32\0\0\0", iov_len=24}, {iov_base="\5\0\10\0", iov_len=4072}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499991000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493906992})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\351\236\7\0\0001\2\0\0@\2\0\32\0\0\0\5\0\10\0", iov_len=4092}, {iov_base="", iov_len=4}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493516326})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\357\236\7\0\0*\2\0\0@\2\0\32\0\0\0\5\0\10\0", iov_len=4064}, {iov_base="", iov_len=32}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494226348})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\366\236\7\0\0#\2\0\0@\2\0\32\0\0\0\5\0\10\0", iov_len=4036}, {iov_base="", iov_len=60}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499988000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493129508})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\374\236\7\0\0\34\2\0\0A\2\0\32\0\0\0\5\0\10\0", iov_len=4008}, {iov_base="", iov_len=88}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494048709})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\3\237\7\0\0\26\2\0\0C\2\0\32\0\0\0\5\0\10\0", iov_len=3980}, {iov_base="", iov_len=116}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493300123})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\n\237\7\0\0\r\2\0\0E\2\0\32\0\0\0\5\0\10\0", iov_len=3952}, {iov_base="", iov_len=144}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494678102})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\20\237\7\0\0\4\2\0\0I\2\0\32\0\0\0\5\0\10\0", iov_len=3924}, {iov_base="", iov_len=172}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493607705})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\27\237\7\0\0\372\1\0\0M\2\0\32\0\0\0\5\0\10\0", iov_len=3896}, {iov_base="", iov_len=200}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494250205})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\35\237\7\0\0\357\1\0\0S\2\0\32\0\0\0\5\0\10\0", iov_len=3868}, {iov_base="", iov_len=228}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499994000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493539612})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0$\237\7\0\0\344\1\0\0X\2\0\32\0\0\0\5\0\10\0", iov_len=3840}, {iov_base="", iov_len=256}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499988000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494144806})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0+\237\7\0\0\331\1\0\0]\2\0\32\0\0\0\5\0\10\0", iov_len=3812}, {iov_base="", iov_len=284}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499985000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493893914})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0001\237\7\0\0\317\1\0\0c\2\0\32\0\0\0\5\0\10\0", iov_len=3784}, {iov_base="", iov_len=312}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494006155})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\08\237\7\0\0\306\1\0\0g\2\0\32\0\0\0\5\0\10\0", iov_len=3756}, {iov_base="", iov_len=340}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499984000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494101587})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0>\237\7\0\0\275\1\0\0k\2\0\32\0\0\0\5\0\10\0", iov_len=3728}, {iov_base="", iov_len=368}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494146527})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0E\237\7\0\0\265\1\0\0n\2\0\32\0\0\0\5\0\10\0", iov_len=3700}, {iov_base="", iov_len=396}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499981000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494284264})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0L\237\7\0\0\256\1\0\0q\2\0\32\0\0\0\5\0\10\0", iov_len=3672}, {iov_base="", iov_len=424}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493709591})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0R\237\7\0\0\251\1\0\0t\2\0\32\0\0\0\5\0\10\0", iov_len=3644}, {iov_base="", iov_len=452}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493873515})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0Y\237\7\0\0\243\1\0\0v\2\0\32\0\0\0\5\0\10\0", iov_len=3616}, {iov_base="", iov_len=480}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493728268})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0_\237\7\0\0\236\1\0\0x\2\0\32\0\0\0\5\0\10\0", iov_len=3588}, {iov_base="", iov_len=508}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493883959})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0f\237\7\0\0\232\1\0\0z\2\0\32\0\0\0\5\0\10\0", iov_len=3560}, {iov_base="", iov_len=536}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499994000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493513146})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0m\237\7\0\0\227\1\0\0{\2\0\32\0\0\0\5\0\10\0", iov_len=3532}, {iov_base="", iov_len=564}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494082226})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0s\237\7\0\0\223\1\0\0|\2\0\32\0\0\0\5\0\10\0", iov_len=3504}, {iov_base="", iov_len=592}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499991000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493054772})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0z\237\7\0\0\221\1\0\0}\2\0\32\0\0\0\5\0\10\0", iov_len=3476}, {iov_base="", iov_len=620}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499988000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494414462})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\200\237\7\0\0\221\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=3448}, {iov_base="", iov_len=648}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493351272})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\207\237\7\0\0\220\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=3420}, {iov_base="", iov_len=676}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499984000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494340426})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\215\237\7\0\0\217\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=3392}, {iov_base="", iov_len=704}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493667809})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\224\237\7\0\0\217\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3364}, {iov_base="", iov_len=732}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=486954538})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\241\237\7\0\0\217\1\0\0\200\2\0\32\0\0\0\5\0\10\0", iov_len=3336}, {iov_base="", iov_len=760}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=480937127})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\265\237\7\0\0\220\1\0\0\200\2\0\32\0\0\0\5\0\10\0", iov_len=3308}, {iov_base="", iov_len=788}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499979000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=474510763})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\317\237\7\0\0\221\1\0\0\200\2\0\32\0\0\0\5\0\10\0", iov_len=3280}, {iov_base="", iov_len=816}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=487247513})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\334\237\7\0\0\222\1\0\0\200\2\0\32\0\0\0\5\0\10\0", iov_len=3252}, {iov_base="", iov_len=844}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499991000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=486940056})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\352\237\7\0\0\223\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3224}, {iov_base="", iov_len=872}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=486984305})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\367\237\7\0\0\224\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3196}, {iov_base="", iov_len=900}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494281566})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\375\237\7\0\0\225\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3168}, {iov_base="", iov_len=928}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493696137})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\4\240\7\0\0\226\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3140}, {iov_base="", iov_len=956}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499997000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493953844})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\v\240\7\0\0\227\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3112}, {iov_base="", iov_len=984}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493618008})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\21\240\7\0\0\230\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3084}, {iov_base="", iov_len=1012}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493890933})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\30\240\7\0\0\231\1\0\0\200\2\0\32\0\0\0\5\0\10\0", iov_len=3056}, {iov_base="", iov_len=1040}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=487188696})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0%\240\7\0\0\232\1\0\0\200\2\0\32\0\0\0\5\0\10\0", iov_len=3028}, {iov_base="", iov_len=1068}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499982000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493980147})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0+\240\7\0\0\233\1\0\0\177\2\0\32\0\0\0\5\0\10\0", iov_len=3000}, {iov_base="", iov_len=1096}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=487447122})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\09\240\7\0\0\235\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=2972}, {iov_base="", iov_len=1124}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499994000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=487128973})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0F\240\7\0\0\236\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=2944}, {iov_base="", iov_len=1152}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499987000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494146151})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0L\240\7\0\0\237\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=2916}, {iov_base="", iov_len=1180}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499979000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493901477})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0S\240\7\0\0\240\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=2888}, {iov_base="", iov_len=1208}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499987000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493863151})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0Y\240\7\0\0\241\1\0\0~\2\0\32\0\0\0\5\0\10\0", iov_len=2860}, {iov_base="", iov_len=1236}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493463363})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0`\240\7\0\0\242\1\0\0}\2\0\32\0\0\0\5\0\10\0", iov_len=2832}, {iov_base="", iov_len=1264}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499994000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494118675})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0g\240\7\0\0\243\1\0\0}\2\0\32\0\0\0\5\0\10\0", iov_len=2804}, {iov_base="", iov_len=1292}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493579965})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0m\240\7\0\0\243\1\0\0|\2\0\32\0\0\0\5\0\10\0", iov_len=2776}, {iov_base="", iov_len=1320}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499987000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493886500})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0t\240\7\0\0\244\1\0\0|\2\0\32\0\0\0\5\0\10\0", iov_len=2748}, {iov_base="", iov_len=1348}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493268717})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0z\240\7\0\0\245\1\0\0|\2\0\32\0\0\0\5\0\10\0", iov_len=2720}, {iov_base="", iov_len=1376}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493602349})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\201\240\7\0\0\246\1\0\0|\2\0\32\0\0\0\5\0\10\0", iov_len=2692}, {iov_base="", iov_len=1404}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494598281})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\210\240\7\0\0\247\1\0\0{\2\0\32\0\0\0\5\0\10\0", iov_len=2664}, {iov_base="", iov_len=1432}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=486950077})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\225\240\7\0\0\250\1\0\0z\2\0\32\0\0\0\5\0\10\0", iov_len=2636}, {iov_base="", iov_len=1460}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494720655})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\234\240\7\0\0\251\1\0\0z\2\0\32\0\0\0\5\0\10\0", iov_len=2608}, {iov_base="", iov_len=1488}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494828727})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\242\240\7\0\0\252\1\0\0z\2\0\32\0\0\0\5\0\10\0", iov_len=2580}, {iov_base="", iov_len=1516}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494613331})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\251\240\7\0\0\253\1\0\0y\2\0\32\0\0\0\5\0\10\0", iov_len=2552}, {iov_base="", iov_len=1544}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494808396})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\257\240\7\0\0\253\1\0\0x\2\0\32\0\0\0\5\0\10\0", iov_len=2524}, {iov_base="", iov_len=1572}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499989000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494399623})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\266\240\7\0\0\254\1\0\0x\2\0\32\0\0\0\5\0\10\0", iov_len=2496}, {iov_base="", iov_len=1600}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499986000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=493757810})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\274\240\7\0\0\255\1\0\0x\2\0\32\0\0\0\5\0\10\0", iov_len=2468}, {iov_base="", iov_len=1628}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499987000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=482470640})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\320\240\7\0\0\255\1\0\0w\2\0\32\0\0\0\5\0\10\0", iov_len=2440}, {iov_base="", iov_len=1656}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499991000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=494053980})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\327\240\7\0\0\256\1\0\0w\2\0\32\0\0\0\5\0\10\0", iov_len=2412}, {iov_base="", iov_len=1684}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499993000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=480759611})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\352\240\7\0\0\257\1\0\0w\2\0\32\0\0\0\5\0\10\0", iov_len=2384}, {iov_base="", iov_len=1712}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499990000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=479996644})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\376\240\7\0\0\257\1\0\0v\2\0\32\0\0\0\5\0\10\0", iov_len=2356}, {iov_base="", iov_len=1740}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499987000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=475282120})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0\31\241\7\0\0\260\1\0\0v\2\0\32\0\0\0\5\0\10\0", iov_len=2328}, {iov_base="", iov_len=1768}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=467263563})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\09\241\7\0\0\261\1\0\0v\2\0\32\0\0\0\5\0\10\0", iov_len=2300}, {iov_base="", iov_len=1796}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499985000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=462287112})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\32\0\0\0\2\0\24\0a\241\7\0\0\261\1\0\0w\2\0\32\0\0\0\5\0\10\0", iov_len=2272}, {iov_base="", iov_len=1824}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 28
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=499992000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=0, tv_nsec=250582453})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="#\0\0\0\3\0\30\0\354\5\0\0[\242\7\0}\0\0\0\1\0\0\0#\0\0\0\4\0\34\0"..., iov_len=2244}, {iov_base="", iov_len=1852}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 52
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=7, tv_nsec=623939000}, NULL, 8) = 1 ([{fd=4, revents=POLLIN}], left {tv_sec=7, tv_nsec=501891716})
recvmsg(4, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base=">\0\0\0\1\0\10\0", iov_len=2192}, {iov_base="", iov_len=1904}], msg_iovlen=2, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = 8
recvmsg(4, {msg_namelen=0}, MSG_DONTWAIT|MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
write(6, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0x61d6a7841bf0, FUTEX_WAKE_PRIVATE, 1) = 1
sendmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1d\2\0\0\26\0\0\0~\0\0\0\1\1o\0\33\0\0\0/org/lap"..., iov_len=144}, {iov_base="$\0\0\00040250e9b-5f17-4364-bef2-42ca"..., iov_len=612}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 756
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 0 (Timeout)
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=7, tv_nsec=500011000}, NULL, 8) = 1 ([{fd=58, revents=POLLIN}], left {tv_sec=7, tv_nsec=491153855})
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
recvmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\4\1\1)\0\0\0\20\0\0\0v\0\0\0\1\1o\0\33\0\0\0/org/lap"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 177
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
recvmsg(58, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 2 ([{fd=5, revents=POLLIN}, {fd=58, revents=POLLIN}], left {tv_sec=0, tv_nsec=0})
read(5, "\3\0\0\0\0\0\0\0", 8)          = 8
sendmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1)\0\0\0\27\0\0\0\177\0\0\0\1\1o\0\33\0\0\0/org/lap"..., iov_len=144}, {iov_base="$\0\0\00040250e9b-5f17-4364-bef2-42ca"..., iov_len=41}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 185
poll([{fd=58, events=POLLIN}], 1, 25000) = 1 ([{fd=58, revents=POLLIN}])
recvmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\2\1\1\0\0\0\0\21\0\0\0&\0\0\0\6\1s\0\5\0\0\0:1.68\0\0\0"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 56
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
recvmsg(58, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=58, events=POLLIN}], 1, 25000) = 1 ([{fd=58, revents=POLLIN}])
recvmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\2\1\1f\2\0\0\22\0\0\0006\0\0\0\6\1s\0\5\0\0\0:1.68\0\0\0"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 686
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
recvmsg(58, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
sendmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\0\1)\0\0\0\30\0\0\0\177\0\0\0\1\1o\0\33\0\0\0/org/lap"..., iov_len=144}, {iov_base="$\0\0\00040250e9b-5f17-4364-bef2-42ca"..., iov_len=41}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 185
poll([{fd=58, events=POLLIN}], 1, 25000) = 1 ([{fd=58, revents=POLLIN}])
recvmsg(58, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\2\1\1f\2\0\0\23\0\0\0006\0\0\0\6\1s\0\5\0\0\0:1.68\0\0\0"..., iov_len=2048}], msg_iovlen=1, msg_controllen=0, msg_flags=MSG_CMSG_CLOEXEC}, MSG_CMSG_CLOEXEC) = 686
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
recvmsg(58, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
recvmsg(58, {msg_namelen=0}, MSG_CMSG_CLOEXEC) = -1 EAGAIN (Resource temporarily unavailable)
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
ppoll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}, {fd=58, events=POLLIN}, {fd=61, events=POLLIN}], 4, {tv_sec=0, tv_nsec=0}, NULL, 8) = 1 ([{fd=5, revents=POLLIN}], left {tv_sec=0, tv_nsec=0})
read(5, "\5\0\0\0\0\0\0\0", 8)          = 8
write(8, "\1\0\0\0\0\0\0\0", 8)         = 8
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ef0) = 0
ioctl(38, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38ee0) = 0
close(38)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dd0) = 0
ioctl(40, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38dc0) = 0
close(40)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dc0) = 0
ioctl(41, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38db0) = 0
close(41)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dd0) = 0
ioctl(44, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38dc0) = 0
close(44)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dc0) = 0
ioctl(46, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38db0) = 0
close(46)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dd0) = 0
ioctl(49, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38dc0) = 0
close(49)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dc0) = 0
ioctl(51, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38db0) = 0
close(51)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dd0) = 0
ioctl(54, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38dc0) = 0
close(54)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38dc0) = 0
ioctl(56, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38db0) = 0
close(56)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
close(42)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d70) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d70) = 0
munmap(0x76bf55013000, 8294400)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d80) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_DESTROY, 0x7fffc2f38e50) = 0
close(47)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d70) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d70) = 0
munmap(0x76bf5482a000, 8294400)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d80) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_DESTROY, 0x7fffc2f38e50) = 0
close(52)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d70) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d70) = 0
munmap(0x76bf49a17000, 8294400)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d80) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_DESTROY, 0x7fffc2f38e50) = 0
close(57)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d70) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d70) = 0
munmap(0x76bf4922e000, 8294400)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d80) = 0
ioctl(21, DRM_IOCTL_SYNCOBJ_DESTROY, 0x7fffc2f38e50) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f37db0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e20) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f37db0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e20) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f37db0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e20) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e50) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e50) = 0
ioctl(21, DRM_IOCTL_GEM_CLOSE, 0x7fffc2f38e78) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38d60) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38da0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38da0) = 0
munmap(0x76bf69b2d000, 77824)           = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38db0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d40) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d30) = 0
munmap(0x76bf84048000, 8192)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d40) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d30) = 0
munmap(0x76bf84007000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d40) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d30) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38d30) = 0
munmap(0x76bf8404a000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d40) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38cb0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38cf0) = 0
munmap(0x76bf680fe000, 1048576)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38cb0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38cf0) = 0
munmap(0x76bf84003000, 16384)           = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38d00) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38ce0) = 0
munmap(0x76bf7c04c000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38ce0) = 0
munmap(0x76bf7c00c000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38ce0) = 0
munmap(0x76bf69be0000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38ce0) = 0
munmap(0x76bf69ba0000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38ce0) = 0
munmap(0x76bf69b80000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x58, 0x30), 0x7fffc2f38ca0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38ce0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f38ce0) = 0
munmap(0x76bf69b40000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38cf0) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e50) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f38e80) = 0
ioctl(39, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0xcf, 0x10), 0x7fffc2f38e70) = 0
close(39)                               = 0
munmap(0x76bf8457b000, 3888)            = 0
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0x61d6a7821e70, FUTEX_WAKE_PRIVATE, 2147483647) = 0
newfstatat(AT_FDCWD, "/var/run/powerd-inhibit-suspend", 0x7fffc2f393b0, 0) = -1 ENOENT (No such file or directory)
write(5, "\1\0\0\0\0\0\0\0", 8)         = 8
close(62)                               = 0
close(61)                               = 0
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK, sa_restorer=0x76bf8b64bcd0}, {sa_handler=0x76bf8a9ca5d0, sa_mask=[], sa_flags=SA_RESTORER|SA_ONSTACK|SA_RESTART|SA_NOCLDSTOP, sa_restorer=0x76bf8b64bcd0}, 8) = 0
write(6, "\1\0\0\0\0\0\0\0", 8)         = 8
write(6, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0x61d6a7841bf0, FUTEX_WAKE_PRIVATE, 1) = 1
munmap(0x76bf84713000, 962560)          = 0
munmap(0x76bf8be1d000, 16384)           = 0
futex(0x61d6a79b4e80, FUTEX_WAKE_PRIVATE, 2147483647) = 1
futex(0x61d6a79b4e30, FUTEX_WAKE_PRIVATE, 1) = 1
futex(0x76bf691ff990, FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME, 12521, NULL, FUTEX_BITSET_MATCH_ANY) = -1 EAGAIN (Resource temporarily unavailable)
futex(0x76bf63fa1734, FUTEX_WAKE_PRIVATE, 2147483647) = 0
getpid()                                = 12514
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a200) = 0
munmap(0x76bf7c11f000, 131072)          = 0
poll([{fd=36, events=POLLIN|POLLPRI}], 1, 10) = 1 ([{fd=36, revents=POLLIN|POLLPRI}])
poll([{fd=36, events=POLLIN|POLLPRI}], 1, 10) = 1 ([{fd=36, revents=POLLIN|POLLPRI}])
futex(0x76bf38000f50, FUTEX_WAKE_PRIVATE, 2147483647) = 1
futex(0x76bf55ffc990, FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME, 12529, NULL, FUTEX_BITSET_MATCH_ANY) = 0
futex(0x76bf44000f50, FUTEX_WAKE_PRIVATE, 2147483647) = 1
futex(0x76bf689fe990, FUTEX_WAIT_BITSET|FUTEX_CLOCK_REALTIME, 12523, NULL, FUTEX_BITSET_MATCH_ANY) = 0
getpid()                                = 12514
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a250) = 0
munmap(0x76bf8a873000, 4096)            = 0
munmap(0x76bf87951000, 8192)            = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a330) = 0
sendmsg(19, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\1\1\207\0\0\0\10\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/fre"..., iov_len=144}, {iov_base="\202\0\0\0type='signal',sender='org.fr"..., iov_len=135}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 279
sendmsg(19, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="l\1\1\1I\0\0\0\t\0\0\0\177\0\0\0\1\1o\0\25\0\0\0/org/fre"..., iov_len=144}, {iov_base="D\0\0\0type='signal',interface='nvi"..., iov_len=73}], msg_iovlen=2, msg_controllen=0, msg_flags=0}, MSG_NOSIGNAL) = 217
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf8a874000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf87a2b000, 8192)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf8404b000, 16384)           = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf87a49000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf87a0e000, 8192)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf879d3000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf879d1000, 8192)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf879cc000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf60100000, 1048576)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf84066000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7d70a000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf8400c000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7d64a000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7d252000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c47f000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf87a20000, 16384)           = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c2ff000, 1048576)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf8404f000, 16384)           = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7d232000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c23f000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c13f000, 1048576)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c0df000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c0bf000, 131072)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c07f000, 262144)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf6bf00000, 1048576)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf84008000, 16384)           = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf8a872000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf87a2a000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf879cd000, 4096)            = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf55ffd000, 2097152)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c27f000, 524288)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7c3ff000, 524288)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf54384000, 2097152)         = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf7d68a000, 524288)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf68054000, 524288)          = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x4f, 0x20), 0x7fffc2f3a230) = 0
munmap(0x76bf6be80000, 524288)          = 0
ioctl(16, _IOC(_IOC_READ|_IOC_WRITE, 0x6d, 0, 0x10), 0x7fffc2f3a350) = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a2d0) = 0
munmap(0x76bf7c06c000, 77824)           = 0
munmap(0x76bf7d637000, 77824)           = 0
munmap(0x76bf84053000, 77824)           = 0
munmap(0x76bf8a875000, 4096)            = 0
munmap(0x76bf845a9000, 65536)           = 0
close(18)                               = 0
close(17)                               = 0
close(16)                               = 0
ioctl(15, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a350) = 0
close(15)                               = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x41, 0x38), 0x7fffc2f3a210) = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f39870) = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a250) = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a250) = 0
close(23)                               = 0
close(20)                               = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a330) = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a280) = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a2a0) = 0
close(14)                               = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x2a, 0x20), 0x7fffc2f39890) = 0
close(13)                               = 0
close(22)                               = 0
ioctl(12, _IOC(_IOC_READ|_IOC_WRITE, 0x46, 0x29, 0x10), 0x7fffc2f3a360) = 0
close(12)                               = 0
lseek(24, 0, SEEK_SET)                  = 0
fcntl(24, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_CUR, l_start=0, l_len=1}) = 0
close(24)                               = 0
lseek(25, 4096, SEEK_SET)               = 4096
fcntl(25, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_CUR, l_start=0, l_len=1}) = 0
close(25)                               = 0
poll([{fd=11, events=0}], 1, 0)         = 0 (Timeout)
recvmsg(11, {msg_namelen=0}, 0)         = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(11, {msg_namelen=0}, 0)         = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=11, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=11, revents=POLLOUT}])
writev(11, [{iov_base="<\0\2\0\0\0`\0+\0\1\0", iov_len=12}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 12
poll([{fd=11, events=POLLIN}], 1, -1)   = 1 ([{fd=11, revents=POLLIN}])
recvmsg(11, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\0\33\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(11, {msg_namelen=0}, 0)         = -1 EAGAIN (Resource temporarily unavailable)
shutdown(11, SHUT_RDWR)                 = 0
close(11)                               = 0
exit_group(0)                           = ?
+++ exited with 0 +++

…acks

-  In sugar3/graphics/alert.py, update the label wrapping call by replacing the deprecated set_line_wrap() with set_wrap().
- In sugar3/graphics/palettewindow.py, change the connection for the 'clicked' signal in WidgetInvoker so that it now uses __clicked_cb (for non‐event driven activations) instead of __click_event_cb. This ensures the intended callback is invoked for user interactions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants