Skip to content

Instantly share code, notes, and snippets.

@csgordon
Last active September 21, 2022 16:03
Show Gist options
  • Save csgordon/44e153521445c1e5a265b66e89615b49 to your computer and use it in GitHub Desktop.
Save csgordon/44e153521445c1e5a265b66e89615b49 to your computer and use it in GitHub Desktop.

Getting Help

Getting help with FreeBSD has been... interesting.

The best place to start is often the FreeBSD forums, where the question you may have has very often been answered in full. But this comes with some important caveats:

  • The forums explicitly state that if you're using a derivative (like GhostBSD) then the forum rules say to just not post there. This is on one hand understandable: derivatives in general can make wild changes (I've been around long enough to remember early Ubuntu users trying to get help from long-time Debian users.... even early Ubuntu had made major changes to the point where Debian users genuinely couldn't help). And certainly there are some FreeBSD derivatives that have made major changes, like helloSystem and ravynOS, not to mention whatever sourcery NomadBSD has done to filesystem mounting. On the other hand, GhostBSD seems (famous last words) to have made rather minimal changes other than a nicely packaged installer, and while it has its own ports tree and binary pkg repo, these are really just snapshots of the official ones plus a few extra packages. So in that case it seems a bit extreme.
  • The number one answer on the forums is to read the FreeBSD Handbook (https://docs.freebsd.org/en/books/handbook/), though this also has caveats.
    • Mostly, this is an incredible resource. It's the kind of thing I wished had existed for Linux back when I started using it in the early 2000s, with extensive documentation of how different services were configured, what alternative options were, and much, much more!
    • It also suffers from the problem that because it tries to teach the reader everything from fundamentals, it's often hard to find any kind of quick answer in the Handbook when you just really need to get something to work. When I first tried to set up bhyve, I really needed to get Windows up and running so I could sign a PDF for work. I didn't get any quick answers there or elsewhere, and ended up firing up a Mac for that, because after an hour of searching I'd finally found many references to the fact that wireless cards cannot be used for virtual bridges, and the solution was to set up NAT. But how do I do that? I couldn't find any concise answer in the Handbook, and didn't have time to digest the 4 relevant chapters.
    • The Handbook is also missing some critical information. It's apparently "widely known" that you can't use wireless cards for virtual bridges, but this doesn't get mentioned in the relevant Handbook chapters, even though it's critical to getting virtualization to be useful on a laptop. The Handbook also only covers things that are part of the base system. Frustratingly, while bhyve is (deservedly!) one of FreeBSD's bragging points, only the kernel support is actually part of FreeBSD. To actually use bhyve you have to either write your own client, or use the vm-bhyve package/port, which provides a very powerful command line configuration system (this is really the only workable way to use bhyve as a replacement for VirtualBox/etc.). Because that's not in the base system, it's not in the handbook. And its documentation is therefore of much lower quality; no mention is made of the wireless card issue in the vm-bhyve docs, all the tutorials just silently assume you have a wired ethernet connection.
  • The forums and Handbooks interact in sometimes frustrating ways. The default forum answer, as mentioned, is to read the Handbook chapter. But for topics where the handbook has major gaps (wireless cards, bluetooth, virtualization), this is not actionable advice. I saw quite a few threads on the forums which had the general flow:
    1. Go read the Handbook for topic X
    2. I read the Handbook, it doesn't address this and/or the guidance there doesn't work.
    3. Oh, we see, well yeah, for topic X the handbook is actually missing key information A/B/C and/or is several years out of date.
  • Perhaps my expectations were overly optimistic from not having used internet forums in a number of years, but yeah, they've got those posters who are basically just assholes to everyone. One particular user seems to show up in half the threads I read, and is rude without provocation in most of the posts I've seen while searching for solutions. (And I've seen enough to say that no, it's not a second-language issue.) That's of course not the only user.

Linux Software

Spotify

Update: Later day, and network access for Spotify is problematic. I get a lot of errors in a terminal of the form ERR: getaddrinfo failed: -3. Presumably there's an issue with network access from the linux compat?

Zulip

  • Attempted to install Zulip's Linux client in the Ubuntu jail
    • Zulip distributes their application as an AppImage, which leads to some issues
    • The basic idea should be to copy the AppImage into /compat/ubuntu, set the permissions correctly (execute for everyone, owned by root, this being specific to the Linux jail as opposed to Linux itself), and run the AppImage as an executable.
    • The first error was complaints about FUSE not being installed (in the jail). apt install libfuse2 fixed that, leading to...
    • Complaints about ffmpeg. Recall that ffmpeg was installed for Spotify earlier. I've poked around and not found any separate packages that look relevant. The main sympton is that running the AppImage yields /tmp/.../zulip: error while loading shared libraries: libffmpeg.so: cannot close file descriptor: Error 38.
    • Before fixing the FUSE issue, running the AppImage under truss suggested using the --appimage-extract option, which creates a squashfs-root folder in your (BSD) home directory. I copied that into /compat/ubuntu, fixed up ownership (root, if you don't do this, manually running will complain about root not owning the chromium sandbox) and permissions, and tried running the zulip executable there. This results in a different error: .../squashfs-root/zulip: error while loading shared libraries: libffmpeg.so: cannot open shared object file: No such file or directory.
    • For the unpacked attempt, this almost certainly refers to the libffmpeg.so that is in the extracted directory. I tried adding that to the (BSD) LD_LIBRARY_PATH, but that didn't really work.
    • Finally I tried running the extracted binary from within a chroot into the Ubuntu jail, and after adding the --no-sandbox option that at least loaded and gave me the GUI. I haven't tried logging in and such, which I think might be better to do after adding a user to the Ubuntu jail.
    • I did go back and try the AppImage itself from within the chroot; it failed with the same error about not closing the file descriptor for libffmpeg
  • Sadly, I cannot sign in; the app is unable to connect to the official zulipchat.com server (either for my research group, or for the Lean theorem prover. I get the following pop-up after (presumably) a time-out:

Error: https://leanprover.zulipchat.com does not appear to be a valid Zulip server. Make sure that

  • You can connect to that URL in a web browser.
  • If you need a proxy to connect to the internet, that you've configured your proxy in the Network Settings.
  • The server has a valid certificate.
  • The SSL is correctly configured for the certificate. Check out the SSL troubleshooting guide - https://zulip.readthedocs.io/en/stable/production/ssl-certificates.html

Update: This appears to be due to resolv.conf issues, which I've now... resolved. But in the process I learned that running directly from within the chroot will create files within /compat/ubuntu which will shadow those in the usual BSD locations, which is usually undesirable. I'll just use Zulip in a browser (which is snappy anyways), and chalk this up to AppImages sucking.

Update: After wasting a stupid amount of time on the above AppImage nonsense, I learned that they have a Debian package: https://zulip.com/help/desktop-app-install-guide. It installs and works as expected. There's also a beta TUI I should try: https://github.com/zulip/zulip-terminal#readme

Zoom

  • Zoom actually provides a pretty clean-cut Debian package: wget https://zoom.us/client/latest/zoom_amd64.deb while chroot-ed into Ubuntu, dpkg -i zoom_amd64.deb complains about missing dependencies, apt --fix-broken install installs them and fixes Zoom, and it's installed.
  • Running the link in /compat/ubuntu/usr/bin/zoom fails, running what it points to yields a complaint about libcef.so, which seems to be part of https://packages.ubuntu.com/focal/syslog-ng-core, which doesn't help
  • Next up, trying https://cdn.zoom.us/prod/5.9.6.2225/zoom_amd64.deb, since an earlier version had simliar issues: https://community.zoom.com/t5/Meetings/Version-5-10-3-2778-is-broken-in-openSUSE/m-p/55443
  • Okay, that version works, as far as installing and then actually running when I launch the ZoomLauncher inside the Ubuntu system, from the BSD side. My employer uses SSO; clicking SSO sign-in takes me to the right place, and I can log in there, and then I get to the webpage with the 'Lauch Zoom' button. It's a hyperlink with a token, to a zoomus:// URI. On Windows/Mac/Linux, this would launch the Zoom client. Clicking it from a BSD version of Firefox doesn't do anything. Running the ZoomLauncher binary passing that as a parameter (in single quotes in the shell) doesn't do anything. Using the zoom binary instead complains about shared libraries (presumably the reason for the launcher). Need to look into this further.
    • Worst case: the web client via Firefox seems to work okay, can get sound and video.
  • Ah: per https://unix.stackexchange.com/questions/497146/create-a-custom-url-protocol-handler there is probably a protocol for handling zoomus:// URIs. Indeed, in /compat/ubuntu/usr/share/applications/Zoom.desktop:
[Desktop Entry]
Name=Zoom
Comment=Zoom Video Conference
Exec=/usr/bin/zoom %U
Icon=Zoom
Terminal=false
Type=Application
Encoding=UTF-8
Categories=Network;Application;
StartupWMClass=zoom
MimeType=x-scheme-handler/zoommtg;x-scheme-handler/zoomus;x-scheme-handler/tel;x-scheme-handler/callto;x-scheme-handler/zoomphonecall;application/x-zoom
X-KDE-Protocols=zoommtg;zoomus;tel;callto;zoomphonecall;
Name[en_US]=Zoom

I've copied it over: cp /compat/ubuntu/usr/share/applications/Zoom.desktop ~/.local/share/applications, and edited the binary path to point to the actual binary (/opt/zoom/ZoomLauncher) in the compat path. I've also registered it to handle zoomus links: xdg-mime default Zoom.desktop x-scheme-handler/zoomus (the desktop file declares others, but I'm focused on logging in).

  • After restarting Firefox to pick up the new handler, I can click the SSO button in Zoom, sign in, get a message about allowing Zoom to open zoomus links in Firefox(!), and when I accept it does make Zoom show a "Connecting..." message and spinner, until I get kicked back to the login screen with a red "Timeout" under the password field.
  • Also tried signing in via Google. Same deal: gets the app to "Connecting to Google...", followed by a timeout.
  • Also tried signing in via just an email address for a personal account. Also a timeout. So it appears to be a general auth-to-zoom issue, not specific to 3rd-party auth.

Update: After figuring out that I need to manually propagate /etc/resolv.conf changes from BSD to Ubuntu, and also registering for zoommtg links, I can sign in with SSO.

Update 2: Could have sworn I tried this the day I got Zoom working, but apparently clicking "New Meeting" does nothing. Other buttons work. But if I start a new meeting from the web interface, it opens in the local client just fine, and the meeting works without issue. So this is weird, but workable. I have attached zoom.log, a truss -f log of starting the app, clicking the button 3 times, and then exiting.

Microsoft Teams

Once you're on enough university committees, using Teams is unavoidable. The .deb installs without issue in the chroot, but the application just does nothing. No output.

truss -f shows it forks a child process that then loops failing on the same Linux APIs... maybe an infidelity in the Linuxulator?

Zotero

Grabbed the Linux tarball, which is supposed to be ready-to-run, unpacked as directed but inside /compat/ubuntu, fixed permissions (chown -R root). Running /compat/ubuntu/opt/zotero/zotero complained about /bin/bash not existing and exited; that's the standard location for the bash binary on Linux, but on BSD it's /usr/local/bin/bash. I created a symlink.

Now it runs, but it takes forever to show up on screen (a couple minutes). When it finally appears it logs a message:

Client failed to connect to the D-BUS daemon: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.

dbus is running; GhostBSD enables it by default and I can confirm it's running in my MATE session.

But despite the complaint, it seems to work. I installed the Zotero Connector extension for Firefox (the native BSD one), and it can save to my Zotero library as expected.

Dropbox

Dropbox provides the source code for their Linux app. Most Linux apps really only rely on basic functionality common to all UNIX-like OSes, so let's test that out.

Grabbed the code from https://linux.dropbox.com/packages/nautilus-dropbox-2020.03.04.tar.bz2. After installing pkgconf (a drop-in BSD replacement for pkg-config) and nautilus, and pip install docutils, ./configure succeeds. Then make succeeds! But... this is only the nautilus extension as it turns out. When you launch it it tries to install a binary Linux blob --- it actually crashes before getting the blob.

There are a number of open source clones. I'll try those. Running something that uses filesystem monitoring APIs from Linux, which differ significantly from the BSDs, through the Linuxulator seems likely to have unfortunate consequences, even if I did hot-link my BSD Dropbox folder into the compat directory.

The default answer seems to be "use rclone", but this is a manual ftp-style Dropbox client, not a file syncing tool.

There is an open source client Maestral, for which a dedicated OpenBSD user has implemented experimental support: samschott/maestral#681. It seems to mostly work modulo some unresolved sync errors; I think it's worthwhile for me to give that a shot.

Office Software

LibreOffice (formerly OpenOffice, StarOffice) exists for FreeBSD of course, but... it's never worked really well for me. I'm trying WPS, which is supposed to be a heavily polished version: https://www.wps.com/

Okay, scratch that. It doesn't actually run under the Linuxulator, only from within a chroot (see problems with this approach documented elsewhere), and it's really a thin sheen over LibreOffice + some Office365-like functionality. I'm just installing the (BSD-native) LibreOffice.

Programming Languages, Proof Assistants, IDEs

OCaml / opam / Coq

pkg install ocaml-opam installed the most recent release of opam, but you should pkg install gmake beforehand, or the build of the default switch during opam init will fail, since building the OCaml compiler requires gmake (which I recall from years ago is the BSD packaging of GNU make, as opposed to BSD make)

  • Haven't tried to set up proofgeneral for Coq yet; will almost certainly work though since it's an Emacs MELPA package

Rust

rustup's usual procedures just works. FreeBSD is a Tier 2 environment, though I could also work inside the Ubuntu jail.

VS Code

I had originally looked at VS Codium, which I've started using on other machines, but pkg install vscode builds essentially the same thing (VS Code without all the Microsoft usage instrumentation). Installed plugins for LaTeX, Rust, and more without issue. Copied over my personal settings.json from a Linux machine, which unsurprisingly worked perfectly.

Update: It turns out that many Microsoft extensions don't work except in the Microsoft-blessed binaries of VS Code :-/ I generally don't use those, but on occasion the remote development extensions are valuable. I've worked around this by installing the .deb for VS Code Insiders (to avoid conflicts between the BSD and Linux apps) into /compat/ubuntu, then:

  • cp /compat/ubuntu/usr/share/applications/code-insiders.desktop .local/share/applications/
  • Edit .local/share/applications/code-insiders.desktop to invoke the binary at its /compat/ubuntu prefix path, and add the --no-sandbox flag that's necessary for running any Linux Electron-based apps. Now I have both programs set up and in menus.

Lean 4

There is a package for Lean 3, but I have two projects involving Lean 4. There is no mention of BSD anywhere in the docs, and the build process relies on the Nix package system, so unlike most UNIX software this looks like it might be non-trivial to port (due to the build system, not the actual dependencies).

My current poorly-tested workaround is to install Lean 4 inside the Linuxulator. A feature of the setup process I used, with the FreeBSD debootstrap package, is that it sets up a Linux user for each FreeBSD user, and auto-mounts their home directory. So I entered the Linux compat filesystem via chroot, sued to my user account as a Linux account, and installed Lean 4 via elan. That installed everything in ~/.elan/, which lives at the same location from the FreeBSD side, too. Then in a FreeBSD shell, I can just add that to my path, and Lean runs, with some awkward messages about canonicalization:

➜  ~ lean --version
warning: could not canonicalize path: '/usr/home/csgordon'
warning: could not canonicalize path: '/usr/home/csgordon'
warning: could not canonicalize path: '/usr/home'
warning: could not canonicalize path: '/usr'
warning: could not canonicalize path: '/'
Lean (version 4.0.0, commit 96de208a6b1a, Release)
➜  ~ 

I don't yet know if this will cause problems, but it was relatively clean, and might be a workable way to install certain other Linux software as well. (Like Dropbox?)

Scala 3

The recommended way to install Scala 3 is via Coursier. There's a pkg for Coursier, but it's really old (a 1.1, while the current release is a milestone for 2.1.0).

Fortunately Coursier provides the latest JAR packaged as a binary blob inside a shell script :-/

pkg install openjdk18 followed by downloading https://github.com/coursier/coursier/raw/gh-pages/coursier yields something that runs, but it's kind broken. But not completely broken. I filed a bug (coursier/coursier#2478). Apparently not a lot of modern Scala users on FreeBSD, as this isn't the first time it's broken in random ways on FreeBSD: coursier/coursier#707

.NET Core

There is no official .NET Core package for FreeBSD (or any other BSD). This has been desired for a long time, but there's still nothing official. The tracking issue for support (dotnet/source-build#1139) recently passed its 3 year anniversary, though unlike most threads that age the discussion seems to have been consistently lively, with real work happening for it. There is a fork (and a single fork thereof) for patching the build process to generate working .NET Core systems: https://github.com/Thefrank/dotnet-freebsd-crossbuild The build process is unsurprisingly involved, but there are binary releases I'll try to get working.

Python

GhostBSD comes with Python 3.9 at the moment. I did manually have to install pip, and later py39-sqlitee in order for NLTK to work.

Windows VM via bhyve

I'm liking the bhyve interface so far, but have not managed to get guest internet access working.

I followed https://github.com/churchers/vm-bhyve/wiki/Quickstart (using a directory, not a zpool) and https://github.com/churchers/vm-bhyve/wiki/Running-Windows, and can install the eval version of Windows from ISO. During my brief usage via VNC, the UI is a little sluggish. It's possible that RDP to the guest might be better, but there's no internet access, even though I followed the network setup carefully.

Apparently this may be related to some kind of limitation with wifi interfaces: churchers/vm-bhyve#435 (comment) That page suggets using NAT as a workaround, but the linked NAT page suggests the feature is not actually usable? Broadly the documentation for bhyve networking is severely lacking. It is various degrees of out-of-date and assuming you've a seasoned network admin, like Linux networking docs in the 90s.

I tried manually adding an IP to the public switch:

vm switch address public 192.168.8.1/24

This did result in some actual bytes-in when looking at vm switch info public (previously bytes-in was 0) but no internet access in the guest. Even very recent posts about following the instructions I used suggest it should "just work," so either this is a wifi-to-bhyve issue, or I missed something subtle and need to do something like run a DHCP server on the switch or set a fixed IP in the guest, or something else dumb. I'll try to figure out the NAT solution... later.

After a stupid amount of searching, I finally found a page that has all-in-one instructions on how to quickly set this up: https://www.netscylla.com/blog/2021/06/11/FreeBSD-and-Bhyve.html However, there are a couple caveats that have stopped me from using this so far:

Update 8/9/2022: After a lucky Google search, I found https://adventurist.me/posts/00304, which is a slightly cleaned-up version of an older FreeBSD virtualization post (https://lists.freebsd.org/pipermail/freebsd-virtualization/2014-October/002998.html) on using ipfw NAT to connect a virtual bridge to a jail and a bhyve vm. The instructions are clear and actually make sense. I didn't quite follow them (I didn't change all the rc settings, but flipped things manually), but I don't think that's the issue. There's some changes in bhyve networking since then (the old 2014 post was prior to the vm switch subcommand), and the newer post manually creates all the interfaces that bhyve should manage. It's also possible I'm goofing the Windows side of things in my attempt to set up a static IP; I should give a FreeBSD guest a shot, since the post has partial guest instructions there.

Eventually, per https://github.com/churchers/vm-bhyve/wiki/NAT-Configuration, I should be able to run dnsmasq to offer DHCP on the virtual switch.

Update 8/15/22: Okay, I've stumbled across https://freebsdfoundation.org/wp-content/uploads/2020/01/Arranging-Your-Virtual-Network-on-FreeBSD.pdf, which is recent and encyclopedic. One recurring confusion I'm having is that bhyve had me set up a 'switch' but most guides talk about using a 'bridge', which appears to be a specialized kind of switch (specialized to basically copy packets back and forth, which is what I want), but I can't find clear distinctions between them. It appears the vm switch subcommand is supposed to automatically create a bridge for each vm switch according to the man page, but I don't see this in my ifconfig output.

Update 8/17/22: I'm also going to try this very minimal ipfw setup before I dig deep into the FreeBSD Journal article above: https://www.neelc.org/posts/freebsd-ipfw-nat/

Containers

FreeBSD docker support used to work, but has been broken now for several years. In principle it's sort of not required given the robust jail system, and FreeBSD has a rather polished BSD-only alternative, Bastille: https://bastillebsd.org/.

But Bastille can't run Linux docker containers. So my options are:

  • Try to run docker via the Linuxulator. Seems like asking for too much, though maybe the changes to Docker for WSL resulted in it using more basic APIs?
  • Get Linux (Regolith Desktop?) running in a bhyve VM, and run docker containers there. Seems like the most likely option.

Also relevant, there is the start of a port of podman and buildah to FreeBSD: https://lists.freebsd.org/archives/freebsd-jail/2022-May/000129.html This would be for FreeBSD containers, not Linux containers, but it's possible that some things might run through the Linuxulator correctly.

VirtualBox

As an interim solution while I figure out how to do virtual networking with bhyve, I've installed VirtualBox (virtualbox-ose). Quite a lengthy post-install message:

=====
Message from virtualbox-ose-kmod-6.1.36:

--
The vboxdrv kernel module uses internal kernel APIs.

To avoid crashes due to kernel incompatibility, this module will only
load on FreeBSD 13.1 kernels.
=====
Message from virtualbox-ose-6.1.36:

--
VirtualBox was installed.

You need to load the vboxdrv kernel module via /boot/loader.conf:

vboxdrv_load="YES"

You also have to add all users to your vboxusers group in order to use vbox.

% pw groupmod vboxusers -m jerry

Reboot the machine to load the needed kernel modules.


Bridging Support:
=================

For bridged networking please add the following line to your /etc/rc.conf:

vboxnet_enable="YES"


USB Support:
============

For USB support your user needs to be in the operator group and needs read
and write permissions to the USB device.

% pw groupmod operator -m jerry

Add the following to /etc/devfs.rules (create if it doesn't exist):

[system=10]
add path 'usb/*' mode 0660 group operator

To load these new rule add the following to /etc/rc.conf:

devfs_system_ruleset="system"

Then restart devfs to load the new rules:

% /etc/rc.d/devfs restart


Troubleshooting:
================

Running VirtualBox as non-root user may fail with a fatal error
NS_ERROR_FACTORY_NOT_REGISTERED. In this case delete /tmp/.vbox-*-ipc file.

If you experience "Network: write Failed: Cannot allocate memory" errors
try to increase net.graph.maxdata in /boot/loader.conf

If you are using AIO, then increase these limits (PR#168298):
vfs.aio.max_buf_aio=8192
vfs.aio.max_aio_queue_per_proc=65536
vfs.aio.max_aio_per_proc=8192
vfs.aio.max_aio_queue=65536
To check if AIO is used use: kldstat -v | grep aio

When assigning IP addresses in host-only mode from ranges outside
of VirtualBox's defaults, the respective ranges need to be listed
in /usr/local/etc/vbox/networks.conf (PR#259399).

Check wiki page for known issues and troubleshooting:
http://wiki.freebsd.org/VirtualBox

Please report any problems to emulation@. Thanks!

I've only configured driver loading and added my user to the vboxusers group so far.

In addition, I have to manually unload the vmm kernel module (i.e., bhyve) in order for VirtualBox to work: https://forums.freebsd.org/threads/virtualbox-black-screen.84913/ Supposedly any attempt to run a bhyve vm after doing this will automatically reload the module, so this just means I need to kldunload vmm before running virtualbox.

I've used the machine primarily via the VS Code Remote extension. In order to SSH to the guest, you need to add a second bridged adapter to the VM (https://unix.stackexchange.com/a/607158, leave the primary adapter as a NAT'ed interface) and SSH to that bridged adapter's IP address.

Note: Both VirtualBox and Hyper-V include more out-of-the-box support for VM networking setup than bhyve does. Both have built-in NAT support, implemented in-kernel. Bhyve seems to have a "lighter touch" approach to kernel changes, prefering to rely on the (very rich, but poorly documented) existing support for virtual network setup in FreeBSD.

Note 2: Putting the machine to sleep while a VirtualBox VM is running results in the machine failing to resume from sleep.

Here are some disorganized notes on getting GhostBSD up and running nicely on my 6th-gen Lenovo X1 Carbon.

Setup Information

Initial Hardware Config

  • 6th-Gen Lenovo X1 Carbon
  • Had previously disabled secure boot, and split hard-drive for some Linux experiments

The Arch Linux wiki has a page that covers a lot of the hardware tweaks, limitations, and quirks of this machine: https://wiki.archlinux.org/title/Lenovo_ThinkPad_X1_Carbon_(Gen_6)

Installation

  • Basic tests with GhostBSD 22.01.12 to check wifi, then installed to hard drive without issue
    • Had previously installed GhostBSD 22.06.18, but somehow borked my wifi; couldn't get an IP from an open wifi network with DHCP. Reverted to the earlier version that I had used for previous tire-kicking that included network experiments. Probably user error, but possibly relevant.

Wifi

Using wifi from the Ubuntu jail later is slightly tricky: /etc/resolv.conf inside the Linux subsystem is auto-populated from the BSD file. The latter is automatically managed by the networking system, so if you switch networks (or more importantly, ISPs), the BSD version is automatically updated via resolvconf. But the Linux subsystem version isn't. So if you try to run Linux network apps on a different ISP from where you set things up, you'll need to manually copy the BSD resolv.conf into Linux, every time the ISP changes. Maybe there's a better way to do this?

Captive Portals

Captive portals often crap out on me even under Windows or macOS, so I was expecting some difficulty here. I have tried exactly once to get online at a Starbucks. Associating to the AP works as expected, but I was unable to get a DHCP lease in the half hour I was at Starbucks (I was waiting for my car, and my auto shop, King's Auto Service in Bryn Mawr, is just too damn good and finished really fast). Manually restarting the DHCP client, it was broadcasting everywhere (255.255.255.255) on the AP but got no response of any kind, and fell back to reusing the existing wlan0 lease it had from my house (which is obviously incorrect).

/var/log/messagse also had a suspicious lines repeated a couple times around the time of my connection attempts:

Aug 16 08:05:02 x1 dhclient[3207]: send_packet: No buffer space available

Haven't had time to dig into that yet.

Longer-term wifi usage

Longer term, I'm seeing why forum posts frequently allude to wifi issues, which for some reason I avoided my first month or so of use (did an update agitate things?).

My manual wpa_supplicant configuration continues to work, but the networking stack is flaky for wifi; it's unclear from forum allusions whether this is related to the wifi stack or the core Intel wifi drivers. Something that frequently occurs is that I'll switch wifi networks (e.g., move between home and school without a reboot), and when I arrive, the machine will automatically connect to wifi (wpa_supplicant doing its job), but I will sometimes either have no internet access, or excruciatingly slow internet access. The latter is at least sometimes caused by the Intel wireless drivers; a newer driver is available, but requires some work to set up. When I have no internet access, it manifests as attempts to ping IPs like Google's DNS server (8.8.8.8) resulting in complaints about no route to host. And indeed, netstat -r will sometimes show no default route that would go outside my current LAN. (Though once I observed that I had two default routes, which seems like it violates an invariant.... anyways, I had one default route that was clearly from home and another clearly from work, and as a result nothing works and/or it tried to use the broken route.)

For now, my go-to workaround is:

  1. sudo service restart netif This restarts the system that creates the virtual network interfaces from the hardware interfaces (this is why the FreeBSD NIC device names you see are always nice like em0 or wlan0, and not ensp0n25 and weird crap like that as you'd see on Linux).
  2. sudo service routing restart restarts the routing subsystem, which seems to be where the problem is much of the time.

Doing both of those pretty consistently fixes things without a reboot. Once I had to re-do the routing restart an additional time.

Another option that is starting to look more appealing (though 14.0 should bring improvements to these issues) is the wifibox port, which once set up essentially uses bhyve's device pass-through to give an Alpine Linux VM (sole) control over the wifi card, sets up a new virtual NIC that's connected to the VM, and has the Linux VM use its wireless drivers to essentially NAT wifi from its drivers. I've held off so far because while it's clear how to get a wpa supplicant file into the VM, it's not clear how to get a certificate (like the one I need for work wifi) into the VM. If I figure that out, this might also simplify the bhyve NAT situation, because the virtual NIC I could probably just add directly to the default bhyve switch, and then I wouldn't have to mess with NAT on the FreeBSD side at all (myself; there's still a NAT involving wifibox). (Half of me wants to try to debug the wifi driver though.) But I really don't want to try that until I figure out the cert issue, because the only thing I can think of that's more onerous than the manual network stack resets I'm doing is having to switch back and forth between wifibox at home and the current situation at work (which will still have me restarting networking services manually from time to time, but more of them).

Displays

  • External HDMI monitor detection works out of the box. Sometimes requires manual prodding by opening the MATE preferences, other times not.
  • At home, confirmed I can get triple-display: built-in, via HDMI port, plus another display over an (Anker) HDMI-USB-C adapter
  • I've noticed that when the screen lock kicks in after inactivity, it pseudo-randomly chooses any of the attached displays, rather than a specific one. A couple times (first day, not since) all screens have gone blank and not come back for some time. Combined with the manual prodding above, I'm hesitant to mark anything other than the built-in display as the primary, lest I be unable to get to the MATE menu.
    • Update: I noticed that at the login screen, the login box moves to whichever monitor the mouse cursor is on. I wonder if the unlock box just appears on whichever display the cursor is on when the screen locks.
  • The hardware brightness function keys work after kldload acpi_video (https://forums.freebsd.org/threads/laptop-setting-display-brightness.80524/). I added that to the kld_list in rc.conf

Sound, Mic, Camera

  • Sound works out of the box, including volume keys
  • Web cam works great (pkg install cheese and following it's message about adding my user account to the appropriate group works out of the box)

Suspend/Resume

Suspend/Resume doesn't work yet. I can change the power settings so closing the lid hibernates, and closing the lid appears to do so. Opening the lid does start the resume process, but resuming fails. This might be an EFI settings issue: I still have Windows installed, and still have the windows bootloader installed; I just had GhostBSD's installer install rEFInd, so when I boot initially, I have to hit F12 repeatedly to get the boot menu, then choose the HDD (as opposed to Windows), to get the rEFInd menu. When resuming, the hardware seems to automatically use the Windows bootloader without a chance to interrupt. Annoying, but not something I'll pursue vigorously until I decide to nuke Windows from this machine.

  • Update: I changed the boot order in the BIOS. Now suspend suspends, and resume... just gets me to rEFInd. I can choose GhostBSD again but it's a fresh boot.
  • This model of hardware did originally ship with a weird firmware that didn't support the sleep modes used by (at least) Linux. I did install a newer firmware version when it first came out with Linux support.
  • Tried some of the debugging instructions at https://wiki.freebsd.org/SuspendResume, but not systematically (yet). It appears the laptop doesn't support S3 sleep (which is what Linux uses). Manually going to S4 with acpiconf suspends, but same wake-up result (fresh boot).
  • The machine halts and reboots quickly enough under GhostBSD (way faster than Windows, even with it's quickboot stuff) that this is only a mild annoyance.

Hardware security keys

I have a Yubikey for 2-factor auth on some services. I've seen suggestions that u2f-dev must be installed (and my user added to the u2f group). I've done this and restarted Firefox, but it doesn't seem to work (perhaps needs a reboot; I'm into Github now, so will try another service later)

Bluetooth

Bluetooth on FreeBSD is apparently... spotty. After a fair amount of poking around locally, I finally just looked up the specs of my machine (duh) and found relevant lines in /var/log/messages to ID the device:

Jul 11 18:30:48 livecd kernel: iwm0: <Intel(R) Dual Band Wireless AC 8265> mem 0xee200000-0xee201fff irq 16 at device 0.0 on pci1
Jul 11 18:30:48 livecd kernel: iwm0: hw rev 0x230, fw ver 22.361476.0, address YY:YY:YY:YY:YY:YY

This is clearly from first boot, but it's still around on subsequent boots.

I searched online for guidance on specifically this chipset on FreeBSD, finding https://www.davidschlachter.com/misc/freebsd-intel-8265-bluetooth, which suggested pkg install iwmbt-firmware, which makes sense. That author (on an earlier FreeBSD) could then start the bluetooth service after 2 tries following a reboot. That didn't work for me, though I did confirm that it shows up in the usb hierarchy:

# usbconfig
...
ugen0.6: <vendor 0x8087 product 0x0a2b> at usbus0, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON (100mA)
...

(confirmed as Intel Bluetooth https://devicehunt.com/view/type/usb/vendor/8087/device/0A2B).

Nonetheless, there was progress, as the kernel log now contains information it didn't before from boot:

Jul 15 15:05:56 x1 kernel: ubt0 on uhub1
Jul 15 15:05:56 x1 kernel: ubt0: <vendor 0x8087 product 0x0a2b, class 224/1, rev 2.00/0.10, addr 5> on usbus0

and when trying to start the bluetooth service, in addition to a general error we get a little more information:

Jul 15 15:06:51 x1 root[2457]: /etc/rc.d/bluetooth: ERROR: Unable to setup Bluetooth stack for device ubt0
Jul 15 15:06:58 x1 kernel: ng_hci_process_command_timeout: ubt0hci - unable to complete HCI command OGF=0x3, OCF=0x3. Timeout
Jul 15 15:06:58 x1 root[2485]: /etc/rc.d/bluetooth: ERROR: Unable to setup Bluetooth stack for device ubt0

And... oh, apparently trying a 3rd time after reboot, now the service starts?

I was able to then connect to some wireless headphones by following the directions at https://freebsdfoundation.org/freebsd-project/resources/networking-basics-wifi-and-bluetooth/ and at least sort of connect; at least the machine thinks it's connected, but the headphones never say connected. More fiddling is needed to actually get my bluetooth headphones working. Relevant: https://forums.freebsd.org/threads/i-badly-need-to-connect-my-bluetooth-headphone-please-help.80048/

Update 9/2: Someone just posted https://jrgsystems.com/posts/2022-08-20-how-i-configure-bluetooth-headphones-on-freebsd-13-1/, which I need to check out.

Power Management

If acpiconf -i 0 is to be believed, out of the box I'm set for about 6 hours of use running Firefox, Spotify, and VS Code, which isn't bad. I have yet to seriously investigate power settings (including the ability to adjust screen brightness.

I'm planning to carefully comb through https://vermaden.wordpress.com/2018/11/28/the-power-to-serve-freebsd-power-management/, which seems to at least partiall address sleep/resume as well. I learned I can kldload acpi_ibm and get a bunch of extra ACPI settings.

Update: After a few days of more typical use, it now says that at 97% battery, there is over 7 hours of battery power to go when browsing simple web pages (entering bids in a conference manager), or 6h19m after I start editing this gist on Github. So actually, out of the box (or at least, with some of these other kernel modules I've loaded), the battery life should be just fine. Oh, right: with the kernel module for ACPI video stuff, lowering the screen brightness makes a big difference.

Sleep

Sleep now works. I skipped a setup before. Per the Arch Linux wiki, you first need to install the latest BIOS version. Originally the laptop shipped with a BIOS that only supported some weird Windows hardware sleep setting, which Linux and BSDs do not support. Later BIOS updates added a configurable BIOS switch: go to the BIOS, then Config > Power > Sleep State. There should be a toggle there with Windows and Linux settings. Switch it to Linux (I don't know if Windows suspend still works after this, but you could always change it back).

You can confirm with sysctl hw.acpi.supported_sleep_state that S3 is listed, which is normal sleep. After that, acpiconf -s3 will suspend to RAM. Waking works correctly for me. You can configure closing the laptop lid to do the same.

There are other levels as well. S5 is shutdown. S4 is suspend to disk. This half works: FreeBSD seems to suspend and write a bunch of stuff to disk, and the machine powers down. When I press the power button again, it skips even the ability to trigger a boot menu or enter the BIOS, so clearly the machine was trying to do a resume from disk, except for me I just end up staring at rEFInd, which only knows how to boot from scratch. Maybe there's a config I can change for rEFInd to add a "resume from disk" boot entry?

Wacom Tablet

Untested, but will work off of: https://wiki.freebsd.org/WacomTablet

Web Access

Apparently websites still actually check what platform you're on and crap out if it's not Windows/Mac/Linux.

I thought Outlook Web Access (yeah, the one going back to the 90s...) was dead and gone, but logging into my employer's webmail... I saw it. In Firefox I went to about:config and added a string key general.useragent.override set to the current user agent with "FreeBSD" replaced with "Linux" (so, Mozilla/5.0 (X11; Linux amd64; rv:102.0) Gecko/20100101 Firefox/102.0) and got the real modern outlook web version, which works just fine.

VPN

My employer uses Cisco AnyConnect for VPN. I used pkg to install openconnect, and a simple sudo openconnect <employer VPN address> (per http://www.infradead.org/openconnect/) worked perfectly. Just had to guess at my user group ID (my choices were a generic VPN group or a bunch of administrator stuff, so that was an easy guess).

General Impressions

My impressions are mostly extremely positive. This machine has 16GB of RAM, 4-core 1.9GHz CPU with hyperthreading. This is pretty decent for a laptop. This is way snappier than the same machine running Windows. It's also way snappier than my work desktop running Debian testing, which is slightly older, but has more cores with significantly higher clockspeed and double the RAM. Opening a LaTeX project with a 200K .tex file and PDF, in VS Code with the LaTeX Workshop extension, Vim extension (and other extensions) is faster than I can get my mouse to the right monitor, vs. noticeable waiting time in the other machines.

Initially I was concerned having to route through the Linux jail for a bunch of stuff would be a big headache, but the integration is pretty seamless once it's set up correctly. I had actually gotten pretty happy with using WSL on Windows 10, but this has actually made me realize just how much awkwardness is still left in that setup (though they're working on stuff like built-in support for Linux GUI apps).

This file has been truncated, but you can view the full file.
29789: linux_brk(0x0) = 19050496 (0x122b000)
29789: linux_arch_prctl(0x3001,0x7fffffffe580) = 0 (0x0)
29789: linux_newuname(0x7fffffffe180) = 0 (0x0)
29789: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29789: linux_openat(0xffffff9c,0x80124eb80,0x80000,0x0) = 3 (0x3)
29789: linux_newfstat(3,0x7fffffffd780) = 0 (0x0)
29789: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34378977280 (0x801259000)
29789: close(3) = 0 (0x0)
29789: linux_openat(0xffffff9c,0x801258e10,0x80000,0x0) = 3 (0x3)
29789: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29789: linux_pread(0x3,0x7fffffffd810,0x44,0x338) = 68 (0x44)
29789: linux_newfstat(3,0x7fffffffd7d0) = 0 (0x0)
29789: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34379014144 (0x801262000)
29789: linux_pread(0x3,0x7fffffffd430,0x44,0x338) = 68 (0x44)
29789: linux_mmap2(0x0,0x22478,0x1,0x802,0x3,0x0) = 34379022336 (0x801264000)
29789: linux_mmap2(0x80126b000,0x11000,0x5,0x812,0x3,0x7000) = 34379051008 (0x80126b000)
29789: linux_mmap2(0x80127c000,0x5000,0x1,0x812,0x3,0x18000) = 34379120640 (0x80127c000)
29789: linux_mmap2(0x801281000,0x2000,0x3,0x812,0x3,0x1c000) = 34379141120 (0x801281000)
29789: linux_mmap2(0x801283000,0x3478,0x3,0x32,0xffffffff,0x0) = 34379149312 (0x801283000)
29789: close(3) = 0 (0x0)
29789: linux_openat(0xffffff9c,0x8012624e0,0x80000,0x0) = 3 (0x3)
29789: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29789: linux_newfstat(3,0x7fffffffd7b0) = 0 (0x0)
29789: linux_mmap2(0x0,0x1e0800,0x1,0x802,0x3,0x0) = 34379165696 (0x801287000)
29789: linux_mprotect(0x80131d000,0x13a000,0x0) = 0 (0x0)
29789: linux_mmap2(0x80131d000,0xf0000,0x5,0x812,0x3,0x96000) = 34379780096 (0x80131d000)
29789: linux_mmap2(0x80140d000,0x49000,0x1,0x812,0x3,0x186000) = 34380763136 (0x80140d000)
29789: linux_mmap2(0x801457000,0xe000,0x3,0x812,0x3,0x1cf000) = 34381066240 (0x801457000)
29789: linux_mmap2(0x801465000,0x2800,0x3,0x32,0xffffffff,0x0) = 34381123584 (0x801465000)
29789: close(3) = 0 (0x0)
29789: linux_openat(0xffffff9c,0x8012629f0,0x80000,0x0) = 3 (0x3)
29789: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29789: linux_newfstat(3,0x7fffffffd790) = 0 (0x0)
29789: linux_mmap2(0x0,0x14e110,0x1,0x802,0x3,0x0) = 34381135872 (0x801468000)
29789: linux_mmap2(0x801477000,0xa7000,0x5,0x812,0x3,0xf000) = 34381197312 (0x801477000)
29789: linux_mmap2(0x80151e000,0x97000,0x1,0x812,0x3,0xb6000) = 34381881344 (0x80151e000)
29789: linux_mmap2(0x8015b5000,0x2000,0x3,0x812,0x3,0x14c000) = 34382499840 (0x8015b5000)
29789: close(3) = 0 (0x0)
29789: linux_openat(0xffffff9c,0x801262ee0,0x80000,0x0) = 3 (0x3)
29789: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29789: linux_newfstat(3,0x7fffffffd770) = 0 (0x0)
29789: linux_mmap2(0x0,0x1a448,0x1,0x802,0x3,0x0) = 34382508032 (0x8015b7000)
29789: linux_mmap2(0x8015ba000,0x12000,0x5,0x812,0x3,0x3000) = 34382520320 (0x8015ba000)
29789: linux_mmap2(0x8015cc000,0x4000,0x1,0x812,0x3,0x15000) = 34382594048 (0x8015cc000)
29789: linux_mmap2(0x8015d0000,0x2000,0x3,0x812,0x3,0x18000) = 34382610432 (0x8015d0000)
29789: close(3) = 0 (0x0)
29789: linux_openat(0xffffff9c,0x8012633f0,0x80000,0x0) = 3 (0x3)
29789: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29789: linux_pread(0x3,0x7fffffffd4c0,0x310,0x40) = 784 (0x310)
29789: linux_pread(0x3,0x7fffffffd490,0x20,0x350) = 32 (0x20)
29789: linux_pread(0x3,0x7fffffffd440,0x44,0x370) = 68 (0x44)
29789: linux_newfstat(3,0x7fffffffd750) = 0 (0x0)
29789: linux_pread(0x3,0x7fffffffd3a0,0x310,0x40) = 784 (0x310)
29789: linux_pread(0x3,0x7fffffffd080,0x20,0x350) = 32 (0x20)
29789: linux_pread(0x3,0x7fffffffd060,0x44,0x370) = 68 (0x44)
29789: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34382618624 (0x8015d2000)
29789: linux_mprotect(0x8015f7000,0x1c3000,0x0) = 0 (0x0)
29789: linux_mmap2(0x8015f7000,0x178000,0x5,0x812,0x3,0x25000) = 34382770176 (0x8015f7000)
29789: linux_mmap2(0x80176f000,0x4a000,0x1,0x812,0x3,0x19d000) = 34384310272 (0x80176f000)
29789: linux_mmap2(0x8017ba000,0x6000,0x3,0x812,0x3,0x1e7000) = 34384617472 (0x8017ba000)
29789: linux_mmap2(0x8017c0000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34384642048 (0x8017c0000)
29789: close(3) = 0 (0x0)
29789: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34384658432 (0x8017c4000)
29789: linux_mmap2(0x0,0x3000,0x3,0x22,0xffffffff,0x0) = 34384666624 (0x8017c6000)
29789: linux_arch_prctl(0x1002,0x8017c5840) = 0 (0x0)
29789: linux_mprotect(0x8017ba000,0x3000,0x1) = 0 (0x0)
29789: linux_mprotect(0x8015d0000,0x1000,0x1) = 0 (0x0)
29789: linux_mprotect(0x8015b5000,0x1000,0x1) = 0 (0x0)
29789: linux_mprotect(0x801457000,0xb000,0x1) = 0 (0x0)
29789: linux_mprotect(0x801281000,0x1000,0x1) = 0 (0x0)
29789: linux_mprotect(0x1229000,0x1000,0x1) = 0 (0x0)
29789: linux_mprotect(0x801256000,0x1000,0x1) = 0 (0x0)
29789: munmap(0x801259000,34098) = 0 (0x0)
29789: linux_set_tid_address(0x8017c5b10) = 29789 (0x745d)
29789: linux_set_robust_list(0x8017c5b20,0x18) = 0 (0x0)
29789: linux_rt_sigaction(0x20,0x7fffffffe3a0,0x0,0x8) = 0 (0x0)
29789: linux_rt_sigaction(0x21,0x7fffffffe3a0,0x0,0x8) = 0 (0x0)
29789: linux_rt_sigprocmask(0x1,0x7fffffffe518,0x0,0x8) = 0 (0x0)
29789: linux_prlimit64(0x0,0x3,0x0,0x7fffffffe500) = 0 (0x0)
29789: linux_brk(0x0) = 19050496 (0x122b000)
29789: linux_brk(0x124c000) = 19185664 (0x124c000)
29789: linux_readlink("/home/csgordon",0x7fffffffc440,4095) ERR#-22 'Invalid argument'
29789: linux_mkdir("/home/csgordon/.zoom/logs/",448) ERR#-17 'File exists'
29789: linux_openat(0xffffff9c,0x123cf08,0x442,0x1b4) = 3 (0x3)
29789: dup2(3,2) = 2 (0x2)
29789: dup2(3,1) = 1 (0x1)
29789: close(3) = 0 (0x0)
29789: write(2,"ZoomLauncher started.\n",22) = 22 (0x16)
29789: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/ZoomLauncher",4096) = 36 (0x24)
29789: write(2,"Zoom path is: /compat/ubuntu/opt"...,38) = 38 (0x26)
29789: linux_chdir(0x7fffffffb520) = 0 (0x0)
29789: write(2,"cmd line: \n",11) = 11 (0xb)
29789: linux_clone(0x1200011,0x0,0x0,0x8017c5b10,0x0) = 29790 (0x745e)
29790: <new process>
29789: write(2,"Start subprocess: /compat/ubuntu"...,81) = 81 (0x51)
29790: linux_set_robust_list(0x8017c5b20,0x18) = 0 (0x0)
29790: linux_readlink("/home/csgordon",0x7fffffff7400,4094) ERR#-22 'Invalid argument'
29790: linux_openat(0xffffff9c,0x123d188,0x0,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffff6970) = 0 (0x0)
29790: read(3,"[General]\nGeoLocale=system\nSen"...,4096) = 1238 (0x4d6)
29790: read(3,0x123d3a0,4096) = 0 (0x0)
29790: close(3) = 0 (0x0)
29790: linux_execve("/compat/ubuntu/opt/zoom/zoom",0x7fffffffa480,0x123d460) EJUSTRETURN
29790: linux_brk(0x0) = 113565696 (0x6c4e000)
29790: linux_arch_prctl(0x3001,0x7fffffffe4e0) = 0 (0x0)
29790: linux_newuname(0x7fffffffe0e0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34469171200 (0x80685d000)
29790: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/opt/Qt5.12.10/5.12.10/gcc_64/lib",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd730) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806852b80,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd6e0) = 0 (0x0)
29790: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34469179392 (0x80685f000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80685d030,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29790: linux_mmap2(0x0,0x1ba80,0x1,0x802,0x3,0x0) = 34469216256 (0x806868000)
29790: linux_mprotect(0x80686c000,0x14000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80686c000,0x10000,0x5,0x812,0x3,0x4000) = 34469232640 (0x80686c000)
29790: linux_mmap2(0x80687c000,0x3000,0x1,0x812,0x3,0x14000) = 34469298176 (0x80687c000)
29790: linux_mmap2(0x806880000,0x2000,0x3,0x812,0x3,0x17000) = 34469314560 (0x806880000)
29790: linux_mmap2(0x806882000,0x1a80,0x3,0x32,0xffffffff,0x0) = 34469322752 (0x806882000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd650,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x80685d540,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd710) = 0 (0x0)
29790: linux_mmap2(0x0,0x5110,0x1,0x802,0x3,0x0) = 34469330944 (0x806884000)
29790: linux_mmap2(0x806885000,0x2000,0x5,0x812,0x3,0x1000) = 34469335040 (0x806885000)
29790: linux_mmap2(0x806887000,0x1000,0x1,0x812,0x3,0x3000) = 34469343232 (0x806887000)
29790: linux_mmap2(0x806888000,0x2000,0x3,0x812,0x3,0x3000) = 34469347328 (0x806888000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd630,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x80685da50,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd6f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x13cd38,0x1,0x802,0x3,0x0) = 34469355520 (0x80688a000)
29790: linux_mprotect(0x8068a2000,0x120000,0x0) = 0 (0x0)
29790: linux_mmap2(0x8068a2000,0x8b000,0x5,0x812,0x3,0x18000) = 34469453824 (0x8068a2000)
29790: linux_mmap2(0x80692d000,0x94000,0x1,0x812,0x3,0xa3000) = 34470023168 (0x80692d000)
29790: linux_mmap2(0x8069c2000,0x5000,0x3,0x812,0x3,0x137000) = 34470633472 (0x8069c2000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd610,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x80685df60,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd6d0) = 0 (0x0)
29790: linux_mmap2(0x0,0xabe0,0x1,0x802,0x3,0x0) = 34470653952 (0x8069c7000)
29790: linux_mprotect(0x8069ca000,0x6000,0x0) = 0 (0x0)
29790: linux_mmap2(0x8069ca000,0x4000,0x5,0x812,0x3,0x3000) = 34470666240 (0x8069ca000)
29790: linux_mmap2(0x8069ce000,0x1000,0x1,0x812,0x3,0x7000) = 34470682624 (0x8069ce000)
29790: linux_mmap2(0x8069d0000,0x2000,0x3,0x812,0x3,0x8000) = 34470690816 (0x8069d0000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd5f0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x80685e470,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd6b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x292a8,0x1,0x802,0x3,0x0) = 34470699008 (0x8069d2000)
29790: linux_mmap2(0x8069dd000,0x14000,0x5,0x812,0x3,0xb000) = 34470744064 (0x8069dd000)
29790: linux_mmap2(0x8069f1000,0x9000,0x1,0x812,0x3,0x1f000) = 34470825984 (0x8069f1000)
29790: linux_mmap2(0x8069fa000,0x2000,0x3,0x812,0x3,0x27000) = 34470862848 (0x8069fa000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd5d0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x80685e980,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd690) = 0 (0x0)
29790: linux_mmap2(0x0,0x148b8,0x1,0x802,0x3,0x0) = 34470871040 (0x8069fc000)
29790: linux_mmap2(0x806a00000,0xb000,0x5,0x812,0x3,0x4000) = 34470887424 (0x806a00000)
29790: linux_mmap2(0x806a0b000,0x4000,0x1,0x812,0x3,0xf000) = 34470932480 (0x806a0b000)
29790: linux_mmap2(0x806a0f000,0x2000,0x3,0x812,0x3,0x12000) = 34470948864 (0x806a0f000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd5b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x80685ee90,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd670) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34470957056 (0x806a11000)
29790: linux_mmap2(0x0,0x9058,0x1,0x802,0x3,0x0) = 34470965248 (0x806a13000)
29790: linux_mprotect(0x806a16000,0x5000,0x0) = 0 (0x0)
29790: linux_mmap2(0x806a16000,0x3000,0x5,0x812,0x3,0x3000) = 34470977536 (0x806a16000)
29790: linux_mmap2(0x806a19000,0x1000,0x1,0x812,0x3,0x6000) = 34470989824 (0x806a19000)
29790: linux_mmap2(0x806a1b000,0x2000,0x3,0x812,0x3,0x7000) = 34470998016 (0x806a1b000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd590,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a114f0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd650) = 0 (0x0)
29790: linux_mmap2(0x0,0x4058,0x1,0x802,0x3,0x0) = 34471006208 (0x806a1d000)
29790: linux_mmap2(0x806a1e000,0x1000,0x5,0x812,0x3,0x1000) = 34471010304 (0x806a1e000)
29790: linux_mmap2(0x806a1f000,0x1000,0x1,0x812,0x3,0x2000) = 34471014400 (0x806a1f000)
29790: linux_mmap2(0x806a20000,0x2000,0x3,0x812,0x3,0x2000) = 34471018496 (0x806a20000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd570,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a11a10,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd630) = 0 (0x0)
29790: linux_mmap2(0x0,0x4068,0x1,0x802,0x3,0x0) = 34471026688 (0x806a22000)
29790: linux_mmap2(0x806a23000,0x1000,0x5,0x812,0x3,0x1000) = 34471030784 (0x806a23000)
29790: linux_mmap2(0x806a24000,0x1000,0x1,0x812,0x3,0x2000) = 34471034880 (0x806a24000)
29790: linux_mmap2(0x806a25000,0x2000,0x3,0x812,0x3,0x2000) = 34471038976 (0x806a25000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd550,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a11f20,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd610) = 0 (0x0)
29790: linux_mmap2(0x0,0x12068,0x1,0x802,0x3,0x0) = 34471047168 (0x806a27000)
29790: linux_mprotect(0x806a2e000,0xa000,0x0) = 0 (0x0)
29790: linux_mmap2(0x806a2e000,0x6000,0x5,0x812,0x3,0x7000) = 34471075840 (0x806a2e000)
29790: linux_mmap2(0x806a34000,0x3000,0x1,0x812,0x3,0xd000) = 34471100416 (0x806a34000)
29790: linux_mmap2(0x806a38000,0x2000,0x3,0x812,0x3,0x10000) = 34471116800 (0x806a38000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd530,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a12440,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd5f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2040e8,0x5,0x802,0x3,0x0) = 34472984576 (0x806c00000)
29790: linux_mprotect(0x806c04000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x806e03000,0x2000,0x3,0x812,0x3,0x3000) = 34475094016 (0x806e03000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd500,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a12960,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd5d0) = 0 (0x0)
29790: linux_mmap2(0x0,0x4068,0x1,0x802,0x3,0x0) = 34471124992 (0x806a3a000)
29790: linux_mmap2(0x806a3b000,0x1000,0x5,0x812,0x3,0x1000) = 34471129088 (0x806a3b000)
29790: linux_mmap2(0x806a3c000,0x1000,0x1,0x812,0x3,0x2000) = 34471133184 (0x806a3c000)
29790: linux_mmap2(0x806a3d000,0x2000,0x3,0x812,0x3,0x2000) = 34471137280 (0x806a3d000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd4f0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a12e80,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd5b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34471145472 (0x806a3f000)
29790: linux_mmap2(0x0,0x4058,0x1,0x802,0x3,0x0) = 34471153664 (0x806a41000)
29790: linux_mmap2(0x806a42000,0x1000,0x5,0x812,0x3,0x1000) = 34471157760 (0x806a42000)
29790: linux_mmap2(0x806a43000,0x1000,0x1,0x812,0x3,0x2000) = 34471161856 (0x806a43000)
29790: linux_mmap2(0x806a44000,0x2000,0x3,0x812,0x3,0x2000) = 34471165952 (0x806a44000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd4d0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a3f4f0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd590) = 0 (0x0)
29790: linux_mmap2(0x0,0x7108,0x1,0x802,0x3,0x0) = 34471174144 (0x806a46000)
29790: linux_mmap2(0x806a48000,0x3000,0x5,0x812,0x3,0x2000) = 34471182336 (0x806a48000)
29790: linux_mmap2(0x806a4b000,0x1000,0x1,0x812,0x3,0x5000) = 34471194624 (0x806a4b000)
29790: linux_mmap2(0x806a4c000,0x2000,0x3,0x812,0x3,0x5000) = 34471198720 (0x806a4c000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd4b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a3fa00,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd570) = 0 (0x0)
29790: linux_mmap2(0x0,0x205218,0x5,0x802,0x3,0x0) = 34477178880 (0x807000000)
29790: linux_mprotect(0x807005000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x807204000,0x2000,0x3,0x812,0x3,0x4000) = 34479292416 (0x807204000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd490,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a3ff10,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd550) = 0 (0x0)
29790: linux_mmap2(0x0,0x1281c8,0x1,0x802,0x3,0x0) = 34471206912 (0x806a4e000)
29790: linux_mprotect(0x806a6a000,0x10a000,0x0) = 0 (0x0)
29790: linux_mmap2(0x806a6a000,0x84000,0x5,0x812,0x3,0x1c000) = 34471321600 (0x806a6a000)
29790: linux_mmap2(0x806aee000,0x85000,0x1,0x812,0x3,0xa0000) = 34471862272 (0x806aee000)
29790: linux_mmap2(0x806b74000,0x2000,0x3,0x812,0x3,0x125000) = 34472411136 (0x806b74000)
29790: linux_mmap2(0x806b76000,0x1c8,0x3,0x32,0xffffffff,0x0) = 34472419328 (0x806b76000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd470,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806a40430,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd530) = 0 (0x0)
29790: linux_mmap2(0x0,0x502d0,0x1,0x802,0x3,0x0) = 34472423424 (0x806b77000)
29790: linux_mprotect(0x806b82000,0x44000,0x0) = 0 (0x0)
29790: linux_mmap2(0x806b82000,0x2e000,0x5,0x812,0x3,0xb000) = 34472468480 (0x806b82000)
29790: linux_mmap2(0x806bb0000,0x15000,0x1,0x812,0x3,0x39000) = 34472656896 (0x806bb0000)
29790: linux_mmap2(0x806bc6000,0x2000,0x3,0x812,0x3,0x4e000) = 34472747008 (0x806bc6000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd440,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd510) = 0 (0x0)
29790: linux_mmap2(0x0,0x212718,0x5,0x802,0x3,0x0) = 34481373184 (0x807400000)
29790: linux_mprotect(0x807411000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x807611000,0x2000,0x3,0x812,0x3,0x11000) = 34483539968 (0x807611000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd430,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd4f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34472755200 (0x806bc8000)
29790: linux_mmap2(0x0,0x69f8e0,0x5,0x802,0x3,0x0) = 34485567488 (0x807800000)
29790: linux_mprotect(0x807c75000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x807e75000,0x2a000,0x3,0x812,0x3,0x475000) = 34492338176 (0x807e75000)
29790: linux_mmap2(0x807e9f000,0x8e0,0x3,0x32,0xffffffff,0x0) = 34492510208 (0x807e9f000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd410,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd4d0) = 0 (0x0)
29790: linux_mmap2(0x0,0x84ed50,0x5,0x802,0x3,0x0) = 34493956096 (0x808000000)
29790: linux_mprotect(0x80861d000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80881c000,0x33000,0x3,0x812,0x3,0x61c000) = 34502459392 (0x80881c000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd3e0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd4b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2040c0,0x5,0x802,0x3,0x0) = 34504441856 (0x808a00000)
29790: linux_mprotect(0x808a04000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x808c03000,0x2000,0x3,0x812,0x3,0x3000) = 34506551296 (0x808c03000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd3d0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd490) = 0 (0x0)
29790: linux_mmap2(0x0,0x84ee48,0x5,0x802,0x3,0x0) = 34508636160 (0x808e00000)
29790: linux_mprotect(0x809433000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x809632000,0x17000,0x3,0x812,0x3,0x632000) = 34517229568 (0x809632000)
29790: linux_mmap2(0x809649000,0x5e48,0x3,0x32,0xffffffff,0x0) = 34517323776 (0x809649000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd3b0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd470) = 0 (0x0)
29790: linux_mmap2(0x0,0x6a2d98,0x5,0x802,0x3,0x0) = 34519121920 (0x809800000)
29790: linux_mprotect(0x809c82000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x809e82000,0x1f000,0x3,0x812,0x3,0x482000) = 34525945856 (0x809e82000)
29790: linux_mmap2(0x809ea1000,0x1d98,0x3,0x32,0xffffffff,0x0) = 34526072832 (0x809ea1000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd390,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd450) = 0 (0x0)
29790: linux_mmap2(0x0,0x3a7478,0x5,0x802,0x3,0x0) = 34527510528 (0x80a000000)
29790: linux_mprotect(0x80a19f000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80a39e000,0x9000,0x3,0x812,0x3,0x19e000) = 34531303424 (0x80a39e000)
29790: linux_mmap2(0x80a3a7000,0x478,0x3,0x32,0xffffffff,0x0) = 34531340288 (0x80a3a7000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd370,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd430) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34472763392 (0x806bca000)
29790: linux_mmap2(0x0,0x28b378,0x5,0x802,0x3,0x0) = 34531704832 (0x80a400000)
29790: linux_mprotect(0x80a489000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80a688000,0x3000,0x3,0x812,0x3,0x88000) = 34534359040 (0x80a688000)
29790: linux_mmap2(0x80a68b000,0x378,0x3,0x32,0xffffffff,0x0) = 34534371328 (0x80a68b000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd350,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_pread(0x3,0x7fffffffd2c0,0x20,0x588dbc) = 32 (0x20)
29790: linux_newfstat(3,0x7fffffffd410) = 0 (0x0)
29790: linux_pread(0x3,0x7fffffffd0f0,0x20,0x588dbc) = 32 (0x20)
29790: linux_mmap2(0x0,0x79a1c8,0x5,0x802,0x3,0x0) = 34535899136 (0x80a800000)
29790: linux_mprotect(0x80ad89000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80af89000,0xe000,0x3,0x812,0x3,0x589000) = 34543800320 (0x80af89000)
29790: linux_mmap2(0x80af97000,0x31c8,0x3,0x32,0xffffffff,0x0) = 34543857664 (0x80af97000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd330,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bca890,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd3f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x878f8,0x1,0x802,0x3,0x0) = 34475102208 (0x806e05000)
29790: linux_mmap2(0x806e48000,0x20000,0x5,0x812,0x3,0x43000) = 34475376640 (0x806e48000)
29790: linux_mmap2(0x806e68000,0x15000,0x1,0x812,0x3,0x63000) = 34475507712 (0x806e68000)
29790: linux_mmap2(0x806e7d000,0xf000,0x3,0x812,0x3,0x77000) = 34475593728 (0x806e7d000)
29790: linux_mmap2(0x806e8c000,0x8f8,0x3,0x32,0xffffffff,0x0) = 34475655168 (0x806e8c000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd310,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bcada0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_pread(0x3,0x7fffffffd410,0x44,0x338) = 68 (0x44)
29790: linux_newfstat(3,0x7fffffffd3d0) = 0 (0x0)
29790: linux_pread(0x3,0x7fffffffd030,0x44,0x338) = 68 (0x44)
29790: linux_mmap2(0x0,0x22478,0x1,0x802,0x3,0x0) = 34472771584 (0x806bcc000)
29790: linux_mmap2(0x806bd3000,0x11000,0x5,0x812,0x3,0x7000) = 34472800256 (0x806bd3000)
29790: linux_mmap2(0x806be4000,0x5000,0x1,0x812,0x3,0x18000) = 34472869888 (0x806be4000)
29790: linux_mmap2(0x806be9000,0x2000,0x3,0x812,0x3,0x1c000) = 34472890368 (0x806be9000)
29790: linux_mmap2(0x806beb000,0x3478,0x3,0x32,0xffffffff,0x0) = 34472898560 (0x806beb000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd2f0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bcb2b0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd3b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x1e0800,0x1,0x802,0x3,0x0) = 34479300608 (0x807206000)
29790: linux_mprotect(0x80729c000,0x13a000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80729c000,0xf0000,0x5,0x812,0x3,0x96000) = 34479915008 (0x80729c000)
29790: linux_mmap2(0x80738c000,0x49000,0x1,0x812,0x3,0x186000) = 34480898048 (0x80738c000)
29790: linux_mmap2(0x8073d6000,0xe000,0x3,0x812,0x3,0x1cf000) = 34481201152 (0x8073d6000)
29790: linux_mmap2(0x8073e4000,0x2800,0x3,0x32,0xffffffff,0x0) = 34481258496 (0x8073e4000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd2d0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bcb7c0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd390) = 0 (0x0)
29790: linux_mmap2(0x0,0x14e110,0x1,0x802,0x3,0x0) = 34475659264 (0x806e8d000)
29790: linux_mmap2(0x806e9c000,0xa7000,0x5,0x812,0x3,0xf000) = 34475720704 (0x806e9c000)
29790: linux_mmap2(0x806f43000,0x97000,0x1,0x812,0x3,0xb6000) = 34476404736 (0x806f43000)
29790: linux_mmap2(0x806fda000,0x2000,0x3,0x812,0x3,0x14c000) = 34477023232 (0x806fda000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd2b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bcbcb0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_pread(0x3,0x7fffffffd0e0,0x310,0x40) = 784 (0x310)
29790: linux_pread(0x3,0x7fffffffd0b0,0x20,0x350) = 32 (0x20)
29790: linux_pread(0x3,0x7fffffffd060,0x44,0x370) = 68 (0x44)
29790: linux_newfstat(3,0x7fffffffd370) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34472914944 (0x806bef000)
29790: linux_pread(0x3,0x7fffffffcfc0,0x310,0x40) = 784 (0x310)
29790: linux_pread(0x3,0x7fffffffcca0,0x20,0x350) = 32 (0x20)
29790: linux_pread(0x3,0x7fffffffcc80,0x44,0x370) = 68 (0x44)
29790: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34506559488 (0x808c05000)
29790: linux_mprotect(0x808c2a000,0x1c3000,0x0) = 0 (0x0)
29790: linux_mmap2(0x808c2a000,0x178000,0x5,0x812,0x3,0x25000) = 34506711040 (0x808c2a000)
29790: linux_mmap2(0x808da2000,0x4a000,0x1,0x812,0x3,0x19d000) = 34508251136 (0x808da2000)
29790: linux_mmap2(0x808ded000,0x6000,0x3,0x812,0x3,0x1e7000) = 34508558336 (0x808ded000)
29790: linux_mmap2(0x808df3000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34508582912 (0x808df3000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd270,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bef4d0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd330) = 0 (0x0)
29790: linux_mmap2(0x0,0x1a448,0x1,0x802,0x3,0x0) = 34477031424 (0x806fdc000)
29790: linux_mmap2(0x806fdf000,0x12000,0x5,0x812,0x3,0x3000) = 34477043712 (0x806fdf000)
29790: linux_mmap2(0x806ff1000,0x4000,0x1,0x812,0x3,0x15000) = 34477117440 (0x806ff1000)
29790: linux_mmap2(0x806ff5000,0x2000,0x3,0x812,0x3,0x18000) = 34477133824 (0x806ff5000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd250,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806befae0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_mmap2(0x0,0x5108,0x1,0x802,0x3,0x0) = 34472923136 (0x806bf1000)
29790: linux_mmap2(0x806bf2000,0x2000,0x5,0x812,0x3,0x1000) = 34472927232 (0x806bf2000)
29790: linux_mmap2(0x806bf4000,0x1000,0x1,0x812,0x3,0x3000) = 34472935424 (0x806bf4000)
29790: linux_mmap2(0x806bf5000,0x2000,0x3,0x812,0x3,0x3000) = 34472939520 (0x806bf5000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd230,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806befff0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd2f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x7080,0x1,0x802,0x3,0x0) = 34472947712 (0x806bf7000)
29790: linux_mmap2(0x806bf9000,0x2000,0x5,0x812,0x3,0x2000) = 34472955904 (0x806bf9000)
29790: linux_mmap2(0x806bfb000,0x2000,0x1,0x812,0x3,0x4000) = 34472964096 (0x806bfb000)
29790: linux_mmap2(0x806bfd000,0x2000,0x3,0x812,0x3,0x5000) = 34472972288 (0x806bfd000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd210,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bf0690,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd2d0) = 0 (0x0)
29790: linux_mmap2(0x0,0x205108,0x5,0x802,0x3,0x0) = 34544287744 (0x80b000000)
29790: linux_mprotect(0x80b005000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80b204000,0x2000,0x3,0x812,0x3,0x4000) = 34546401280 (0x80b204000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd1f0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806bf0d20,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd2b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34477142016 (0x806ff7000)
29790: linux_mmap2(0x0,0x72108,0x1,0x802,0x3,0x0) = 34483548160 (0x807613000)
29790: linux_mmap2(0x807615000,0x51000,0x5,0x812,0x3,0x2000) = 34483556352 (0x807615000)
29790: linux_mmap2(0x807666000,0x1e000,0x1,0x812,0x3,0x53000) = 34483888128 (0x807666000)
29790: linux_mmap2(0x807684000,0x2000,0x3,0x812,0x3,0x70000) = 34484011008 (0x807684000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd1d0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ff7530,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd290) = 0 (0x0)
29790: linux_mmap2(0x0,0xac4f0,0x1,0x802,0x3,0x0) = 34484019200 (0x807686000)
29790: linux_mmap2(0x807696000,0x73000,0x5,0x812,0x3,0x10000) = 34484084736 (0x807696000)
29790: linux_mmap2(0x807709000,0x25000,0x1,0x812,0x3,0x83000) = 34484555776 (0x807709000)
29790: linux_mmap2(0x80772e000,0x4000,0x3,0x812,0x3,0xa7000) = 34484707328 (0x80772e000)
29790: linux_mmap2(0x807732000,0x4f0,0x3,0x32,0xffffffff,0x0) = 34484723712 (0x807732000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd1b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd1b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ff7d90,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd270) = 0 (0x0)
29790: linux_mmap2(0x0,0x1b0b8,0x1,0x802,0x3,0x0) = 34484727808 (0x807733000)
29790: linux_mprotect(0x807735000,0x18000,0x0) = 0 (0x0)
29790: linux_mmap2(0x807735000,0x11000,0x5,0x812,0x3,0x2000) = 34484736000 (0x807735000)
29790: linux_mmap2(0x807746000,0x6000,0x1,0x812,0x3,0x13000) = 34484805632 (0x807746000)
29790: linux_mmap2(0x80774d000,0x2000,0x3,0x812,0x3,0x19000) = 34484834304 (0x80774d000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd190,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd250) = 0 (0x0)
29790: linux_mmap2(0x0,0x498150,0x5,0x802,0x3,0x0) = 34548482048 (0x80b400000)
29790: linux_mprotect(0x80b689000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80b888000,0x10000,0x3,0x812,0x3,0x288000) = 34553233408 (0x80b888000)
29790: linux_mmap2(0x80b898000,0x150,0x3,0x32,0xffffffff,0x0) = 34553298944 (0x80b898000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd170,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd230) = 0 (0x0)
29790: linux_mmap2(0x0,0x3b7cc0,0x5,0x802,0x3,0x0) = 34554773504 (0x80ba00000)
29790: linux_mprotect(0x80bba5000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80bda5000,0x11000,0x3,0x812,0x3,0x1a5000) = 34558595072 (0x80bda5000)
29790: linux_mmap2(0x80bdb6000,0x1cc0,0x3,0x32,0xffffffff,0x0) = 34558664704 (0x80bdb6000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd150,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd210) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34477150208 (0x806ff9000)
29790: linux_mmap2(0x0,0x19e3000,0x1,0x802,0x3,0x0) = 34558967808 (0x80be00000)
29790: linux_mprotect(0x80d5e3000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80d7e2000,0x1000,0x3,0x812,0x3,0x17e2000) = 34586107904 (0x80d7e2000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd120,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd120,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ff9470,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd1f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x4010,0x1,0x802,0x3,0x0) = 34477158400 (0x806ffb000)
29790: linux_mmap2(0x806ffc000,0x1000,0x5,0x812,0x3,0x1000) = 34477162496 (0x806ffc000)
29790: linux_mmap2(0x806ffd000,0x1000,0x1,0x812,0x3,0x2000) = 34477166592 (0x806ffd000)
29790: linux_mmap2(0x806ffe000,0x2000,0x3,0x812,0x3,0x2000) = 34477170688 (0x806ffe000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd110,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ff9a80,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd1d0) = 0 (0x0)
29790: linux_mmap2(0x0,0xb7358,0x1,0x802,0x3,0x0) = 34492514304 (0x807ea0000)
29790: linux_mmap2(0x807ee0000,0x3f000,0x5,0x812,0x3,0x40000) = 34492776448 (0x807ee0000)
29790: linux_mmap2(0x807f1f000,0x14000,0x1,0x812,0x3,0x7f000) = 34493034496 (0x807f1f000)
29790: linux_mmap2(0x807f33000,0x1d000,0x3,0x812,0x3,0x92000) = 34493116416 (0x807f33000)
29790: linux_mmap2(0x807f50000,0x7358,0x3,0x32,0xffffffff,0x0) = 34493235200 (0x807f50000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd0f0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ff9fa0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd1b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x33588,0x1,0x802,0x3,0x0) = 34484842496 (0x80774f000)
29790: linux_mmap2(0x807752000,0x1b000,0x5,0x812,0x3,0x3000) = 34484854784 (0x807752000)
29790: linux_mmap2(0x80776d000,0x4000,0x1,0x812,0x3,0x1e000) = 34484965376 (0x80776d000)
29790: linux_mmap2(0x807771000,0x2000,0x3,0x812,0x3,0x21000) = 34484981760 (0x807771000)
29790: linux_mmap2(0x807773000,0xf588,0x3,0x32,0xffffffff,0x0) = 34484989952 (0x807773000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd0d0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ffa670,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd190) = 0 (0x0)
29790: linux_mmap2(0x0,0x19170,0x1,0x802,0x3,0x0) = 34485055488 (0x807783000)
29790: linux_mprotect(0x807787000,0x13000,0x0) = 0 (0x0)
29790: linux_mmap2(0x807787000,0xf000,0x5,0x812,0x3,0x4000) = 34485071872 (0x807787000)
29790: linux_mmap2(0x807796000,0x3000,0x1,0x812,0x3,0x13000) = 34485133312 (0x807796000)
29790: linux_mmap2(0x80779a000,0x2000,0x3,0x812,0x3,0x16000) = 34485149696 (0x80779a000)
29790: linux_mmap2(0x80779c000,0x170,0x3,0x32,0xffffffff,0x0) = 34485157888 (0x80779c000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd0b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806ffac40,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd170) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34481270784 (0x8073e7000)
29790: linux_mmap2(0x0,0x26108,0x1,0x802,0x3,0x0) = 34485161984 (0x80779d000)
29790: linux_mmap2(0x8077a0000,0x17000,0x5,0x812,0x3,0x3000) = 34485174272 (0x8077a0000)
29790: linux_mmap2(0x8077b7000,0xb000,0x1,0x812,0x3,0x1a000) = 34485268480 (0x8077b7000)
29790: linux_mmap2(0x8077c2000,0x2000,0x3,0x812,0x3,0x24000) = 34485313536 (0x8077c2000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd090,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x8073e74e0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd150) = 0 (0x0)
29790: linux_mmap2(0x0,0x20060,0x1,0x802,0x3,0x0) = 34485321728 (0x8077c4000)
29790: linux_mmap2(0x8077c6000,0x1a000,0x5,0x812,0x3,0x2000) = 34485329920 (0x8077c6000)
29790: linux_mmap2(0x8077e0000,0x3000,0x1,0x812,0x3,0x1c000) = 34485436416 (0x8077e0000)
29790: linux_mmap2(0x8077e3000,0x2000,0x3,0x812,0x3,0x1e000) = 34485448704 (0x8077e3000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd070,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x8073e79f0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd130) = 0 (0x0)
29790: linux_mmap2(0x0,0x11dfc8,0x1,0x802,0x3,0x0) = 34502668288 (0x80884f000)
29790: linux_mmap2(0x80885b000,0xce000,0x5,0x812,0x3,0xc000) = 34502717440 (0x80885b000)
29790: linux_mmap2(0x808929000,0x3d000,0x1,0x812,0x3,0xda000) = 34503561216 (0x808929000)
29790: linux_mmap2(0x808966000,0x7000,0x3,0x812,0x3,0x116000) = 34503811072 (0x808966000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffd050,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x8073e82a0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffd110) = 0 (0x0)
29790: linux_mmap2(0x0,0x22260,0x1,0x802,0x3,0x0) = 34493267968 (0x807f58000)
29790: linux_mmap2(0x807f5c000,0x13000,0x5,0x812,0x3,0x4000) = 34493284352 (0x807f5c000)
29790: linux_mmap2(0x807f6f000,0xa000,0x1,0x812,0x3,0x17000) = 34493362176 (0x807f6f000)
29790: linux_mmap2(0x807f79000,0x2000,0x3,0x812,0x3,0x20000) = 34493403136 (0x807f79000)
29790: close(3) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34481278976 (0x8073e9000)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34481287168 (0x8073eb000)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34481295360 (0x8073ed000)
29790: linux_arch_prctl(0x1002,0x8073ee380) = 0 (0x0)
29790: linux_mprotect(0x808ded000,0x3000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807f79000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x808966000,0x2000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8077e3000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806be9000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8077c2000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80779a000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806888000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806bf5000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806bfd000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8069fa000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8069c2000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807f33000,0x1c000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807771000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807684000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806b74000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806ffe000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80d7e2000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806fda000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806ff5000,0x1000,0x1) = 0 (0x0)
29790: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34481303552 (0x8073ef000)
29790: linux_mprotect(0x8073d6000,0xb000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80bda5000,0x10000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80b888000,0xe000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80774d000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8069d0000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80772e000,0x3000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80b204000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806e7d000,0xe000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80af89000,0xc000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806bc6000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80a688000,0x2000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80a39e000,0x7000,0x1) = 0 (0x0)
29790: linux_mprotect(0x809e82000,0x1c000,0x1) = 0 (0x0)
29790: linux_mprotect(0x809632000,0x10000,0x1) = 0 (0x0)
29790: linux_mprotect(0x808c03000,0x1000,0x1) = 0 (0x0)
29790: linux_mmap2(0x0,0x3000,0x3,0x22,0xffffffff,0x0) = 34481311744 (0x8073f1000)
29790: linux_mprotect(0x80881c000,0x2e000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807e75000,0x25000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807611000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a0f000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807204000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a4c000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a44000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a3d000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a25000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806e03000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a38000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a20000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806a1b000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x806880000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x682d000,0x1c0000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80685a000,0x1000,0x1) = 0 (0x0)
29790: munmap(0x80685f000,34098) = 0 (0x0)
29790: linux_set_tid_address(0x8073ee650) = 29790 (0x745e)
29790: linux_set_robust_list(0x8073ee660,0x18) = 0 (0x0)
29790: linux_rt_sigaction(0x20,0x7fffffffe300,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x21,0x7fffffffe300,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigprocmask(0x1,0x7fffffffe478,0x0,0x8) = 0 (0x0)
29790: linux_prlimit64(0x0,0x3,0x0,0x7fffffffe460) = 0 (0x0)
29790: linux_brk(0x0) = 113565696 (0x6c4e000)
29790: linux_brk(0x6c6f000) = 113700864 (0x6c6f000)
29790: linux_sys_futex(0x8068890c8,0x81,0x7fffffff,0x0,0x806bea340,0x1) = 0 (0x0)
29790: gettimeofday({ 1657909300.838389 },0x0) = 0 (0x0)
29790: linux_sys_futex(0x8073e46bc,0x81,0x7fffffff,0x0,0x808def960,0xca) = 0 (0x0)
29790: linux_sys_futex(0x8073e46c8,0x81,0x7fffffff,0x0,0x808def960,0xca) = 0 (0x0)
29790: linux_pipe2(0x7fffffffd0f8,0x80000) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffcfd0) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffcfd0) = 0 (0x0)
29790: linux_mmap2(0x0,0x9000,0x3,0x20022,0xffffffff,0x0) = 34469179392 (0x80685f000)
29790: linux_rt_sigprocmask(0x0,0x808dba3e0,0x7fffffffce00,0x8) = 0 (0x0)
29790: linux_clone(0x4111,0x806867ff0,0x8073ee380,0x808dbc5aa,0x0) = 29791 (0x745f)
29791: <new process>
29791: linux_rt_sigprocmask(0x0,0x0,0x806867ea0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x4,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x4,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x5,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x5,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x6,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x6,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x7,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x7,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x8,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x8,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xa,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xa,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xb,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xb,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xc,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xc,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xd,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xd,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xe,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xe,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xf,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xf,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x11,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x11,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x12,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x12,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x14,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x14,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x15,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x15,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x16,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x16,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x17,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x17,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x18,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x18,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x19,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x19,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1a,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1a,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1b,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1b,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1c,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1c,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1d,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1d,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1e,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1e,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1f,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x1f,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x20,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x21,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x22,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x22,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x23,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x23,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x24,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x24,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x25,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x25,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x26,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x26,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x27,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x27,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x28,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x28,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x29,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x29,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2a,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2a,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2b,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2b,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2c,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2c,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2d,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2d,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2e,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2e,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2f,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2f,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x30,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x30,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x31,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x31,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x32,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x32,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x33,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x33,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x34,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x34,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x35,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x35,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x36,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x36,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x37,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x37,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x38,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x38,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x39,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x39,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3a,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3a,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3b,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3b,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3c,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3c,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3d,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3d,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3e,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3e,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3f,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3f,0x806867d30,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x40,0x0,0x806867dd0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x40,0x806867d30,0x0,0x8) = 0 (0x0)
29791: dup2(4,1) = 1 (0x1)
29791: linux_rt_sigprocmask(0x2,0x7fffffffce00,0x0,0x8) = 0 (0x0)
29791: linux_execve("/bin/sh",0x7fffffffd100,0x7fffffffe5d0) EJUSTRETURN
29790: munmap(0x80685f000,36864) = 0 (0x0)
29791: linux_brk(0x0) = 17055744 (0x1044000)
29790: linux_rt_sigprocmask(0x2,0x7fffffffce00,0x0,0x8) = 0 (0x0)
29791: linux_arch_prctl(0x3001,0x7fffffffe4e0) = 0 (0x0)
29790: close(4) = 0 (0x0)
29791: linux_newuname(0x7fffffffe0e0) = 0 (0x0)
29790: linux_fcntl(0x3,0x2,0x0) = 0 (0x0)
29791: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29790: linux_newfstat(3,0x7fffffffd000) = 0 (0x0)
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd730) = 0 (0x0)
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29791: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd730) ERR#-2 'No such file or directory'
29791: linux_openat(0xffffff9c,0x801064b80,0x80000,0x0) = 3 (0x3)
29791: linux_newfstat(3,0x7fffffffd6e0) = 0 (0x0)
29791: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376970240 (0x80106f000)
29791: close(3) = 0 (0x0)
29791: linux_openat(0xffffff9c,0x80106ef50,0x80000,0x0) = 3 (0x3)
29791: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29791: linux_pread(0x3,0x7fffffffd4a0,0x310,0x40) = 784 (0x310)
29791: linux_pread(0x3,0x7fffffffd470,0x20,0x350) = 32 (0x20)
29791: linux_pread(0x3,0x7fffffffd420,0x44,0x370) = 68 (0x44)
29791: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29791: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34377007104 (0x801078000)
29791: linux_pread(0x3,0x7fffffffd380,0x310,0x40) = 784 (0x310)
29791: linux_pread(0x3,0x7fffffffd060,0x20,0x350) = 32 (0x20)
29791: linux_pread(0x3,0x7fffffffd040,0x44,0x370) = 68 (0x44)
29791: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377015296 (0x80107a000)
29791: linux_mprotect(0x80109f000,0x1c3000,0x0) = 0 (0x0)
29791: linux_mmap2(0x80109f000,0x178000,0x5,0x812,0x3,0x25000) = 34377166848 (0x80109f000)
29791: linux_mmap2(0x801217000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378706944 (0x801217000)
29791: linux_mmap2(0x801262000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379014144 (0x801262000)
29791: linux_mmap2(0x801268000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379038720 (0x801268000)
29791: close(3) = 0 (0x0)
29791: linux_arch_prctl(0x1002,0x801079580) = 0 (0x0)
29791: linux_mprotect(0x801262000,0x3000,0x1) = 0 (0x0)
29791: linux_mprotect(0x103f000,0x2000,0x1) = 0 (0x0)
29791: linux_mprotect(0x80106c000,0x1000,0x1) = 0 (0x0)
29791: munmap(0x80106f000,34098) = 0 (0x0)
29791: linux_getuid() = 1002 (0x3ea)
29791: linux_getgid() = 1002 (0x3ea)
29791: linux_getpid() = 29791 (0x745f)
29791: linux_rt_sigaction(0x11,0x7fffffffe040,0x0,0x8) = 0 (0x0)
29791: geteuid() = 1002 (0x3ea)
29791: linux_brk(0x0) = 17055744 (0x1044000)
29791: linux_brk(0x1065000) = 17190912 (0x1065000)
29791: linux_getppid() = 29790 (0x745e)
29791: linux_newstat("/home/csgordon",0x7fffffffe260) = 0 (0x0)
29791: linux_newstat(".",0x7fffffffe2f0) = 0 (0x0)
29791: linux_getcwd(0x1044c00,0x1000) = 24 (0x18)
29791: geteuid() = 1002 (0x3ea)
29791: getegid() = 1002 (0x3ea)
29791: linux_rt_sigaction(0x2,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x2,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0x3,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xf,0x0,0x7fffffffe1f0,0x8) = 0 (0x0)
29791: linux_rt_sigaction(0xf,0x7fffffffe150,0x0,0x8) = 0 (0x0)
29791: linux_newstat("/home/csgordon/.local/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/usr/home/csgordon/.opam/default/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/home/csgordon/.cargo/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/usr/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/usr/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/usr/local/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29791: linux_newstat("/usr/local/bin/pactl",0x7fffffffe170) = 0 (0x0)
29791: linux_clone(0x1200011,0x0,0x0,0x801079850,0x0) = 29792 (0x7460)
29792: <new process>
29792: linux_execve("/usr/local/bin/pactl",0x1043b90,0x1044dd8) EJUSTRETURN
29792: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34362036224 (0x800231000)
29792: mprotect(0x80022e000,4096,PROT_READ) = 0 (0x0)
29792: issetugid() = 0 (0x0)
29792: sigfastblock(0x1,0x800230930) = 0 (0x0)
29792: __sysctl("kern.ostype",2,0x80023028a,0x7fffffffd800,0x0,0) = 0 (0x0)
29792: __sysctl("kern.hostname",2,0x80023038a,0x7fffffffd800,0x0,0) = 0 (0x0)
29792: __sysctl("kern.osrelease",2,0x80023048a,0x7fffffffd800,0x0,0) = 0 (0x0)
29792: __sysctl("kern.version",2,0x80023058a,0x7fffffffd800,0x0,0) = 0 (0x0)
29792: __sysctl("hw.machine",2,0x80023068a,0x7fffffffd800,0x0,0) = 0 (0x0)
29792: open("/etc/libmap.conf",O_RDONLY|O_CLOEXEC,010640030) = 3 (0x3)
29792: fstat(3,{ mode=-rw-r--r-- ,inode=529128,size=47,blksize=4096 }) = 0 (0x0)
29792: read(3,"# $FreeBSD$\nincludedir /usr/loc"...,47) = 47 (0x2f)
29792: close(3) = 0 (0x0)
29792: open("/usr/local/etc/libmap.d",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,0165) = 3 (0x3)
29792: fcntl(3,F_ISUNIONSTACK,0x0) = 0 (0x0)
29792: getdirentries(3,"4\M^G\^C\0\0\0\0\0\^A\0\0\0\0\0"...,4096,{ 0x0 }) = 104 (0x68)
29792: open("/usr/local/etc/libmap.d/mesa.conf",O_RDONLY|O_CLOEXEC,0165) = 4 (0x4)
29792: fstat(4,{ mode=-rw-r--r-- ,inode=505824,size=38,blksize=4096 }) = 0 (0x0)
29792: read(4,"libGLX_indirect.so.0 libGLX_mesa"...,38) = 38 (0x26)
29792: close(4) = 0 (0x0)
29792: getdirentries(3,0x800236008,4096,{ 0x156b2338 }) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=531805,size=342880,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,352256,PROT_NONE,MAP_GUARD,-1,0x0) = 34362175488 (0x800253000)
29792: mmap(0x800253000,135168,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362175488 (0x800253000)
29792: mmap(0x800274000,204800,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x20000) = 34362310656 (0x800274000)
29792: mmap(0x8002a6000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x51000) = 34362515456 (0x8002a6000)
29792: mmap(0x8002a8000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x52000) = 34362523648 (0x8002a8000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=545614,size=518624,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,532480,PROT_NONE,MAP_GUARD,-1,0x0) = 34362527744 (0x8002a9000)
29792: mmap(0x8002a9000,221184,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362527744 (0x8002a9000)
29792: mmap(0x8002df000,294912,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x35000) = 34362748928 (0x8002df000)
29792: mmap(0x800327000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34363043840 (0x800327000)
29792: mmap(0x800328000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34363047936 (0x800328000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=225495,size=576232,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,598016,PROT_NONE,MAP_GUARD,-1,0x0) = 34363060224 (0x80032b000)
29792: mmap(0x80032b000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363060224 (0x80032b000)
29792: mmap(0x80034d000,430080,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34363199488 (0x80034d000)
29792: mmap(0x8003b6000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x89000) = 34363629568 (0x8003b6000)
29792: mmap(0x8003b9000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34363641856 (0x8003b9000)
29792: mmap(0x8003bb000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363650048 (0x8003bb000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/var/run/ld-elf.so.hints",O_RDONLY|O_CLOEXEC,010022121) = 3 (0x3)
29792: read(3,"Ehnt\^A\0\0\0\M^@\0\0\0_\^A\0\0"...,128) = 128 (0x80)
29792: fstat(3,{ mode=-r--r--r-- ,inode=690360,size=479,blksize=4096 }) = 0 (0x0)
29792: pread(3,"/lib:/usr/lib:/usr/lib/compat:/u"...,351,0x80) = 351 (0x15f)
29792: close(3) = 0 (0x0)
29792: open("/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=529430,size=11840,blksize=12288 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34363658240 (0x8003bd000)
29792: mmap(0x8003bd000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363658240 (0x8003bd000)
29792: mmap(0x8003bf000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34363666432 (0x8003bf000)
29792: mmap(0x8003c1000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363674624 (0x8003c1000)
29792: mmap(0x8003c2000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363678720 (0x8003c2000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=527309,size=128224,blksize=128512 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,188416,PROT_NONE,MAP_GUARD,-1,0x0) = 34363682816 (0x8003c3000)
29792: mmap(0x8003c3000,53248,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363682816 (0x8003c3000)
29792: mmap(0x8003d0000,73728,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xc000) = 34363736064 (0x8003d0000)
29792: mmap(0x8003e2000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d000) = 34363809792 (0x8003e2000)
29792: mmap(0x8003e4000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1e000) = 34363817984 (0x8003e4000)
29792: mmap(0x8003e5000,49152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363822080 (0x8003e5000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=529712,size=22936,blksize=23040 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34363871232 (0x8003f1000)
29792: mmap(0x8003f1000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363871232 (0x8003f1000)
29792: mmap(0x8003f4000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34363883520 (0x8003f4000)
29792: mmap(0x8003f7000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363895808 (0x8003f7000)
29792: mmap(0x8003f8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363899904 (0x8003f8000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=527310,size=231544,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,241664,PROT_NONE,MAP_GUARD,-1,0x0) = 34363908096 (0x8003fa000)
29792: mmap(0x8003fa000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363908096 (0x8003fa000)
29792: mmap(0x80040c000,159744,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34363981824 (0x80040c000)
29792: mmap(0x800433000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34364141568 (0x800433000)
29792: mmap(0x800434000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34364145664 (0x800434000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rw-r--r-- ,inode=207032,size=56520,blksize=56832 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,57344,PROT_NONE,MAP_GUARD,-1,0x0) = 34364149760 (0x800435000)
29792: mmap(0x800435000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364149760 (0x800435000)
29792: mmap(0x800439000,28672,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34364166144 (0x800439000)
29792: mmap(0x800440000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34364194816 (0x800440000)
29792: mmap(0x800441000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34364198912 (0x800441000)
29792: mmap(0x800442000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34364203008 (0x800442000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=527311,size=1940232,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,4218880,PROT_NONE,MAP_GUARD,-1,0x0) = 34364207104 (0x800443000)
29792: mmap(0x800443000,532480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364207104 (0x800443000)
29792: mmap(0x8004c5000,1351680,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x81000) = 34364739584 (0x8004c5000)
29792: mmap(0x80060f000,40960,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1ca000) = 34366091264 (0x80060f000)
29792: mmap(0x800619000,24576,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d3000) = 34366132224 (0x800619000)
29792: mmap(0x80061f000,2269184,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34366156800 (0x80061f000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/pulseaudio/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29792: open("/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=472579,size=355424,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,368640,PROT_NONE,MAP_GUARD,-1,0x0) = 34368425984 (0x800849000)
29792: mmap(0x800849000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368425984 (0x800849000)
29792: mmap(0x80086b000,212992,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34368565248 (0x80086b000)
29792: mmap(0x80089f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x54000) = 34368778240 (0x80089f000)
29792: mmap(0x8008a1000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x55000) = 34368786432 (0x8008a1000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=223189,size=4256,blksize=4608 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,16384,PROT_NONE,MAP_GUARD,-1,0x0) = 34368794624 (0x8008a3000)
29792: mmap(0x8008a3000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368794624 (0x8008a3000)
29792: mmap(0x8008a4000,4096,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368798720 (0x8008a4000)
29792: mmap(0x8008a5000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368802816 (0x8008a5000)
29792: mmap(0x8008a6000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368806912 (0x8008a6000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=225224,size=1346744,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,1359872,PROT_NONE,MAP_GUARD,-1,0x0) = 34368811008 (0x8008a7000)
29792: mmap(0x8008a7000,700416,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368811008 (0x8008a7000)
29792: mmap(0x800952000,630784,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xaa000) = 34369511424 (0x800952000)
29792: mmap(0x8009ec000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x143000) = 34370142208 (0x8009ec000)
29792: mmap(0x8009ee000,20480,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x144000) = 34370150400 (0x8009ee000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=460835,size=171872,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,184320,PROT_NONE,MAP_GUARD,-1,0x0) = 34370170880 (0x8009f3000)
29792: mmap(0x8009f3000,90112,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370170880 (0x8009f3000)
29792: mmap(0x800a09000,86016,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x15000) = 34370260992 (0x800a09000)
29792: mmap(0x800a1e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34370347008 (0x800a1e000)
29792: mmap(0x800a1f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34370351104 (0x800a1f000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=207789,size=92480,blksize=92672 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,118784,PROT_NONE,MAP_GUARD,-1,0x0) = 34370355200 (0x800a20000)
29792: mmap(0x800a20000,36864,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370355200 (0x800a20000)
29792: mmap(0x800a29000,57344,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x8000) = 34370392064 (0x800a29000)
29792: mmap(0x800a37000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370449408 (0x800a37000)
29792: mmap(0x800a38000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370453504 (0x800a38000)
29792: mmap(0x800a3a000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370461696 (0x800a3a000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=222711,size=39888,blksize=39936 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34370473984 (0x800a3d000)
29792: mmap(0x800a3d000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370473984 (0x800a3d000)
29792: mmap(0x800a40000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34370486272 (0x800a40000)
29792: mmap(0x800a45000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34370506752 (0x800a45000)
29792: mmap(0x800a46000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34370510848 (0x800a46000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=210930,size=30440,blksize=30720 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34370519040 (0x800a48000)
29792: mmap(0x800a48000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370519040 (0x800a48000)
29792: mmap(0x800a4a000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34370527232 (0x800a4a000)
29792: mmap(0x800a4e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370543616 (0x800a4e000)
29792: mmap(0x800a4f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370547712 (0x800a4f000)
29792: mmap(0x800a50000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370551808 (0x800a50000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=529604,size=37768,blksize=37888 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,49152,PROT_NONE,MAP_GUARD,-1,0x0) = 34370555904 (0x800a51000)
29792: mmap(0x800a51000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370555904 (0x800a51000)
29792: mmap(0x800a55000,24576,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34370572288 (0x800a55000)
29792: mmap(0x800a5b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34370596864 (0x800a5b000)
29792: mmap(0x800a5c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34370600960 (0x800a5c000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=225523,size=664168,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,675840,PROT_NONE,MAP_GUARD,-1,0x0) = 34370605056 (0x800a5d000)
29792: mmap(0x800a5d000,557056,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370605056 (0x800a5d000)
29792: mmap(0x800ae5000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x87000) = 34371162112 (0x800ae5000)
29792: mmap(0x800aea000,94208,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34371182592 (0x800aea000)
29792: mmap(0x800b01000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xa1000) = 34371276800 (0x800b01000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=521459,size=266760,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,278528,PROT_NONE,MAP_GUARD,-1,0x0) = 34371280896 (0x800b02000)
29792: mmap(0x800b02000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371280896 (0x800b02000)
29792: mmap(0x800b14000,192512,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34371354624 (0x800b14000)
29792: mmap(0x800b43000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x3f000) = 34371547136 (0x800b43000)
29792: mmap(0x800b45000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x40000) = 34371555328 (0x800b45000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=228409,size=465976,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,479232,PROT_NONE,MAP_GUARD,-1,0x0) = 34371559424 (0x800b46000)
29792: mmap(0x800b46000,86016,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371559424 (0x800b46000)
29792: mmap(0x800b5b000,380928,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x14000) = 34371645440 (0x800b5b000)
29792: mmap(0x800bb8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x70000) = 34372026368 (0x800bb8000)
29792: mmap(0x800bba000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x71000) = 34372034560 (0x800bba000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=206803,size=211184,blksize=131072 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,225280,PROT_NONE,MAP_GUARD,-1,0x0) = 34372038656 (0x800bbb000)
29792: mmap(0x800bbb000,81920,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372038656 (0x800bbb000)
29792: mmap(0x800bcf000,131072,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x13000) = 34372120576 (0x800bcf000)
29792: mmap(0x800bef000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372251648 (0x800bef000)
29792: mmap(0x800bf0000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372255744 (0x800bf0000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=225227,size=31728,blksize=31744 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34372263936 (0x800bf2000)
29792: mmap(0x800bf2000,20480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372263936 (0x800bf2000)
29792: mmap(0x800bf7000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x4000) = 34372284416 (0x800bf7000)
29792: mmap(0x800bfb000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372300800 (0x800bfb000)
29792: mmap(0x800bfc000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372304896 (0x800bfc000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29792: open("/lib/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=529809,size=93640,blksize=93696 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,102400,PROT_NONE,MAP_GUARD,-1,0x0) = 34372308992 (0x800bfd000)
29792: mmap(0x800bfd000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372308992 (0x800bfd000)
29792: mmap(0x800c03000,69632,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34372333568 (0x800c03000)
29792: mmap(0x800c14000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34372403200 (0x800c14000)
29792: mmap(0x800c15000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34372407296 (0x800c15000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29792: open("/lib/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=529773,size=76944,blksize=77312 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,90112,PROT_NONE,MAP_GUARD,-1,0x0) = 34372411392 (0x800c16000)
29792: mmap(0x800c16000,28672,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372411392 (0x800c16000)
29792: mmap(0x800c1d000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x6000) = 34372440064 (0x800c1d000)
29792: mmap(0x800c29000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x11000) = 34372489216 (0x800c29000)
29792: mmap(0x800c2b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x12000) = 34372497408 (0x800c2b000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=207619,size=10816,blksize=11264 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34372501504 (0x800c2c000)
29792: mmap(0x800c2c000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372501504 (0x800c2c000)
29792: mmap(0x800c2d000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372505600 (0x800c2d000)
29792: mmap(0x800c2f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1000) = 34372513792 (0x800c2f000)
29792: mmap(0x800c31000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34372521984 (0x800c31000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=224892,size=28824,blksize=29184 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,32768,PROT_NONE,MAP_GUARD,-1,0x0) = 34372526080 (0x800c32000)
29792: mmap(0x800c32000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372526080 (0x800c32000)
29792: mmap(0x800c35000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34372538368 (0x800c35000)
29792: mmap(0x800c38000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34372550656 (0x800c38000)
29792: mmap(0x800c39000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34372554752 (0x800c39000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=224625,size=73376,blksize=73728 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,86016,PROT_NONE,MAP_GUARD,-1,0x0) = 34372558848 (0x800c3a000)
29792: mmap(0x800c3a000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372558848 (0x800c3a000)
29792: mmap(0x800c40000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34372583424 (0x800c40000)
29792: mmap(0x800c4c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34372632576 (0x800c4c000)
29792: mmap(0x800c4d000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34372636672 (0x800c4d000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: open("/compat/ubuntu/opt/zoom/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/compat/ubuntu/opt/zoom/cef/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/lib/compat/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29792: open("/usr/local/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29792: fstat(3,{ mode=-rwxr-xr-x ,inode=229151,size=62792,blksize=62976 }) = 0 (0x0)
29792: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29792: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29792: mmap(0x0,73728,PROT_NONE,MAP_GUARD,-1,0x0) = 34372644864 (0x800c4f000)
29792: mmap(0x800c4f000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372644864 (0x800c4f000)
29792: mmap(0x800c53000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34372661248 (0x800c53000)
29792: mmap(0x800c5f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34372710400 (0x800c5f000)
29792: mmap(0x800c60000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34372714496 (0x800c60000)
29792: munmap(0x800252000,4096) = 0 (0x0)
29792: close(3) = 0 (0x0)
29792: mprotect(0x8002a6000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x8003b6000,8192,PROT_READ) = 0 (0x0)
29792: mprotect(0x8003e2000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800440000,4096,PROT_READ) = 0 (0x0)
29792: mmap(0x0,196608,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372718592 (0x800c61000)
29792: mprotect(0x80060f000,36864,PROT_READ) = 0 (0x0)
29792: mprotect(0x80089f000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x8009ec000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800a45000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800a4e000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800aea000,90112,PROT_READ) = 0 (0x0)
29792: mprotect(0x800b43000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800bb8000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800c29000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800c2f000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x800c38000,4096,PROT_READ) = 0 (0x0)
29792: mprotect(0x80060f000,36864,PROT_READ|PROT_WRITE) = 0 (0x0)
29792: mprotect(0x80060f000,36864,PROT_READ) = 0 (0x0)
29792: readlink("/etc/malloc.conf",0x7fffffffcfd0,1024) ERR#2 'No such file or directory'
29792: issetugid() = 0 (0x0)
29792: __sysctl("vm.overcommit",2,0x7fffffffb55c,0x7fffffffb550,0x0,0) = 0 (0x0)
29792: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34374418432 (0x800e00000)
29792: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(12),-1,0x0) = 34376515584 (0x801000000)
29792: mmap(0x0,4194304,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34378612736 (0x801200000)
29792: __sysctl("kern.usrstack",2,0x8003e4c88,0x7fffffffd458,0x0,0) = 0 (0x0)
29792: getrlimit(RLIMIT_STACK,{ cur=8388608,max=536870912 }) = 0 (0x0)
29792: thr_self(0x801012000) = 0 (0x0)
29792: mmap(0x7fffff7fe000,4096,PROT_NONE,MAP_ANON,-1,0x0) = 34362171392 (0x800252000)
29792: rtprio_thread(RTP_LOOKUP,101509,0x7fffffffd418) = 0 (0x0)
29792: sigaction(SIGTHR,{ 0x8003dcb50 SA_SIGINFO ss_t },0x0) = 0 (0x0)
29792: sigprocmask(SIG_UNBLOCK,{ },0x0) = 0 (0x0)
29792: _umtx_op(0x7fffffffd410,UMTX_OP_WAKE,0x1,0x0,0x0) = 0 (0x0)
29792: mprotect(0x0,0,PROT_NONE) = 0 (0x0)
29792: getpid() = 29792 (0x7460)
29792: getpid() = 29792 (0x7460)
29792: sigprocmask(SIG_BLOCK,{ SIGHUP|SIGINT|SIGQUIT|SIGILL|SIGTRAP|SIGABRT|SIGEMT|SIGFPE|SIGKILL|SIGBUS|SIGSEGV|SIGSYS|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2 },{ }) = 0 (0x0)
29792: sigfastblock(0x3,0x0) = 0 (0x0)
29792: sigprocmask(SIG_SETMASK,{ },0x0) = 0 (0x0)
29792: sigfastblock(0x1,0x801012038) = 0 (0x0)
29792: getcontext(0x7fffffffce00) = 0 (0x0)
29792: sysarch(AMD64_GET_XFPUSTATE,0x7fffffffcdc8) = 0 (0x0)
29792: open("/usr/share/locale/en_US.UTF-8/LC_COLLATE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=535218,size=79692,blksize=79872 }) = 0 (0x0)
29792: mmap(0x0,79692,PROT_READ,MAP_PRIVATE,3,0x0) = 34372915200 (0x800c91000)
29792: close(3) = 0 (0x0)
29792: open("/usr/share/locale/en_US.UTF-8/LC_CTYPE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=536347,size=51056,blksize=51200 }) = 0 (0x0)
29792: mmap(0x0,51056,PROT_READ,MAP_PRIVATE,3,0x0) = 34372997120 (0x800ca5000)
29792: close(3) = 0 (0x0)
29792: munmap(0x800ca5000,51056) = 0 (0x0)
29792: open("/usr/share/locale/en_US.UTF-8/LC_MONETARY",O_RDONLY|O_CLOEXEC,014335262400) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=534800,size=32,blksize=4096 }) = 0 (0x0)
29792: read(3,"USD \n$\n.\n,\n3\n\n-\n2\n2\n1\n"...,32) = 32 (0x20)
29792: close(3) = 0 (0x0)
29792: open("/usr/share/locale/en_US.UTF-8/LC_NUMERIC",O_RDONLY|O_CLOEXEC,025242400) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=535217,size=6,blksize=4096 }) = 0 (0x0)
29792: read(3,".\n,\n3\n",6) = 6 (0x6)
29792: close(3) = 0 (0x0)
29792: open("/usr/share/locale/en_US.UTF-8/LC_TIME",O_RDONLY|O_CLOEXEC,00) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=535875,size=377,blksize=4096 }) = 0 (0x0)
29792: read(3,"Jan\nFeb\nMar\nApr\nMay\nJun\nJu"...,377) = 377 (0x179)
29792: close(3) = 0 (0x0)
29792: open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES",O_RDONLY|O_CLOEXEC,011320443400) = 3 (0x3)
29792: fstat(3,{ mode=-r--r--r-- ,inode=534801,size=74,blksize=4096 }) = 0 (0x0)
29792: read(3,"^(([yY]([eE][sS])?)|([yY]))\n^(("...,74) = 74 (0x4a)
29792: close(3) = 0 (0x0)
29792: mmap(0x0,139264,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372997120 (0x800ca5000)
29792: getuid() = 1002 (0x3ea)
29792: geteuid() = 1002 (0x3ea)
29792: getgid() = 1002 (0x3ea)
29792: getegid() = 1002 (0x3ea)
29792: openat(AT_FDCWD,"/usr/local/share/locale/en_US.UTF-8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29792: openat(AT_FDCWD,"/usr/local/share/locale/en_US.utf8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29792: openat(AT_FDCWD,"/usr/local/share/locale/en_US/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29792: openat(AT_FDCWD,"/usr/local/share/locale/en.UTF-8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29792: openat(AT_FDCWD,"/usr/local/share/locale/en.utf8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29792: openat(AT_FDCWD,"/usr/local/share/locale/en/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29792: fstat(1,{ mode=p--------- ,inode=72386,size=0,blksize=4096 }) = 0 (0x0)
29792: write(1,"pactl 14.2\nCompiled with libpul"...,69) = 69 (0x45)
29790: read(3,"pactl 14.2\nCompiled with libpul"...,4096) = 69 (0x45)
29790: close(3) = 0 (0x0)
29792: exit(0x0)
29792: process exit, rval = 0
29791: linux_wait4(0xffffffff,0x7fffffffe0ac,0x0,0x0) ERR#-4 'Interrupted system call'
29791: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29792 uid=1002 status=0
29791: linux_rt_sigreturn(0x11) EJUSTRETURN
29791: linux_wait4(0xffffffff,0x7fffffffe0ac,0x0,0x0) = 29792 (0x7460)
29791: linux_exit_group(0x0)
29791: process exit, rval = 0
29790: linux_wait4(0x745f,0x7fffffffd13c,0x0,0x0) = 29791 (0x745f)
29790: linux_pipe2(0x7fffffffd218,0x80000) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffd0f0) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffd0f0) = 0 (0x0)
29790: linux_mmap2(0x0,0x9000,0x3,0x20022,0xffffffff,0x0) = 34469179392 (0x80685f000)
29790: linux_rt_sigprocmask(0x0,0x808dba3e0,0x7fffffffcf20,0x8) = 0 (0x0)
29793: <new process>
29790: linux_clone(0x4111,0x806867ff0,0x8073ee380,0x808dbc5aa,0x0) = 29793 (0x7461)
29793: linux_rt_sigprocmask(0x0,0x0,0x806867ea0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x4,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x4,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x5,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x5,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x6,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x6,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x7,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x7,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x8,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x8,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xa,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xa,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xb,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xb,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xc,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xc,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xd,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xd,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xe,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xe,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xf,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xf,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x11,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x11,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x12,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x12,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x14,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x14,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x15,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x15,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x16,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x16,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x17,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x17,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x18,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x18,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x19,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x19,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1a,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1a,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1b,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1b,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1c,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1c,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1d,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1d,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1e,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1e,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1f,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x1f,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x20,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x21,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x22,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x22,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x23,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x23,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x24,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x24,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x25,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x25,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x26,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x26,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x27,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x27,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x28,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x28,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x29,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x29,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2a,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2a,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2b,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2b,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2c,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2c,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2d,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2d,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2e,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2e,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2f,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2f,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x30,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x30,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x31,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x31,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x32,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x32,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x33,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x33,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x34,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x34,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x35,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x35,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x36,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x36,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x37,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x37,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x38,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x38,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x39,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x39,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3a,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3a,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3b,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3b,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3c,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3c,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3d,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3d,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3e,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3e,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3f,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3f,0x806867d30,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x40,0x0,0x806867dd0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x40,0x806867d30,0x0,0x8) = 0 (0x0)
29793: dup2(4,1) = 1 (0x1)
29793: linux_rt_sigprocmask(0x2,0x7fffffffcf20,0x0,0x8) = 0 (0x0)
29793: linux_execve("/bin/sh",0x7fffffffd220,0x7fffffffe5d0) EJUSTRETURN
29790: munmap(0x80685f000,36864) = 0 (0x0)
29793: linux_brk(0x0) = 17055744 (0x1044000)
29790: linux_rt_sigprocmask(0x2,0x7fffffffcf20,0x0,0x8) = 0 (0x0)
29793: linux_arch_prctl(0x3001,0x7fffffffe4d0) = 0 (0x0)
29790: close(4) = 0 (0x0)
29793: linux_newuname(0x7fffffffe0d0) = 0 (0x0)
29790: linux_fcntl(0x3,0x2,0x0) = 0 (0x0)
29793: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29790: linux_newfstat(3,0x7fffffffd120) = 0 (0x0)
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd720) = 0 (0x0)
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29793: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd720) ERR#-2 'No such file or directory'
29793: linux_openat(0xffffff9c,0x801064b80,0x80000,0x0) = 3 (0x3)
29793: linux_newfstat(3,0x7fffffffd6d0) = 0 (0x0)
29793: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376970240 (0x80106f000)
29793: close(3) = 0 (0x0)
29793: linux_openat(0xffffff9c,0x80106ef50,0x80000,0x0) = 3 (0x3)
29793: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29793: linux_pread(0x3,0x7fffffffd490,0x310,0x40) = 784 (0x310)
29793: linux_pread(0x3,0x7fffffffd460,0x20,0x350) = 32 (0x20)
29793: linux_pread(0x3,0x7fffffffd410,0x44,0x370) = 68 (0x44)
29793: linux_newfstat(3,0x7fffffffd720) = 0 (0x0)
29793: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34377007104 (0x801078000)
29793: linux_pread(0x3,0x7fffffffd370,0x310,0x40) = 784 (0x310)
29793: linux_pread(0x3,0x7fffffffd050,0x20,0x350) = 32 (0x20)
29793: linux_pread(0x3,0x7fffffffd030,0x44,0x370) = 68 (0x44)
29793: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377015296 (0x80107a000)
29793: linux_mprotect(0x80109f000,0x1c3000,0x0) = 0 (0x0)
29793: linux_mmap2(0x80109f000,0x178000,0x5,0x812,0x3,0x25000) = 34377166848 (0x80109f000)
29793: linux_mmap2(0x801217000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378706944 (0x801217000)
29793: linux_mmap2(0x801262000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379014144 (0x801262000)
29793: linux_mmap2(0x801268000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379038720 (0x801268000)
29793: close(3) = 0 (0x0)
29793: linux_arch_prctl(0x1002,0x801079580) = 0 (0x0)
29793: linux_mprotect(0x801262000,0x3000,0x1) = 0 (0x0)
29793: linux_mprotect(0x103f000,0x2000,0x1) = 0 (0x0)
29793: linux_mprotect(0x80106c000,0x1000,0x1) = 0 (0x0)
29793: munmap(0x80106f000,34098) = 0 (0x0)
29793: linux_getuid() = 1002 (0x3ea)
29793: linux_getgid() = 1002 (0x3ea)
29793: linux_getpid() = 29793 (0x7461)
29793: linux_rt_sigaction(0x11,0x7fffffffe030,0x0,0x8) = 0 (0x0)
29793: geteuid() = 1002 (0x3ea)
29793: linux_brk(0x0) = 17055744 (0x1044000)
29793: linux_brk(0x1065000) = 17190912 (0x1065000)
29793: linux_getppid() = 29790 (0x745e)
29793: linux_newstat("/home/csgordon",0x7fffffffe250) = 0 (0x0)
29793: linux_newstat(".",0x7fffffffe2e0) = 0 (0x0)
29793: linux_getcwd(0x1044c00,0x1000) = 24 (0x18)
29793: geteuid() = 1002 (0x3ea)
29793: getegid() = 1002 (0x3ea)
29793: linux_rt_sigaction(0x2,0x0,0x7fffffffe1d0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x2,0x7fffffffe130,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3,0x0,0x7fffffffe1d0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0x3,0x7fffffffe130,0x0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xf,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29793: linux_rt_sigaction(0xf,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29793: linux_newstat("/home/csgordon/.local/bin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/usr/home/csgordon/.opam/default/bin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/home/csgordon/.cargo/bin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/sbin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/bin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/usr/sbin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/usr/bin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/usr/local/sbin/pacmd",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/usr/local/bin/pacmd",0x7fffffffe1c0) = 0 (0x0)
29793: linux_pipe(0x7fffffffe2c0) = 0 (0x0)
29793: linux_clone(0x1200011,0x0,0x0,0x801079850,0x0) = 29794 (0x7462)
29794: <new process>
29793: close(4) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: dup2(4,1) = 1 (0x1)
29793: linux_newstat("/home/csgordon/.local/bin/grep",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29794: close(4) = 0 (0x0)
29793: linux_newstat("/usr/home/csgordon/.opam/default/bin/grep",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29793: linux_newstat("/home/csgordon/.cargo/bin/grep",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29794: linux_execve("/usr/local/bin/pacmd",0x1043c58,0x1044e08) EJUSTRETURN
29793: linux_newstat("/sbin/grep",0x7fffffffe1c0) ERR#-2 'No such file or directory'
29794: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34361987072 (0x800225000)
29793: linux_newstat("/bin/grep",0x7fffffffe1c0) = 0 (0x0)
29794: mprotect(0x800222000,4096,PROT_READ) = 0 (0x0)
29795: <new process>
29793: linux_clone(0x1200011,0x0,0x0,0x801079850,0x0) = 29795 (0x7463)
29794: issetugid() = 0 (0x0)
29795: dup2(3,0) = 0 (0x0)
29794: sigfastblock(0x1,0x800224930) = 0 (0x0)
29795: close(3) = 0 (0x0)
29794: __sysctl("kern.ostype",2,0x80022428a,0x7fffffffd800,0x0,0) = 0 (0x0)
29793: close(3) = 0 (0x0)
29794: __sysctl("kern.hostname",2,0x80022438a,0x7fffffffd800,0x0,0) = 0 (0x0)
29795: linux_execve("/bin/grep",0x1043c60,0x1044e38) EJUSTRETURN
29794: __sysctl("kern.osrelease",2,0x80022448a,0x7fffffffd800,0x0,0) = 0 (0x0)
29795: linux_brk(0x0) = 17125376 (0x1055000)
29794: __sysctl("kern.version",2,0x80022458a,0x7fffffffd800,0x0,0) = 0 (0x0)
29795: linux_arch_prctl(0x3001,0x7fffffffe4e0) = 0 (0x0)
29794: __sysctl("hw.machine",2,0x80022468a,0x7fffffffd800,0x0,0) = 0 (0x0)
29793: close(-1) ERR#-9 'Bad file descriptor'
29795: linux_newuname(0x7fffffffe0e0) = 0 (0x0)
29794: open("/etc/libmap.conf",O_RDONLY|O_CLOEXEC,010500030) = 3 (0x3)
29795: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29794: fstat(3,{ mode=-rw-r--r-- ,inode=529128,size=47,blksize=4096 }) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29795: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: read(3,"# $FreeBSD$\nincludedir /usr/loc"...,47) = 47 (0x2f)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: close(3) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: open("/usr/local/etc/libmap.d",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,0165) = 3 (0x3)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: fcntl(3,F_ISUNIONSTACK,0x0) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: getdirentries(3,"4\M^G\^C\0\0\0\0\0\^A\0\0\0\0\0"...,4096,{ 0x0 }) = 104 (0x68)
29795: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: open("/usr/local/etc/libmap.d/mesa.conf",O_RDONLY|O_CLOEXEC,0165) = 4 (0x4)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: fstat(4,{ mode=-rw-r--r-- ,inode=505824,size=38,blksize=4096 }) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: read(4,"libGLX_indirect.so.0 libGLX_mesa"...,38) = 38 (0x26)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: close(4) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: getdirentries(3,0x80022a008,4096,{ 0x156b2338 }) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: close(3) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd730) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/cef/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: open("/usr/local/lib/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=531805,size=342880,blksize=131072 }) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x0,352256,PROT_NONE,MAP_GUARD,-1,0x0) = 34362126336 (0x800247000)
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x800247000,135168,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362126336 (0x800247000)
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: mmap(0x800268000,204800,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x20000) = 34362261504 (0x800268000)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x80029a000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x51000) = 34362466304 (0x80029a000)
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: mmap(0x80029c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x52000) = 34362474496 (0x80029c000)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: munmap(0x800246000,4096) = 0 (0x0)
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: close(3) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29794: open("/usr/local/lib/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd730) ERR#-2 'No such file or directory'
29794: open("/usr/local/lib/pulseaudio/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29795: linux_openat(0xffffff9c,0x801076b80,0x80000,0x0) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=545614,size=518624,blksize=131072 }) = 0 (0x0)
29795: linux_newfstat(3,0x7fffffffd6e0) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29795: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34377043968 (0x801081000)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29795: close(3) = 0 (0x0)
29794: mmap(0x0,532480,PROT_NONE,MAP_GUARD,-1,0x0) = 34362478592 (0x80029d000)
29795: linux_openat(0xffffff9c,0x801080f50,0x80000,0x0) = 3 (0x3)
29795: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29794: mmap(0x80029d000,221184,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362478592 (0x80029d000)
29795: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29794: mmap(0x8002d3000,294912,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x35000) = 34362699776 (0x8002d3000)
29795: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34377080832 (0x80108a000)
29794: mmap(0x80031b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34362994688 (0x80031b000)
29794: mmap(0x80031c000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34362998784 (0x80031c000)
29795: linux_mmap2(0x0,0x72108,0x1,0x802,0x3,0x0) = 34377089024 (0x80108c000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29795: linux_mmap2(0x80108e000,0x51000,0x5,0x812,0x3,0x2000) = 34377097216 (0x80108e000)
29794: close(3) = 0 (0x0)
29795: linux_mmap2(0x8010df000,0x1e000,0x1,0x812,0x3,0x53000) = 34377428992 (0x8010df000)
29794: open("/compat/ubuntu/opt/zoom/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_mmap2(0x8010fd000,0x2000,0x3,0x812,0x3,0x70000) = 34377551872 (0x8010fd000)
29794: open("/compat/ubuntu/opt/zoom/cef/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: close(3) = 0 (0x0)
29794: open("/usr/local/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x7fffffffd650,0x80000,0x0) ERR#-2 'No such file or directory'
29794: open("/usr/local/lib/pulseaudio/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_openat(0xffffff9c,0x80108a4e0,0x80000,0x0) = 3 (0x3)
29794: open("/var/run/ld-elf.so.hints",O_RDONLY|O_CLOEXEC,010005263) = 3 (0x3)
29795: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29795: linux_newfstat(3,0x7fffffffd710) = 0 (0x0)
29794: read(3,"Ehnt\^A\0\0\0\M^@\0\0\0_\^A\0\0"...,128) = 128 (0x80)
29795: linux_mmap2(0x0,0x5110,0x1,0x802,0x3,0x0) = 34377560064 (0x8010ff000)
29794: fstat(3,{ mode=-r--r--r-- ,inode=690360,size=479,blksize=4096 }) = 0 (0x0)
29795: linux_mmap2(0x801100000,0x2000,0x5,0x812,0x3,0x1000) = 34377564160 (0x801100000)
29794: pread(3,"/lib:/usr/lib:/usr/lib/compat:/u"...,351,0x80) = 351 (0x15f)
29795: linux_mmap2(0x801102000,0x1000,0x1,0x812,0x3,0x3000) = 34377572352 (0x801102000)
29794: close(3) = 0 (0x0)
29795: linux_mmap2(0x801103000,0x2000,0x3,0x812,0x3,0x3000) = 34377576448 (0x801103000)
29794: open("/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: close(3) = 0 (0x0)
29794: open("/usr/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29795: linux_openat(0xffffff9c,0x7fffffffd630,0x80000,0x0) ERR#-2 'No such file or directory'
29794: fstat(3,{ mode=-r--r--r-- ,inode=529430,size=11840,blksize=12288 }) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x80108a9f0,0x80000,0x0) = 3 (0x3)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29795: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29795: linux_pread(0x3,0x7fffffffd460,0x310,0x40) = 784 (0x310)
29794: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34363011072 (0x80031f000)
29795: linux_pread(0x3,0x7fffffffd430,0x20,0x350) = 32 (0x20)
29794: mmap(0x80031f000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363011072 (0x80031f000)
29795: linux_pread(0x3,0x7fffffffd3e0,0x44,0x370) = 68 (0x44)
29794: mmap(0x800321000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34363019264 (0x800321000)
29795: linux_newfstat(3,0x7fffffffd6f0) = 0 (0x0)
29794: mmap(0x800323000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363027456 (0x800323000)
29795: linux_pread(0x3,0x7fffffffd340,0x310,0x40) = 784 (0x310)
29794: mmap(0x800324000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363031552 (0x800324000)
29795: linux_pread(0x3,0x7fffffffd020,0x20,0x350) = 32 (0x20)
29794: munmap(0x800246000,4096) = 0 (0x0)
29795: linux_pread(0x3,0x7fffffffd000,0x44,0x370) = 68 (0x44)
29794: close(3) = 0 (0x0)
29795: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377584640 (0x801105000)
29794: open("/compat/ubuntu/opt/zoom/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_mprotect(0x80112a000,0x1c3000,0x0) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/cef/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_mmap2(0x80112a000,0x178000,0x5,0x812,0x3,0x25000) = 34377736192 (0x80112a000)
29794: open("/usr/local/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_mmap2(0x8012a2000,0x4a000,0x1,0x812,0x3,0x19d000) = 34379276288 (0x8012a2000)
29794: open("/usr/local/lib/pulseaudio/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_mmap2(0x8012ed000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379583488 (0x8012ed000)
29794: open("/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29795: linux_mmap2(0x8012f3000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379608064 (0x8012f3000)
29794: fstat(3,{ mode=-r--r--r-- ,inode=527309,size=128224,blksize=128512 }) = 0 (0x0)
29795: close(3) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x7fffffffd610,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29795: linux_openat(0xffffff9c,0x80108aee0,0x80000,0x0) = 3 (0x3)
29794: mmap(0x0,188416,PROT_NONE,MAP_GUARD,-1,0x0) = 34363035648 (0x800325000)
29795: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29794: mmap(0x800325000,53248,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363035648 (0x800325000)
29795: linux_pread(0x3,0x7fffffffd710,0x44,0x338) = 68 (0x44)
29794: mmap(0x800332000,73728,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xc000) = 34363088896 (0x800332000)
29795: linux_newfstat(3,0x7fffffffd6d0) = 0 (0x0)
29794: mmap(0x800344000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d000) = 34363162624 (0x800344000)
29795: linux_pread(0x3,0x7fffffffd330,0x44,0x338) = 68 (0x44)
29794: mmap(0x800346000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1e000) = 34363170816 (0x800346000)
29795: linux_mmap2(0x0,0x22478,0x1,0x802,0x3,0x0) = 34379624448 (0x8012f7000)
29794: mmap(0x800347000,49152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363174912 (0x800347000)
29795: linux_mmap2(0x8012fe000,0x11000,0x5,0x812,0x3,0x7000) = 34379653120 (0x8012fe000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29795: linux_mmap2(0x80130f000,0x5000,0x1,0x812,0x3,0x18000) = 34379722752 (0x80130f000)
29794: close(3) = 0 (0x0)
29795: linux_mmap2(0x801314000,0x2000,0x3,0x812,0x3,0x1c000) = 34379743232 (0x801314000)
29794: open("/compat/ubuntu/opt/zoom/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_mmap2(0x801316000,0x3478,0x3,0x32,0xffffffff,0x0) = 34379751424 (0x801316000)
29794: open("/compat/ubuntu/opt/zoom/cef/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: close(3) = 0 (0x0)
29794: open("/usr/local/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34379767808 (0x80131a000)
29794: open("/usr/local/lib/pulseaudio/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_arch_prctl(0x1002,0x80131ab80) = 0 (0x0)
29794: open("/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29795: linux_mprotect(0x8012ed000,0x3000,0x1) = 0 (0x0)
29794: fstat(3,{ mode=-r--r--r-- ,inode=529712,size=22936,blksize=23040 }) = 0 (0x0)
29795: linux_mprotect(0x801314000,0x1000,0x1) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29795: linux_mprotect(0x801103000,0x1000,0x1) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29795: linux_mprotect(0x8010fd000,0x1000,0x1) = 0 (0x0)
29794: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34363224064 (0x800353000)
29795: linux_mprotect(0x1051000,0x1000,0x1) = 0 (0x0)
29794: mmap(0x800353000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363224064 (0x800353000)
29795: linux_mprotect(0x80107e000,0x1000,0x1) = 0 (0x0)
29794: mmap(0x800356000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34363236352 (0x800356000)
29795: munmap(0x801081000,34098) = 0 (0x0)
29794: mmap(0x800359000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363248640 (0x800359000)
29795: linux_set_tid_address(0x80131ae50) = 29795 (0x7463)
29794: mmap(0x80035a000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363252736 (0x80035a000)
29795: linux_set_robust_list(0x80131ae60,0x18) = 0 (0x0)
29794: munmap(0x800246000,4096) = 0 (0x0)
29795: linux_rt_sigaction(0x20,0x7fffffffe300,0x0,0x8) = 0 (0x0)
29794: close(3) = 0 (0x0)
29795: linux_rt_sigaction(0x21,0x7fffffffe300,0x0,0x8) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_rt_sigprocmask(0x1,0x7fffffffe478,0x0,0x8) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/cef/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_prlimit64(0x0,0x3,0x0,0x7fffffffe460) = 0 (0x0)
29794: open("/usr/local/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/pulseaudio/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29795: linux_brk(0x0) = 17125376 (0x1055000)
29795: linux_brk(0x1076000) = 17260544 (0x1076000)
29794: open("/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29795: linux_openat(0xffffff9c,0x8012c3fd0,0x80000,0x0) ERR#-2 'No such file or directory'
29794: fstat(3,{ mode=-r--r--r-- ,inode=527310,size=231544,blksize=131072 }) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x7fffffffde20,0x80000,0x0) ERR#-2 'No such file or directory'
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29795: linux_openat(0xffffff9c,0x1055590,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29795: linux_openat(0xffffff9c,0x10557f0,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x0,241664,PROT_NONE,MAP_GUARD,-1,0x0) = 34363260928 (0x80035c000)
29795: linux_openat(0xffffff9c,0x1055640,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x80035c000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363260928 (0x80035c000)
29795: linux_openat(0xffffff9c,0x1055730,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x80036e000,159744,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34363334656 (0x80036e000)
29795: linux_openat(0xffffff9c,0x10558a0,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x800395000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34363494400 (0x800395000)
29795: linux_openat(0xffffff9c,0x10556c0,0x80000,0x0) ERR#-2 'No such file or directory'
29794: mmap(0x800396000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34363498496 (0x800396000)
29795: linux_sigaltstack(0x7fffffffe1e0,0x0) = 0 (0x0)
29794: munmap(0x800246000,4096) = 0 (0x0)
29795: linux_rt_sigaction(0xb,0x7fffffffe090,0x0,0x8) = 0 (0x0)
29794: close(3) = 0 (0x0)
29795: linux_newfstat(1,0x7fffffffe340) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29795: linux_newfstat(0,0x7fffffffe150) = 0 (0x0)
29794: open("/usr/local/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29795: linux_lseek(0,0,SEEK_CUR) ERR#-29 'Illegal seek'
29794: fstat(3,{ mode=-rw-r--r-- ,inode=207032,size=56520,blksize=56832 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,57344,PROT_NONE,MAP_GUARD,-1,0x0) = 34363502592 (0x800397000)
29794: mmap(0x800397000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363502592 (0x800397000)
29794: mmap(0x80039b000,28672,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34363518976 (0x80039b000)
29794: mmap(0x8003a2000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34363547648 (0x8003a2000)
29794: mmap(0x8003a3000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34363551744 (0x8003a3000)
29794: mmap(0x8003a4000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363555840 (0x8003a4000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/pulseaudio/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) ERR#2 'No such file or directory'
29794: open("/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=527311,size=1940232,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,4218880,PROT_NONE,MAP_GUARD,-1,0x0) = 34363559936 (0x8003a5000)
29794: mmap(0x8003a5000,532480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363559936 (0x8003a5000)
29794: mmap(0x800427000,1351680,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x81000) = 34364092416 (0x800427000)
29794: mmap(0x800571000,40960,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1ca000) = 34365444096 (0x800571000)
29794: mmap(0x80057b000,24576,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d3000) = 34365485056 (0x80057b000)
29794: mmap(0x800581000,2269184,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34365509632 (0x800581000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/pulseaudio/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29794: open("/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=472579,size=355424,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,368640,PROT_NONE,MAP_GUARD,-1,0x0) = 34367778816 (0x8007ab000)
29794: mmap(0x8007ab000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34367778816 (0x8007ab000)
29794: mmap(0x8007cd000,212992,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34367918080 (0x8007cd000)
29794: mmap(0x800801000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x54000) = 34368131072 (0x800801000)
29794: mmap(0x800803000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x55000) = 34368139264 (0x800803000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=223189,size=4256,blksize=4608 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,16384,PROT_NONE,MAP_GUARD,-1,0x0) = 34368147456 (0x800805000)
29794: mmap(0x800805000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368147456 (0x800805000)
29794: mmap(0x800806000,4096,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368151552 (0x800806000)
29794: mmap(0x800807000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368155648 (0x800807000)
29794: mmap(0x800808000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368159744 (0x800808000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=225224,size=1346744,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,1359872,PROT_NONE,MAP_GUARD,-1,0x0) = 34368163840 (0x800809000)
29794: mmap(0x800809000,700416,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368163840 (0x800809000)
29794: mmap(0x8008b4000,630784,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xaa000) = 34368864256 (0x8008b4000)
29794: mmap(0x80094e000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x143000) = 34369495040 (0x80094e000)
29794: mmap(0x800950000,20480,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x144000) = 34369503232 (0x800950000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=460835,size=171872,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,184320,PROT_NONE,MAP_GUARD,-1,0x0) = 34369523712 (0x800955000)
29794: mmap(0x800955000,90112,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34369523712 (0x800955000)
29794: mmap(0x80096b000,86016,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x15000) = 34369613824 (0x80096b000)
29794: mmap(0x800980000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34369699840 (0x800980000)
29794: mmap(0x800981000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34369703936 (0x800981000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=207789,size=92480,blksize=92672 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,118784,PROT_NONE,MAP_GUARD,-1,0x0) = 34369708032 (0x800982000)
29794: mmap(0x800982000,36864,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34369708032 (0x800982000)
29794: mmap(0x80098b000,57344,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x8000) = 34369744896 (0x80098b000)
29794: mmap(0x800999000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34369802240 (0x800999000)
29794: mmap(0x80099a000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34369806336 (0x80099a000)
29794: mmap(0x80099c000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34369814528 (0x80099c000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=222711,size=39888,blksize=39936 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34369826816 (0x80099f000)
29794: mmap(0x80099f000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34369826816 (0x80099f000)
29794: mmap(0x8009a2000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34369839104 (0x8009a2000)
29794: mmap(0x8009a7000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34369859584 (0x8009a7000)
29794: mmap(0x8009a8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34369863680 (0x8009a8000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=210930,size=30440,blksize=30720 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34369871872 (0x8009aa000)
29794: mmap(0x8009aa000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34369871872 (0x8009aa000)
29794: mmap(0x8009ac000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34369880064 (0x8009ac000)
29794: mmap(0x8009b0000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34369896448 (0x8009b0000)
29794: mmap(0x8009b1000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34369900544 (0x8009b1000)
29794: mmap(0x8009b2000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34369904640 (0x8009b2000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=529604,size=37768,blksize=37888 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,49152,PROT_NONE,MAP_GUARD,-1,0x0) = 34369908736 (0x8009b3000)
29794: mmap(0x8009b3000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34369908736 (0x8009b3000)
29794: mmap(0x8009b7000,24576,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34369925120 (0x8009b7000)
29794: mmap(0x8009bd000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34369949696 (0x8009bd000)
29794: mmap(0x8009be000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34369953792 (0x8009be000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/lib/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=225495,size=576232,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,598016,PROT_NONE,MAP_GUARD,-1,0x0) = 34369957888 (0x8009bf000)
29794: mmap(0x8009bf000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34369957888 (0x8009bf000)
29794: mmap(0x8009e1000,430080,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34370097152 (0x8009e1000)
29794: mmap(0x800a4a000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x89000) = 34370527232 (0x800a4a000)
29794: mmap(0x800a4d000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34370539520 (0x800a4d000)
29794: mmap(0x800a4f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370547712 (0x800a4f000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29794: open("/lib/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=529809,size=93640,blksize=93696 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,102400,PROT_NONE,MAP_GUARD,-1,0x0) = 34370555904 (0x800a51000)
29794: mmap(0x800a51000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370555904 (0x800a51000)
29794: mmap(0x800a57000,69632,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34370580480 (0x800a57000)
29794: mmap(0x800a68000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370650112 (0x800a68000)
29794: mmap(0x800a69000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370654208 (0x800a69000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29794: open("/lib/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=529773,size=76944,blksize=77312 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,90112,PROT_NONE,MAP_GUARD,-1,0x0) = 34370658304 (0x800a6a000)
29794: mmap(0x800a6a000,28672,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370658304 (0x800a6a000)
29794: mmap(0x800a71000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x6000) = 34370686976 (0x800a71000)
29794: mmap(0x800a7d000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x11000) = 34370736128 (0x800a7d000)
29794: mmap(0x800a7f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x12000) = 34370744320 (0x800a7f000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=207619,size=10816,blksize=11264 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34370748416 (0x800a80000)
29794: mmap(0x800a80000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370748416 (0x800a80000)
29794: mmap(0x800a81000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370752512 (0x800a81000)
29794: mmap(0x800a83000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1000) = 34370760704 (0x800a83000)
29794: mmap(0x800a85000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34370768896 (0x800a85000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=224892,size=28824,blksize=29184 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,32768,PROT_NONE,MAP_GUARD,-1,0x0) = 34370772992 (0x800a86000)
29794: mmap(0x800a86000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370772992 (0x800a86000)
29794: mmap(0x800a89000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34370785280 (0x800a89000)
29794: mmap(0x800a8c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370797568 (0x800a8c000)
29794: mmap(0x800a8d000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370801664 (0x800a8d000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=224625,size=73376,blksize=73728 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,86016,PROT_NONE,MAP_GUARD,-1,0x0) = 34370805760 (0x800a8e000)
29794: mmap(0x800a8e000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370805760 (0x800a8e000)
29794: mmap(0x800a94000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34370830336 (0x800a94000)
29794: mmap(0x800aa0000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34370879488 (0x800aa0000)
29794: mmap(0x800aa1000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34370883584 (0x800aa1000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/lib/compat/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=229151,size=62792,blksize=62976 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,73728,PROT_NONE,MAP_GUARD,-1,0x0) = 34370891776 (0x800aa3000)
29794: mmap(0x800aa3000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370891776 (0x800aa3000)
29794: mmap(0x800aa7000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34370908160 (0x800aa7000)
29794: mmap(0x800ab3000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34370957312 (0x800ab3000)
29794: mmap(0x800ab4000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34370961408 (0x800ab4000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=225523,size=664168,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,675840,PROT_NONE,MAP_GUARD,-1,0x0) = 34370965504 (0x800ab5000)
29794: mmap(0x800ab5000,557056,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370965504 (0x800ab5000)
29794: mmap(0x800b3d000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x87000) = 34371522560 (0x800b3d000)
29794: mmap(0x800b42000,94208,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34371543040 (0x800b42000)
29794: mmap(0x800b59000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xa1000) = 34371637248 (0x800b59000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=521459,size=266760,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,278528,PROT_NONE,MAP_GUARD,-1,0x0) = 34371641344 (0x800b5a000)
29794: mmap(0x800b5a000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371641344 (0x800b5a000)
29794: mmap(0x800b6c000,192512,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34371715072 (0x800b6c000)
29794: mmap(0x800b9b000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x3f000) = 34371907584 (0x800b9b000)
29794: mmap(0x800b9d000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x40000) = 34371915776 (0x800b9d000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=228409,size=465976,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,479232,PROT_NONE,MAP_GUARD,-1,0x0) = 34371919872 (0x800b9e000)
29794: mmap(0x800b9e000,86016,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371919872 (0x800b9e000)
29794: mmap(0x800bb3000,380928,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x14000) = 34372005888 (0x800bb3000)
29794: mmap(0x800c10000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x70000) = 34372386816 (0x800c10000)
29794: mmap(0x800c12000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x71000) = 34372395008 (0x800c12000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=206803,size=211184,blksize=131072 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,225280,PROT_NONE,MAP_GUARD,-1,0x0) = 34372399104 (0x800c13000)
29794: mmap(0x800c13000,81920,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372399104 (0x800c13000)
29794: mmap(0x800c27000,131072,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x13000) = 34372481024 (0x800c27000)
29794: mmap(0x800c47000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372612096 (0x800c47000)
29794: mmap(0x800c48000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372616192 (0x800c48000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: open("/compat/ubuntu/opt/zoom/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/compat/ubuntu/opt/zoom/cef/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29794: open("/usr/local/lib/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29794: fstat(3,{ mode=-rwxr-xr-x ,inode=225227,size=31728,blksize=31744 }) = 0 (0x0)
29794: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29794: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362122240 (0x800246000)
29794: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34372624384 (0x800c4a000)
29794: mmap(0x800c4a000,20480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372624384 (0x800c4a000)
29794: mmap(0x800c4f000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x4000) = 34372644864 (0x800c4f000)
29794: mmap(0x800c53000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372661248 (0x800c53000)
29794: mmap(0x800c54000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372665344 (0x800c54000)
29794: munmap(0x800246000,4096) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: mprotect(0x80029a000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800344000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x8003a2000,4096,PROT_READ) = 0 (0x0)
29794: munmap(0x800244000,8192) = 0 (0x0)
29794: mmap(0x0,196608,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372669440 (0x800c55000)
29794: mprotect(0x800571000,36864,PROT_READ) = 0 (0x0)
29794: mprotect(0x800801000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x80094e000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x8009a7000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x8009b0000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800a4a000,8192,PROT_READ) = 0 (0x0)
29794: mprotect(0x800a7d000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800a83000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800a8c000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800b42000,90112,PROT_READ) = 0 (0x0)
29794: mprotect(0x800b9b000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800c10000,4096,PROT_READ) = 0 (0x0)
29794: mprotect(0x800571000,36864,PROT_READ|PROT_WRITE) = 0 (0x0)
29794: mprotect(0x800571000,36864,PROT_READ) = 0 (0x0)
29794: readlink("/etc/malloc.conf",0x7fffffffcfd0,1024) ERR#2 'No such file or directory'
29794: issetugid() = 0 (0x0)
29794: __sysctl("vm.overcommit",2,0x7fffffffb55c,0x7fffffffb550,0x0,0) = 0 (0x0)
29794: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34374418432 (0x800e00000)
29794: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(12),-1,0x0) = 34376515584 (0x801000000)
29794: mmap(0x0,4194304,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34378612736 (0x801200000)
29794: __sysctl("kern.usrstack",2,0x800346c88,0x7fffffffd458,0x0,0) = 0 (0x0)
29794: getrlimit(RLIMIT_STACK,{ cur=8388608,max=536870912 }) = 0 (0x0)
29794: thr_self(0x801012000) = 0 (0x0)
29794: mmap(0x7fffff7fe000,4096,PROT_NONE,MAP_ANON,-1,0x0) = 34362114048 (0x800244000)
29794: rtprio_thread(RTP_LOOKUP,101358,0x7fffffffd418) = 0 (0x0)
29794: sigaction(SIGTHR,{ 0x80033eb50 SA_SIGINFO ss_t },0x0) = 0 (0x0)
29794: sigprocmask(SIG_UNBLOCK,{ },0x0) = 0 (0x0)
29794: _umtx_op(0x7fffffffd410,UMTX_OP_WAKE,0x1,0x0,0x0) = 0 (0x0)
29794: mprotect(0x0,0,PROT_NONE) = 0 (0x0)
29794: getpid() = 29794 (0x7462)
29794: getpid() = 29794 (0x7462)
29794: sigprocmask(SIG_BLOCK,{ SIGHUP|SIGINT|SIGQUIT|SIGILL|SIGTRAP|SIGABRT|SIGEMT|SIGFPE|SIGKILL|SIGBUS|SIGSEGV|SIGSYS|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2 },{ }) = 0 (0x0)
29794: sigfastblock(0x3,0x0) = 0 (0x0)
29794: sigprocmask(SIG_SETMASK,{ },0x0) = 0 (0x0)
29794: sigfastblock(0x1,0x801012038) = 0 (0x0)
29794: getcontext(0x7fffffffce00) = 0 (0x0)
29794: sysarch(AMD64_GET_XFPUSTATE,0x7fffffffcdc8) = 0 (0x0)
29794: open("/usr/share/locale/en_US.UTF-8/LC_COLLATE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=535218,size=79692,blksize=79872 }) = 0 (0x0)
29794: mmap(0x0,79692,PROT_READ,MAP_PRIVATE,3,0x0) = 34372866048 (0x800c85000)
29794: close(3) = 0 (0x0)
29794: open("/usr/share/locale/en_US.UTF-8/LC_CTYPE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=536347,size=51056,blksize=51200 }) = 0 (0x0)
29794: mmap(0x0,51056,PROT_READ,MAP_PRIVATE,3,0x0) = 34372947968 (0x800c99000)
29794: close(3) = 0 (0x0)
29794: munmap(0x800c99000,51056) = 0 (0x0)
29794: open("/usr/share/locale/en_US.UTF-8/LC_MONETARY",O_RDONLY|O_CLOEXEC,014335262400) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=534800,size=32,blksize=4096 }) = 0 (0x0)
29794: read(3,"USD \n$\n.\n,\n3\n\n-\n2\n2\n1\n"...,32) = 32 (0x20)
29794: close(3) = 0 (0x0)
29794: open("/usr/share/locale/en_US.UTF-8/LC_NUMERIC",O_RDONLY|O_CLOEXEC,025242400) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=535217,size=6,blksize=4096 }) = 0 (0x0)
29794: read(3,".\n,\n3\n",6) = 6 (0x6)
29794: close(3) = 0 (0x0)
29794: open("/usr/share/locale/en_US.UTF-8/LC_TIME",O_RDONLY|O_CLOEXEC,00) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=535875,size=377,blksize=4096 }) = 0 (0x0)
29794: read(3,"Jan\nFeb\nMar\nApr\nMay\nJun\nJu"...,377) = 377 (0x179)
29794: close(3) = 0 (0x0)
29794: open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES",O_RDONLY|O_CLOEXEC,011320443400) = 3 (0x3)
29794: fstat(3,{ mode=-r--r--r-- ,inode=534801,size=74,blksize=4096 }) = 0 (0x0)
29794: read(3,"^(([yY]([eE][sS])?)|([yY]))\n^(("...,74) = 74 (0x4a)
29794: close(3) = 0 (0x0)
29794: fstatat(AT_FDCWD,"/var/run/user/1002",{ mode=drwx------ ,inode=688778,size=21,blksize=131072 },0x0) = 0 (0x0)
29794: getuid() = 1002 (0x3ea)
29794: umask(0x3f) = 18 (0x12)
29794: mkdir("/var/run/user/1002/pulse",0700) ERR#17 'File exists'
29794: umask(0x12) = 63 (0x3f)
29794: openat(AT_FDCWD,"/var/run/user/1002/pulse",O_RDONLY|O_NOFOLLOW|O_NOCTTY|O_CLOEXEC,00) = 3 (0x3)
29794: fstat(3,{ mode=drwx------ ,inode=688781,size=5,blksize=131072 }) = 0 (0x0)
29794: getuid() = 1002 (0x3ea)
29794: getgid() = 1002 (0x3ea)
29794: close(3) = 0 (0x0)
29794: __realpathat(AT_FDCWD,"/var/run/user/1002/pulse","/var/run/user/1002/pulse",1024,0) = 0 (0x0)
29794: openat(AT_FDCWD,"/var/run/user/1002/pulse/pid",O_RDONLY|O_NOFOLLOW|O_NOCTTY|O_CLOEXEC,00) = 3 (0x3)
29794: fcntl(3,F_GETFD,) = 1 (0x1)
29794: fcntl(3,F_SETLKW,0x7fffffffe100) ERR#9 'Bad file descriptor'
29794: fcntl(3,F_SETLKW,0x7fffffffe100) = 0 (0x0)
29794: fstat(3,{ mode=-rw------- ,inode=688133,size=5,blksize=4096 }) = 0 (0x0)
29794: read(3,"2153\n",19) = 5 (0x5)
29794: read(3,0x7fffffffe255,14) = 0 (0x0)
29794: kill(2153,0) = 0 (0x0)
29794: fcntl(3,F_SETLKW,0x7fffffffe240) = 0 (0x0)
29794: close(3) = 0 (0x0)
29794: socket(PF_LOCAL,SOCK_STREAM|SOCK_CLOEXEC,0) = 3 (0x3)
29794: fcntl(3,F_GETFD,) = 1 (0x1)
29794: fstatat(AT_FDCWD,"/var/run/user/1002",{ mode=drwx------ ,inode=688778,size=21,blksize=131072 },0x0) = 0 (0x0)
29794: getuid() = 1002 (0x3ea)
29794: umask(0x3f) = 18 (0x12)
29794: mkdir("/var/run/user/1002/pulse",0700) ERR#17 'File exists'
29794: umask(0x12) = 63 (0x3f)
29794: openat(AT_FDCWD,"/var/run/user/1002/pulse",O_RDONLY|O_NOFOLLOW|O_NOCTTY|O_CLOEXEC,00) = 4 (0x4)
29794: fstat(4,{ mode=drwx------ ,inode=688781,size=5,blksize=131072 }) = 0 (0x0)
29794: getuid() = 1002 (0x3ea)
29794: getgid() = 1002 (0x3ea)
29794: close(4) = 0 (0x0)
29794: __realpathat(AT_FDCWD,"/var/run/user/1002/pulse","/var/run/user/1002/pulse",1024,0) = 0 (0x0)
29794: connect(3,{ AF_UNIX "/var/run/user/1002/pulse/cli" },106) = 0 (0x0)
29794: fpathconf(0x3,0x6) = 512 (0x200)
29794: fpathconf(0x0,0x6) ERR#22 'Invalid argument'
29794: fpathconf(0x1,0x6) = 512 (0x200)
29794: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29794: sendto(3,"list-sinks\n",11,MSG_NOSIGNAL,NULL,0) = 11 (0xb)
29794: shutdown(3,SHUT_WR) = 0 (0x0)
29794: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29794: read(3,"2 sink(s) available.\n * index:"...,512) = 512 (0x200)
29794: poll({ 1/POLLOUT },1,-1) = 1 (0x1)
29794: sendto(1,"2 sink(s) available.\n * index:"...,512,MSG_NOSIGNAL,NULL,0) ERR#38 'Socket operation on non-socket'
29794: write(1,"2 sink(s) available.\n * index:"...,512) = 512 (0x200)
29795: read(0,"2 sink(s) available.\n * index:"...,98304) = 512 (0x200)
29794: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29795: linux_brk(0x1097000) = 17395712 (0x1097000)
29794: read(3,"d by: 1\n\tfixed latency: 92.88 "...,512) = 512 (0x200)
29795: linux_newfstat(1,0x7fffffffde80) = 0 (0x0)
29794: poll({ 1/POLLOUT },1,-1) = 1 (0x1)
29795: read(0,"d by: 1\n\tfixed latency: 92.88 "...,98304) = 512 (0x200)
29794: write(1,"d by: 1\n\tfixed latency: 92.88 "...,512) = 512 (0x200)
29794: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29794: read(3,"ont-right: 65536 / 100%\n\t "...,512) = 512 (0x200)
29794: poll({ 1/POLLOUT },1,-1) = 1 (0x1)
29795: read(0,"ont-right: 65536 / 100%\n\t "...,98304) = 512 (0x200)
29794: write(1,"ont-right: 65536 / 100%\n\t "...,512) = 512 (0x200)
29794: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29794: read(3,"uffer_size = "16384"\n\t\tdevice"...,512) = 97 (0x61)
29794: poll({ 1/POLLOUT },1,-1) = 1 (0x1)
29795: read(0,"uffer_size = "16384"\n\t\tdevice"...,94208) = 97 (0x61)
29794: write(1,"uffer_size = "16384"\n\t\tdevice"...,97) = 97 (0x61)
29794: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29794: read(3,0x801050200,512) = 0 (0x0)
29794: close(3) = 0 (0x0)
29795: read(0,0x105c661,94208) = 0 (0x0)
29795: write(1,"\tname: <oss_output.dsp0>\n\tmod"...,72) = 72 (0x48)
29790: read(3,"\tname: <oss_output.dsp0>\n\tmod"...,4096) = 72 (0x48)
29794: exit(0x0)
29794: process exit, rval = 0
29795: close(1) = 0 (0x0)
29793: linux_wait4(0xffffffff,0x7fffffffe0fc,0x0,0x0) ERR#-4 'Interrupted system call'
29793: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29794 uid=1002 status=0
29795: close(2) = 0 (0x0)
29793: linux_rt_sigreturn(0x11) EJUSTRETURN
29793: linux_wait4(0xffffffff,0x7fffffffe0fc,0x0,0x0) = 29794 (0x7462)
29795: linux_exit_group(0x0)
29795: process exit, rval = 0
29793: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29795 uid=1002 status=0
29793: linux_rt_sigreturn(0x11) EJUSTRETURN
29793: linux_wait4(0xffffffff,0x7fffffffe0fc,0x0,0x0) = 29795 (0x7463)
29790: read(3,0x6c679d0,4096) = 0 (0x0)
29793: linux_exit_group(0x0)
29793: process exit, rval = 0
29790: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29793 uid=1002 status=0
29790: close(3) = 0 (0x0)
29790: linux_wait4(0x7461,0x7fffffffd25c,0x0,0x0) = 29793 (0x7461)
29790: linux_brk(0x6c90000) = 113836032 (0x6c90000)
29790: linux_brk(0x6cb1000) = 113971200 (0x6cb1000)
29790: linux_brk(0x6cd2000) = 114106368 (0x6cd2000)
29790: linux_brk(0x6cf3000) = 114241536 (0x6cf3000)
29790: linux_brk(0x6d14000) = 114376704 (0x6d14000)
29790: linux_brk(0x6d35000) = 114511872 (0x6d35000)
29790: linux_brk(0x6d56000) = 114647040 (0x6d56000)
29790: linux_brk(0x6d77000) = 114782208 (0x6d77000)
29790: linux_brk(0x6d98000) = 114917376 (0x6d98000)
29790: linux_brk(0x6db9000) = 115052544 (0x6db9000)
29790: linux_brk(0x6dda000) = 115187712 (0x6dda000)
29790: linux_brk(0x6dfb000) = 115322880 (0x6dfb000)
29790: linux_brk(0x6e27000) = 115503104 (0x6e27000)
29790: linux_pipe2(0x7fffffffe298,0x80000) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffe170) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffe170) = 0 (0x0)
29790: linux_mmap2(0x0,0x9000,0x3,0x20022,0xffffffff,0x0) = 34469179392 (0x80685f000)
29790: linux_rt_sigprocmask(0x0,0x808dba3e0,0x7fffffffdfa0,0x8) = 0 (0x0)
29796: <new process>
29790: linux_clone(0x4111,0x806867ff0,0x8073ee380,0x808dbc5aa,0x0) = 29796 (0x7464)
29796: linux_rt_sigprocmask(0x0,0x0,0x806867ea0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x4,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x4,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x5,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x5,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x6,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x6,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x7,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x7,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x8,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x8,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xa,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xa,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xb,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xb,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xc,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xc,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xd,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xd,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xe,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xe,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xf,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xf,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x11,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x11,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x12,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x12,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x14,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x14,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x15,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x15,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x16,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x16,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x17,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x17,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x18,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x18,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x19,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x19,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1a,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1a,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1b,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1b,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1c,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1c,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1d,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1d,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1e,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1e,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1f,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x1f,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x20,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x21,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x22,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x22,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x23,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x23,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x24,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x24,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x25,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x25,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x26,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x26,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x27,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x27,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x28,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x28,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x29,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x29,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2a,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2a,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2b,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2b,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2c,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2c,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2d,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2d,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2e,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2e,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2f,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2f,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x30,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x30,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x31,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x31,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x32,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x32,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x33,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x33,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x34,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x34,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x35,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x35,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x36,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x36,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x37,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x37,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x38,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x38,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x39,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x39,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3a,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3a,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3b,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3b,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3c,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3c,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3d,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3d,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3e,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3e,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3f,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3f,0x806867d30,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x40,0x0,0x806867dd0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x40,0x806867d30,0x0,0x8) = 0 (0x0)
29796: dup2(4,1) = 1 (0x1)
29796: linux_rt_sigprocmask(0x2,0x7fffffffdfa0,0x0,0x8) = 0 (0x0)
29796: linux_execve("/bin/sh",0x7fffffffe2a0,0x7fffffffe5d0) EJUSTRETURN
29790: munmap(0x80685f000,36864) = 0 (0x0)
29796: linux_brk(0x0) = 17055744 (0x1044000)
29790: linux_rt_sigprocmask(0x2,0x7fffffffdfa0,0x0,0x8) = 0 (0x0)
29796: linux_arch_prctl(0x3001,0x7fffffffe4d0) = 0 (0x0)
29790: close(4) = 0 (0x0)
29796: linux_newuname(0x7fffffffe0d0) = 0 (0x0)
29790: linux_fcntl(0x3,0x2,0x0) = 0 (0x0)
29796: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29790: linux_newfstat(3,0x7fffffffe1a0) = 0 (0x0)
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd720) = 0 (0x0)
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x7fffffffd660,0x80000,0x0) ERR#-2 'No such file or directory'
29796: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd720) ERR#-2 'No such file or directory'
29796: linux_openat(0xffffff9c,0x801064b80,0x80000,0x0) = 3 (0x3)
29796: linux_newfstat(3,0x7fffffffd6d0) = 0 (0x0)
29796: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376970240 (0x80106f000)
29796: close(3) = 0 (0x0)
29796: linux_openat(0xffffff9c,0x80106ef50,0x80000,0x0) = 3 (0x3)
29796: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29796: linux_pread(0x3,0x7fffffffd490,0x310,0x40) = 784 (0x310)
29796: linux_pread(0x3,0x7fffffffd460,0x20,0x350) = 32 (0x20)
29796: linux_pread(0x3,0x7fffffffd410,0x44,0x370) = 68 (0x44)
29796: linux_newfstat(3,0x7fffffffd720) = 0 (0x0)
29796: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34377007104 (0x801078000)
29796: linux_pread(0x3,0x7fffffffd370,0x310,0x40) = 784 (0x310)
29796: linux_pread(0x3,0x7fffffffd050,0x20,0x350) = 32 (0x20)
29796: linux_pread(0x3,0x7fffffffd030,0x44,0x370) = 68 (0x44)
29796: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377015296 (0x80107a000)
29796: linux_mprotect(0x80109f000,0x1c3000,0x0) = 0 (0x0)
29796: linux_mmap2(0x80109f000,0x178000,0x5,0x812,0x3,0x25000) = 34377166848 (0x80109f000)
29796: linux_mmap2(0x801217000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378706944 (0x801217000)
29796: linux_mmap2(0x801262000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379014144 (0x801262000)
29796: linux_mmap2(0x801268000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379038720 (0x801268000)
29796: close(3) = 0 (0x0)
29796: linux_arch_prctl(0x1002,0x801079580) = 0 (0x0)
29796: linux_mprotect(0x801262000,0x3000,0x1) = 0 (0x0)
29796: linux_mprotect(0x103f000,0x2000,0x1) = 0 (0x0)
29796: linux_mprotect(0x80106c000,0x1000,0x1) = 0 (0x0)
29796: munmap(0x80106f000,34098) = 0 (0x0)
29796: linux_getuid() = 1002 (0x3ea)
29796: linux_getgid() = 1002 (0x3ea)
29796: linux_getpid() = 29796 (0x7464)
29796: linux_rt_sigaction(0x11,0x7fffffffe030,0x0,0x8) = 0 (0x0)
29796: geteuid() = 1002 (0x3ea)
29796: linux_brk(0x0) = 17055744 (0x1044000)
29796: linux_brk(0x1065000) = 17190912 (0x1065000)
29796: linux_getppid() = 29790 (0x745e)
29796: linux_newstat("/home/csgordon",0x7fffffffe250) = 0 (0x0)
29796: linux_newstat(".",0x7fffffffe2e0) = 0 (0x0)
29796: linux_getcwd(0x1044c00,0x1000) = 24 (0x18)
29796: geteuid() = 1002 (0x3ea)
29796: getegid() = 1002 (0x3ea)
29796: linux_rt_sigaction(0x2,0x0,0x7fffffffe1d0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x2,0x7fffffffe130,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3,0x0,0x7fffffffe1d0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0x3,0x7fffffffe130,0x0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xf,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29796: linux_rt_sigaction(0xf,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29796: linux_newstat("/home/csgordon/.local/bin/cat",0x7fffffffe160) ERR#-2 'No such file or directory'
29796: linux_newstat("/usr/home/csgordon/.opam/default/bin/cat",0x7fffffffe160) ERR#-2 'No such file or directory'
29796: linux_newstat("/home/csgordon/.cargo/bin/cat",0x7fffffffe160) ERR#-2 'No such file or directory'
29796: linux_newstat("/sbin/cat",0x7fffffffe160) ERR#-2 'No such file or directory'
29796: linux_newstat("/bin/cat",0x7fffffffe160) = 0 (0x0)
29797: <new process>
29796: linux_clone(0x1200011,0x0,0x0,0x801079850,0x0) = 29797 (0x7465)
29797: linux_execve("/bin/cat",0x1043bc0,0x1044dd8) EJUSTRETURN
29797: linux_brk(0x0) = 16961536 (0x102d000)
29797: linux_arch_prctl(0x3001,0x7fffffffe4e0) = 0 (0x0)
29797: linux_newuname(0x7fffffffe0e0) = 0 (0x0)
29797: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd730) = 0 (0x0)
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd730) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x801050b80,0x80000,0x0) = 3 (0x3)
29797: linux_newfstat(3,0x7fffffffd6e0) = 0 (0x0)
29797: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376888320 (0x80105b000)
29797: close(3) = 0 (0x0)
29797: linux_openat(0xffffff9c,0x80105af50,0x80000,0x0) = 3 (0x3)
29797: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29797: linux_pread(0x3,0x7fffffffd4a0,0x310,0x40) = 784 (0x310)
29797: linux_pread(0x3,0x7fffffffd470,0x20,0x350) = 32 (0x20)
29797: linux_pread(0x3,0x7fffffffd420,0x44,0x370) = 68 (0x44)
29797: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29797: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34376925184 (0x801064000)
29797: linux_pread(0x3,0x7fffffffd380,0x310,0x40) = 784 (0x310)
29797: linux_pread(0x3,0x7fffffffd060,0x20,0x350) = 32 (0x20)
29797: linux_pread(0x3,0x7fffffffd040,0x44,0x370) = 68 (0x44)
29797: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34376933376 (0x801066000)
29797: linux_mprotect(0x80108b000,0x1c3000,0x0) = 0 (0x0)
29797: linux_mmap2(0x80108b000,0x178000,0x5,0x812,0x3,0x25000) = 34377084928 (0x80108b000)
29797: linux_mmap2(0x801203000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378625024 (0x801203000)
29797: linux_mmap2(0x80124e000,0x6000,0x3,0x812,0x3,0x1e7000) = 34378932224 (0x80124e000)
29797: linux_mmap2(0x801254000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34378956800 (0x801254000)
29797: close(3) = 0 (0x0)
29797: linux_arch_prctl(0x1002,0x801065580) = 0 (0x0)
29797: linux_mprotect(0x80124e000,0x3000,0x1) = 0 (0x0)
29797: linux_mprotect(0x102b000,0x1000,0x1) = 0 (0x0)
29797: linux_mprotect(0x801058000,0x1000,0x1) = 0 (0x0)
29797: munmap(0x80105b000,34098) = 0 (0x0)
29797: linux_brk(0x0) = 16961536 (0x102d000)
29797: linux_brk(0x104e000) = 17096704 (0x104e000)
29797: linux_openat(0xffffff9c,0x801224fd0,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x7fffffffdeb0,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x102d590,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x102d7f0,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x102d640,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x102d730,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x102d8a0,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_openat(0xffffff9c,0x102d6c0,0x80000,0x0) ERR#-2 'No such file or directory'
29797: linux_newfstat(1,0x7fffffffe3f0) = 0 (0x0)
29797: linux_openat(0xffffff9c,0x7fffffffe8ac,0x0,0x0) = 3 (0x3)
29797: linux_newfstat(3,0x7fffffffe3f0) = 0 (0x0)
29797: linux_fadvise64(0x3,0x0,0x0,0x2) = 0 (0x0)
29797: linux_mmap2(0x0,0x22000,0x3,0x22,0xffffffff,0x0) = 34378973184 (0x801258000)
29797: read(3,"99999\n",131072) = 6 (0x6)
29797: write(1,"99999\n",6) = 6 (0x6)
29790: read(3,"99999\n",4096) = 6 (0x6)
29790: close(3) = 0 (0x0)
29797: read(3,0x801259000,131072) = 0 (0x0)
29797: munmap(0x801258000,139264) = 0 (0x0)
29797: close(3) = 0 (0x0)
29797: close(1) = 0 (0x0)
29797: close(2) = 0 (0x0)
29797: linux_exit_group(0x0)
29797: process exit, rval = 0
29796: linux_wait4(0xffffffff,0x7fffffffe09c,0x0,0x0) ERR#-4 'Interrupted system call'
29796: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29797 uid=1002 status=0
29796: linux_rt_sigreturn(0x11) EJUSTRETURN
29796: linux_wait4(0xffffffff,0x7fffffffe09c,0x0,0x0) = 29797 (0x7465)
29796: linux_exit_group(0x0)
29796: process exit, rval = 0
29790: linux_wait4(0x7464,0x7fffffffe2dc,0x0,0x0) = 29796 (0x7464)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"Class",5) = 5 (0x5)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"App",3) = 3 (0x3)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"Lib",3) = 3 (0x3)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"Possible Culprit Flags",22) = 22 (0x16)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"Connection",10) = 10 (0xa)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 648",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 648",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"Data",4) = 4 (0x4)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 36",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 36",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"DnsResult",9) = 9 (0x9)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 1080",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 1080",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"Headers",7) = 7 (0x7)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 1",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 1",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"MsgHeaderScanner",16) = 16 (0x10)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 40",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 40",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"SipMessage",10) = 10 (0xa)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 5208",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 5208",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"TransportSelector",17) = 17 (0x11)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 864",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 864",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"Tuple",5) = 5 (0x5)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 128",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 128",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"UdpTransport",12) = 12 (0xc)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 1112",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 1112",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"resip::",7) = 7 (0x7)
29790: write(2,"GenericIPAddress",16) = 16 (0x10)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 28",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2," 28",8) = 8 (0x8)
29790: write(2," ",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: write(2,"\n",1) = 1 (0x1)
29790: linux_brk(0x6e48000) = 115638272 (0x6e48000)
29790: linux_sys_futex(0x6c36544,0x81,0x7fffffff,0x0,0x6e2bf70,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6c36524,0x81,0x7fffffff,0x0,0x0,0xca) = 0 (0x0)
29790: linux_sys_futex(0x6c36514,0x81,0x7fffffff,0x0,0x1,0xca) = 0 (0x0)
29790: linux_sys_futex(0x6c36634,0x81,0x7fffffff,0x0,0x6e2c070,0xca) = 0 (0x0)
29790: linux_sys_futex(0x6c364e4,0x81,0x7fffffff,0x0,0x6e2c070,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c364d4,0x81,0x7fffffff,0x0,0x6e2c070,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c33984,0x81,0x7fffffff,0x0,0x6e304c0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c36364,0x81,0x7fffffff,0x0,0x6e305d0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c36344,0x81,0x7fffffff,0x0,0x806bea340,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6c36338,0x81,0x7fffffff,0x0,0x6d4d8d0,0x0) = 0 (0x0)
29790: linux_brk(0x6e69000) = 115773440 (0x6e69000)
29790: linux_sys_futex(0x6c36504,0x81,0x7fffffff,0x0,0x6e308d0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c36474,0x81,0x7fffffff,0x0,0x6e308d0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c36464,0x81,0x7fffffff,0x0,0x6e30660,0x0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6e48210,0x0,0x0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x6c364cc,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c336e0,0x81,0x7fffffff,0x0,0x6e48210,0xca) = 0 (0x0)
29790: linux_sysinfo(0x7fffffffe130) = 0 (0x0)
29790: linux_sys_futex(0x6c337f4,0x81,0x7fffffff,0x0,0x6e2fb80,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c337d4,0x81,0x7fffffff,0x0,0x6e308d0,0x0) = 0 (0x0)
29790: linux_brk(0x6e8a000) = 115908608 (0x6e8a000)
29790: linux_brk(0x6eab000) = 116043776 (0x6eab000)
29790: linux_brk(0x6ecc000) = 116178944 (0x6ecc000)
29790: linux_brk(0x6eed000) = 116314112 (0x6eed000)
29790: linux_brk(0x6f0e000) = 116449280 (0x6f0e000)
29790: write(2,"zoom started.\n",14) = 14 (0xe)
29790: linux_sys_futex(0x80af96cc8,0x81,0x7fffffff,0x0,0x806bea340,0x1) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6efc3b8,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.config/QtProject/qtlogging.ini",0x7fffffffdbb0) ERR#-2 'No such file or directory'
29790: linux_newstat("/etc/xdg/QtProject/qtlogging.ini",0x7fffffffdbb0) ERR#-2 'No such file or directory'
29790: write(2,"Client: Breakpad is using Single"...,61) = 61 (0x3d)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffcd70) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57a0652,0x80000,0x0) = 3 (0x3)
29790: read(3,"V\M-x3\^OQ\^A\M^N\M-IW\M-&\M-6"...,16) = 16 (0x10)
29790: close(3) = 0 (0x0)
29790: linux_sigaltstack(0x0,0x6c385a0) = 0 (0x0)
29790: linux_sigaltstack(0x6c38580,0x0) = 0 (0x0)
29790: linux_rt_sigaction(0xb,0x0,0x7fffffffdc90,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x6,0x0,0x7fffffffdc90,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x8,0x0,0x7fffffffdc90,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x4,0x0,0x7fffffffdc90,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x7,0x0,0x7fffffffdc90,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x5,0x0,0x7fffffffdc90,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0xb,0x7fffffffdbf0,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x6,0x7fffffffdbf0,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x8,0x7fffffffdbf0,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x4,0x7fffffffdbf0,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x7,0x7fffffffdbf0,0x0,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0x5,0x7fffffffdbf0,0x0,0x8) = 0 (0x0)
29790: linux_access("/home/csgordon/.config/zoomus.conf",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f00c98,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd900) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd9f0) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd9a0) = 0 (0x0)
29790: read(3,"[General]\nGeoLocale=system\nSen"...,16384) = 1238 (0x4d6)
29790: read(3,0x6f016fe,15146) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.config/zoomus.conf",0x7fffffffda00) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x808dbd916,0x80000,0x0) = 4 (0x4)
29790: linux_newfstat(4,0x7fffffffd820) = 0 (0x0)
29790: linux_newfstat(4,0x7fffffffd650) = 0 (0x0)
29790: read(4,"TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0"...,4096) = 3519 (0xdbf)
29790: linux_lseek(4,-2252,SEEK_CUR) = 1267 (0x4f3)
29790: read(4,"TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0"...,4096) = 2252 (0x8cc)
29790: close(4) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd660) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd6a0) = 0 (0x0)
29790: close(3) = 0 (0x0)
29790: linux_access("/etc/xdg/zoomus.conf",F_OK) ERR#-2 'No such file or directory'
29790: linux_newstat("/etc/xdg/zoomus.conf",0x7fffffffda00) ERR#-2 'No such file or directory'
29790: linux_newstat("/etc/xdg/zoomus.conf",0x7fffffffd9b0) ERR#-2 'No such file or directory'
29790: linux_access("/etc/xdg/zoomus.conf",F_OK) ERR#-2 'No such file or directory'
29790: linux_newstat("/etc/xdg/zoomus.conf",0x7fffffffda00) ERR#-2 'No such file or directory'
29790: linux_newstat("/etc/xdg/zoomus.conf",0x7fffffffd9b0) ERR#-2 'No such file or directory'
29790: geteuid() = 1002 (0x3ea)
29790: linux_getuid() = 1002 (0x3ea)
29790: linux_openat(0xffffff9c,0x808dc3fd0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffd830,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f02e70,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f03070,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f00fa0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f02fb0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f03120,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f05290,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_getpid() = 29790 (0x745e)
29790: linux_access("/proc/29790/exe",F_OK) = 0 (0x0)
29790: linux_newlstat(0x6f03758,0x7fffffffd1b0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_readlink("/proc/29790/exe","/compat/ubuntu/opt/zoom/zoom",4095) = 28 (0x1c)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newlstat(0x6f055c0,0x7fffffffd0d0) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/qt.conf",F_OK) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/qt.conf",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f05a98,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd0d0) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd1c0) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd170) = 0 (0x0)
29790: read(3,"[Paths]\nPrefix=/opt/zoom\n\n",16384) = 26 (0x1a)
29790: read(3,0x6f06eb2,16358) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/qt.conf",0x7fffffffd1d0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffcff0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffce30) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffce70) = 0 (0x0)
29790: close(3) = 0 (0x0)
29790: linux_access("/opt/zoom/plugins",F_OK) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x6f03790,0x7fffffffd440) = 0 (0x0)
29790: linux_newlstat(0x6f03790,0x7fffffffd440) = 0 (0x0)
29790: linux_newlstat(0x6f03790,0x7fffffffd440) = 0 (0x0)
29790: linux_newlstat(0x6f03790,0x7fffffffd440) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom",F_OK) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/platforms/.",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f04498,0x90800,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd330) = 0 (0x0)
29790: linux_brk(0x6f2f000) = 116584448 (0x6f2f000)
29790: linux_getdents64(0x3,0x6f06eb0,0x8000) = 504 (0x1f8)
29790: linux_getdents64(0x3,0x6f06eb0,0x8000) = 0 (0x0)
29790: close(3) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f04668,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x3ce0,0x1,0x1,0x3,0x0) = 34469179392 (0x80685f000)
29790: close(3) = 0 (0x0)
29790: munmap(0x80685f000,15584) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f0f608,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x8c110,0x1,0x1,0x3,0x0) = 34503839744 (0x80896d000)
29790: close(3) = 0 (0x0)
29790: munmap(0x80896d000,573712) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f0f608,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x2e4a8,0x1,0x1,0x3,0x0) = 34493411328 (0x807f7b000)
29790: close(3) = 0 (0x0)
29790: munmap(0x807f7b000,189608) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f05f28,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x39ee8,0x1,0x1,0x3,0x0) = 34493411328 (0x807f7b000)
29790: close(3) = 0 (0x0)
29790: munmap(0x807f7b000,237288) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f04528,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x366f8,0x1,0x1,0x3,0x0) = 34493411328 (0x807f7b000)
29790: close(3) = 0 (0x0)
29790: munmap(0x807f7b000,222968) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07a30,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f04ae8,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x52b38,0x1,0x1,0x3,0x0) = 34493411328 (0x807f7b000)
29790: close(3) = 0 (0x0)
29790: munmap(0x807f7b000,338744) = 0 (0x0)
29790: linux_newlstat(0x6f07cf0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07cf0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07cf0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07cf0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07cf0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f07cf0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f07d78,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x198d0,0x1,0x1,0x3,0x0) = 34485456896 (0x8077e5000)
29790: close(3) = 0 (0x0)
29790: munmap(0x8077e5000,104656) = 0 (0x0)
29790: linux_newlstat(0x6f08170,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08170,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08170,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08170,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08170,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08170,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f081f8,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x3e08,0x1,0x1,0x3,0x0) = 34469179392 (0x80685f000)
29790: close(3) = 0 (0x0)
29790: munmap(0x80685f000,15880) = 0 (0x0)
29790: linux_newlstat(0x6f084c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f084c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f084c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f084c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f084c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f084c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f06018,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x1b350,0x1,0x1,0x3,0x0) = 34493411328 (0x807f7b000)
29790: close(3) = 0 (0x0)
29790: munmap(0x807f7b000,111440) = 0 (0x0)
29790: linux_newlstat(0x6f088c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f088c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f088c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f088c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f088c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f088c0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f08948,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x14b00,0x1,0x1,0x3,0x0) = 34485456896 (0x8077e5000)
29790: close(3) = 0 (0x0)
29790: munmap(0x8077e5000,84736) = 0 (0x0)
29790: linux_newlstat(0x6f08da0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08da0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08da0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08da0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08da0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newlstat(0x6f08da0,0x7fffffffd4e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f08b98,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffd310) = 0 (0x0)
29790: linux_newfstat(3,0x7fffffffd400) = 0 (0x0)
29790: linux_mmap2(0x0,0x3d20,0x1,0x1,0x3,0x0) = 34469179392 (0x80685f000)
29790: close(3) = 0 (0x0)
29790: munmap(0x80685f000,15648) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/qt.conf",F_OK) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/qt.conf",0x7fffffffd770) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd590) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd3d0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd410) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f05200,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/platforms/libqxcb.so.avx2",F_OK) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f05200,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffce10) = 0 (0x0)
29790: linux_mmap2(0x0,0x2020d8,0x5,0x802,0x3,0x0) = 34586230784 (0x80d800000)
29790: linux_mprotect(0x80d802000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80da01000,0x2000,0x3,0x812,0x3,0x1000) = 34588332032 (0x80da01000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc6d0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc790) = 0 (0x0)
29790: linux_mmap2(0x0,0x3a1db0,0x5,0x802,0x3,0x0) = 34590425088 (0x80dc00000)
29790: linux_mprotect(0x80dd95000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80df94000,0xd000,0x3,0x812,0x3,0x194000) = 34594177024 (0x80df94000)
29790: linux_mmap2(0x80dfa1000,0xdb0,0x3,0x32,0xffffffff,0x0) = 34594230272 (0x80dfa1000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc6b0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/tls/haswell/x86_64",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/tls/haswell",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/tls/x86_64",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/tls",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/haswell/x86_64",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/haswell",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib/x86_64",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc6a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/platforms/../../lib",0x7fffffffc770) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806852b80,0x80000,0x0) = 3 (0x3)
29790: linux_newfstat(3,0x7fffffffc720) = 0 (0x0)
29790: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34469179392 (0x80685f000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f055c0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc770) = 0 (0x0)
29790: linux_mmap2(0x0,0x46688,0x1,0x802,0x3,0x0) = 34493411328 (0x807f7b000)
29790: linux_mmap2(0x807f82000,0x25000,0x5,0x812,0x3,0x7000) = 34493440000 (0x807f82000)
29790: linux_mmap2(0x807fa7000,0x18000,0x1,0x812,0x3,0x2c000) = 34493591552 (0x807fa7000)
29790: linux_mmap2(0x807fbf000,0x3000,0x3,0x812,0x3,0x43000) = 34493689856 (0x807fbf000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc680,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f05b00,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc750) = 0 (0x0)
29790: linux_mmap2(0x0,0xbe010,0x1,0x802,0x3,0x0) = 34517348352 (0x80964f000)
29790: linux_mprotect(0x80965b000,0xab000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80965b000,0x80000,0x5,0x812,0x3,0xc000) = 34517397504 (0x80965b000)
29790: linux_mmap2(0x8096db000,0x2a000,0x1,0x812,0x3,0x8c000) = 34517921792 (0x8096db000)
29790: linux_mmap2(0x809706000,0x8000,0x3,0x812,0x3,0xb6000) = 34518097920 (0x809706000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc5a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f08bc0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc670) = 0 (0x0)
29790: linux_mmap2(0x0,0x4028,0x1,0x802,0x3,0x0) = 34481324032 (0x8073f4000)
29790: linux_mmap2(0x8073f5000,0x1000,0x5,0x812,0x3,0x1000) = 34481328128 (0x8073f5000)
29790: linux_mmap2(0x8073f6000,0x1000,0x1,0x812,0x3,0x2000) = 34481332224 (0x8073f6000)
29790: linux_mmap2(0x8073f7000,0x2000,0x3,0x812,0x3,0x2000) = 34481336320 (0x8073f7000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc560,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f09140,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc630) = 0 (0x0)
29790: linux_mmap2(0x0,0x209268,0x5,0x802,0x3,0x0) = 34594619392 (0x80e000000)
29790: linux_mprotect(0x80e009000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80e208000,0x2000,0x3,0x812,0x3,0x8000) = 34596749312 (0x80e208000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc4e0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f08220,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc5b0) = 0 (0x0)
29790: linux_mmap2(0x0,0xa300,0x1,0x802,0x3,0x0) = 34485456896 (0x8077e5000)
29790: linux_mmap2(0x8077e8000,0x4000,0x5,0x812,0x3,0x3000) = 34485469184 (0x8077e8000)
29790: linux_mmap2(0x8077ec000,0x2000,0x1,0x812,0x3,0x7000) = 34485485568 (0x8077ec000)
29790: linux_mmap2(0x8077ee000,0x2000,0x3,0x812,0x3,0x8000) = 34485493760 (0x8077ee000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc4c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f0b360,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc590) = 0 (0x0)
29790: linux_mmap2(0x0,0x41170,0x1,0x802,0x3,0x0) = 34503839744 (0x80896d000)
29790: linux_mmap2(0x808971000,0x1c000,0x5,0x812,0x3,0x4000) = 34503856128 (0x808971000)
29790: linux_mmap2(0x80898d000,0x1f000,0x1,0x812,0x3,0x20000) = 34503970816 (0x80898d000)
29790: linux_mmap2(0x8089ac000,0x3000,0x3,0x812,0x3,0x3e000) = 34504097792 (0x8089ac000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc3e0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f09190,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc4b0) = 0 (0x0)
29790: linux_mmap2(0x0,0x2d0a0,0x1,0x802,0x3,0x0) = 34493702144 (0x807fc2000)
29790: linux_mprotect(0x807fc6000,0x27000,0x0) = 0 (0x0)
29790: linux_mmap2(0x807fc6000,0x1c000,0x5,0x812,0x3,0x4000) = 34493718528 (0x807fc6000)
29790: linux_mmap2(0x807fe2000,0xa000,0x1,0x812,0x3,0x20000) = 34493833216 (0x807fe2000)
29790: linux_mmap2(0x807fed000,0x3000,0x3,0x812,0x3,0x2a000) = 34493878272 (0x807fed000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f08810,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc490) = 0 (0x0)
29790: linux_mmap2(0x0,0x8018,0x1,0x802,0x3,0x0) = 34485501952 (0x8077f0000)
29790: linux_mmap2(0x8077f2000,0x4000,0x5,0x812,0x3,0x2000) = 34485510144 (0x8077f2000)
29790: linux_mmap2(0x8077f6000,0x1000,0x1,0x812,0x3,0x6000) = 34485526528 (0x8077f6000)
29790: linux_mmap2(0x8077f7000,0x2000,0x3,0x812,0x3,0x6000) = 34485530624 (0x8077f7000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc3a0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f0c3a0,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc470) = 0 (0x0)
29790: linux_mmap2(0x0,0x37010,0x1,0x802,0x3,0x0) = 34504110080 (0x8089af000)
29790: linux_mmap2(0x8089b4000,0x25000,0x5,0x812,0x3,0x5000) = 34504130560 (0x8089b4000)
29790: linux_mmap2(0x8089d9000,0xc000,0x1,0x812,0x3,0x2a000) = 34504282112 (0x8089d9000)
29790: linux_mmap2(0x8089e5000,0x2000,0x3,0x812,0x3,0x35000) = 34504331264 (0x8089e5000)
29790: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc260,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f0c920,0x80000,0x0) = 3 (0x3)
29790: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(3,0x7fffffffc330) = 0 (0x0)
29790: linux_mmap2(0x0,0x1d078,0x1,0x802,0x3,0x0) = 34518130688 (0x80970e000)
29790: linux_mmap2(0x809718000,0xd000,0x5,0x812,0x3,0xa000) = 34518171648 (0x809718000)
29790: linux_mmap2(0x809725000,0x5000,0x1,0x812,0x3,0x17000) = 34518224896 (0x809725000)
29790: linux_mmap2(0x80972a000,0x2000,0x3,0x812,0x3,0x1b000) = 34518245376 (0x80972a000)
29790: close(3) = 0 (0x0)
29790: linux_mprotect(0x80972a000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8089e5000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8077f7000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807fed000,0x2000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8089ac000,0x2000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8077ee000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80e208000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x8073f7000,0x1000,0x1) = 0 (0x0)
29790: linux_mprotect(0x809706000,0x7000,0x1) = 0 (0x0)
29790: linux_mprotect(0x807fbf000,0x2000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80df94000,0x9000,0x1) = 0 (0x0)
29790: linux_mprotect(0x80da01000,0x1000,0x1) = 0 (0x0)
29790: munmap(0x80685f000,34098) = 0 (0x0)
29790: linux_socket(0x1,0x80001,0x0) = 3 (0x3)
29790: linux_connect(0x3,0x7fffffffd6b0,0x14) ERR#-2 'No such file or directory'
29790: close(3) = 0 (0x0)
29790: linux_socket(0x1,0x80001,0x0) = 3 (0x3)
29790: linux_getsockopt(0x3,0x1,0x7,0x7fffffffd690,0x7fffffffd67c) = 0 (0x0)
29790: linux_setsockopt(0x3,0x1,0x7,0x7fffffffd690,0x4) = 0 (0x0)
29790: linux_connect(0x3,0x7fffffffd6b0,0x6e) = 0 (0x0)
29790: linux_getpeername(0x3,0x6f09040,0x7fffffffd5b4) = 0 (0x0)
29790: linux_newuname(0x7fffffffd2d0) = 0 (0x0)
29790: linux_access("/home/csgordon/.Xauthority",R_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffee9e,0x0,0x0) = 4 (0x4)
29790: linux_newfstat(4,0x7fffffffd210) = 0 (0x0)
29790: read(4,"\^A\0\0\^Bx1\0\^A0\0\^RMIT-MAGIC"...,4096) = 47 (0x2f)
29790: read(4,0x6f10a60,4096) = 0 (0x0)
29790: close(4) = 0 (0x0)
29790: linux_getsockname(0x3,0x6f09040,0x7fffffffd5b4) = 0 (0x0)
29790: linux_fcntl(0x3,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0x3,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"l\0\v\0\0\0\^R\0\^P\0\0\0",12},{0x8069f104a,0},{"MIT-MAGIC-COOKIE-1",18},{"\0\0",2},{"\M-T\M-u\M-g\M-3u\M^K4M[R\M^O"...,16},{0x8069f104a,0}],6) = 48 (0x30)
29790: linux_recvfrom(0x3,0x6f0e7c0,0x8,0x0,0x0,0x0) = 8 (0x8)
29790: linux_recvfrom(0x3,0x6f15d28,0x390c,0x0,0x0,0x0) = 14604 (0x390c)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"b\0\^E\0\f\0\0\0BIG-REQUESTS",20}],1) = 20 (0x14)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd490,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^E\0\^A\0",4}],1) = 4 (0x4)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd4e0,0x0) = 32 (0x20)
29790: linux_recvmsg(0x3,0x7fffffffd5e0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"7\0\^E\0\0\0@\^C\M-E\a\0\0\b\0\0"...,44},{0x0,0},{0x80693cb0c,0}],3) = 44 (0x2c)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd4a0,0x0) = 4096 (0x1000)
29790: linux_recvfrom(0x3,0x6f269b0,0x8f0,0x0,0x0,0x0) = 2288 (0x8f0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"b\0\^E\0\t\0@\^C",8},{"XKEYBOARD",9},{"\0\0\0",3}],3) = 20 (0x14)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd370,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\0\^B\0\^A\0\0\0",8},{0x0,0},{0x80693cb0c,0}],3) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd420,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^P\0\^E\0\f\0\0\0WM_PROTOCOLS"...,3796}],1) = 3796 (0xed4)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffced0,0x0) = 3200 (0xc80)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffced0,0x0) = 1504 (0x5e0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"b\0\^D\0\a\0\0\0MIT-SHM\0b\0\^D"...,136}],1) = 136 (0x88)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5c0,0x0) = 256 (0x100)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^B\0\^A\0",4}],1) = 4 (0x4)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd590,0x0) = 32 (0x20)
29790: linux_shmget(0x0,0x1,0x380) = 131104 (0x20020)
29790: linux_shmat(0x20020,0x0,0x0) = 34469154816 (0x806859000)
29790: linux_shmctl(0x20020,0x0,0x0) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^B\^A\^D\0\^B\0@\^C \0\^B\0\0"...,20}],1) = 20 (0x14)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd520,0x0) = 32 (0x20)
29790: linux_shmdt(0x806859000) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^B\^B\^B\0\^B\0@\^C\M^L\0\^C\0"...,20}],1) = 20 (0x14)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5c0,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^J\0\^C\0\^D\0\0\0\0\0\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5c0,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^K\0\^C\0\0\0\0\0\v\0\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5d0,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^C/\^B\0\^B\0\^B\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5b0,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^A\0\^A\0",4}],1) = 4 (0x4)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5d0,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\0\^B\0\^A\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd5c0,0x0) = 32 (0x20)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34596757504 (0x80e20a000)
29790: linux_mprotect(0x80e20b000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x80ea09ef0,0x80ea0a9d0,0x80ea0a9d0,0x80ea0a700) = 120469 (0x1d695)
29790: <new thread 120469>
29790: linux_set_robust_list(0x80ea0a9e0,0x18) = 0 (0x0)
29790: linux_mmap2(0x0,0x8000000,0x0,0x4022,0xffffffff,0x0) = 34605150208 (0x80ea0b000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: munmap(0x80ea0b000,23023616) = 0 (0x0)
29790: writev(3,[{"\M^L\^D\^C\0\M-E\a\0\0\^O\0\0\0"...,36}],1) = 36 (0x24)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: munmap(0x814000000,44085248) = 0 (0x0)
29790: linux_recvmsg(0x3,0x7fffffffd460,0x0) = 32 (0x20)
29790: linux_mprotect(0x810000000,0x21000,0x3) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^W\0\^B\0t\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd470,0x0) = 32 (0x20)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^T\0\^F\0\M-E\a\0\0\M-m\^A\0\0"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd450,0x0) = 96 (0x60)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^T\0\^F\0\M-E\a\0\0\^W\0\0\0\^_"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x7fffffffd3e0,0x0) = 4096 (0x1000)
29790: linux_sys_futex(0x806b75f38,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29790: linux_recvfrom(0x3,0x6f2bb40,0x8f0,0x0,0x0,0x0) = 2288 (0x8f0)
29790: linux_eventfd2(0x0,0x80800) = 4 (0x4)
29790: write(4,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_eventfd2(0x0,0x80800) = 5 (0x5)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_sys_futex(0x806b75f38,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29790: linux_prctl(0xf,0x80dd27e38,0x0,0x0,0x0) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^C\0\^B\0\M-E\a\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd6a8,0x81,0x1,0x0,0x7fffffffd680,0x7fffffffd6a0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6a8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6a0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^B\0\^D\0\M-E\a\0\0\0\b\0\0000"...,40}],1) = 40 (0x28)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd698,0x81,0x1,0x0,0x7fffffffd670,0x7fffffffd690) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd698,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd690) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^T\0\^F\0\^B\0@\^Ax\^A\0\0i\^A"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 48 (0x30)
29790: linux_sys_futex(0x7fffffffd668,0x81,0x1,0x0,0x7fffffffd640,0x7fffffffd660) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd668,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd660) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_brk(0x6f50000) = 116719616 (0x6f50000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^Y\^B\0\M-E\a\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 4096 (0x1000)
29790: linux_recvfrom(0x3,0x810006370,0x364,0x0,0x0,0x0) = 868 (0x364)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^_\^B\0\M-E\a\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\t\^C\0B\0\0\0@M\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 440 (0x1b8)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_access("/usr/share/hwdata/pnp.ids",F_OK) ERR#-2 'No such file or directory'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^D\^C\0\M-E\a\0\0\^A\0\0\0"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd668,0x81,0x1,0x0,0x7fffffffd640,0x7fffffffd660) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd668,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd660) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^Y\^B\0\M-E\a\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd660) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 4096 (0x1000)
29790: linux_recvfrom(0x3,0x810007900,0x364,0x0,0x0,0x0) = 868 (0x364)
29790: linux_sys_futex(0x7fffffffd618,0x81,0x1,0x0,0x7fffffffd5f0,0x7fffffffd610) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd618,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd610) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffca40,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffca40,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806852b80,0x80000,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffcac0) = 0 (0x0)
29790: linux_mmap2(0x0,0x8532,0x1,0x2,0x6,0x0) = 34469179392 (0x80685f000)
29790: close(6) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f39020,0x80000,0x0) = 6 (0x6)
29790: read(6,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(6,0x7fffffffcb10) = 0 (0x0)
29790: linux_mmap2(0x0,0xc1c8,0x1,0x802,0x6,0x0) = 34493890560 (0x807ff0000)
29790: linux_mmap2(0x807ff3000,0x6000,0x5,0x812,0x6,0x3000) = 34493902848 (0x807ff3000)
29790: linux_mmap2(0x807ff9000,0x2000,0x1,0x812,0x6,0x9000) = 34493927424 (0x807ff9000)
29790: linux_mmap2(0x807ffb000,0x2000,0x3,0x812,0x6,0xa000) = 34493935616 (0x807ffb000)
29790: close(6) = 0 (0x0)
29790: linux_mprotect(0x807ffb000,0x1000,0x1) = 0 (0x0)
29790: munmap(0x80685f000,34098) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"-\0\^E\0\^C\0@\^C\^F\0\0\0cursor"...,48}],1) = 48 (0x30)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd5e8,0x81,0x1,0x0,0x7fffffffd5c0,0x7fffffffd5e0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd5e8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd5e0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\t\^C\0C\0\0\0@M\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\t\^C\0D\0\0\0@M\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 212 (0xd4)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_access("/usr/share/hwdata/pnp.ids",F_OK) ERR#-2 'No such file or directory'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^D\^C\0\M-E\a\0\0\^A\0\0\0"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd668,0x81,0x1,0x0,0x7fffffffd640,0x7fffffffd660) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd668,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd660) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^Y\^B\0\M-E\a\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 4096 (0x1000)
29790: linux_recvfrom(0x3,0x810007a60,0x364,0x0,0x0,0x0) = 868 (0x364)
29790: linux_sys_futex(0x7fffffffd618,0x81,0x1,0x0,0x7fffffffd5f0,0x7fffffffd610) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd618,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd610) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\^O\a\0D\0\0\0E\0\0\0\0\0\0"...,28}],1) = 28 (0x1c)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 288 (0x120)
29790: linux_sys_futex(0x7fffffffd5e8,0x81,0x1,0x0,0x7fffffffd5c0,0x7fffffffd5e0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd5e8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd5e0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\t\^C\0E\0\0\0@M\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^L\t\^C\0F\0\0\0@M\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 60 (0x3c)
29790: linux_sys_futex(0x7fffffffd758,0x81,0x1,0x0,0x7fffffffd730,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd758,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd750) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc350,0x0,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffae00) = 0 (0x0)
29790: read(6,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"...,8192) = 8192 (0x2000)
29790: read(6,"\t\t\tde_DE.ISO8859-15\nde_DE.88"...,8192) = 8192 (0x2000)
29790: read(6,"ISO8859-1\net_EE.ISO-8859-1\t\t"...,8192) = 8192 (0x2000)
29790: read(6,"_KR.EUC\t\t\t\t\tko_KR.eucKR\nko"...,8192) = 8192 (0x2000)
29790: read(6,"sq_AL.ISO8859-2\nsq_AL.utf8\t\t"...,8192) = 8192 (0x2000)
29790: read(6,"8859-1\t\t\t\t\ten_US.ISO8859-1"...,8192) = 8192 (0x2000)
29790: read(6,"-15\nde_BE.UTF-8@euro:\t\t\t\tde"...,8192) = 8192 (0x2000)
29790: read(6,"\t\t\tes_US.ISO8859-1\nes_US.ISO"...,8192) = 8192 (0x2000)
29790: read(6,"ISO-2022-JP:\t\t\t\tja_JP.JIS7\n"...,8192) = 8192 (0x2000)
29790: read(6,"\tsd_IN.UTF-8\nsd@devanagari:\t"...,8192) = 8192 (0x2000)
29790: read(6,".iso88597:\t\t\t\t\tel_GR.ISO885"...,8192) = 1482 (0x5ca)
29790: read(6,0x6f3f950,8192) = 0 (0x0)
29790: close(6) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc2c0,0x0,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffbb80) = 0 (0x0)
29790: read(6,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"...,8192) = 8192 (0x2000)
29790: read(6,"LC_LOCALE\t\t\tno_NO.ISO8859-15"...,8192) = 8192 (0x2000)
29790: read(6,"N.UTF-8@devanagari\nko_KR.UTF-8/"...,8192) = 8192 (0x2000)
29790: close(6) = 0 (0x0)
29790: linux_access("/usr/share/X11/locale/C/XLC_LOCALE",R_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f39bf0,0x0,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffc8c0) = 0 (0x0)
29790: read(6,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"...,4096) = 693 (0x2b5)
29790: read(6,0x6f40180,4096) = 0 (0x0)
29790: close(6) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc350,0x0,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffae00) = 0 (0x0)
29790: read(6,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"...,8192) = 8192 (0x2000)
29790: read(6,"\t\t\tde_DE.ISO8859-15\nde_DE.88"...,8192) = 8192 (0x2000)
29790: read(6,"ISO8859-1\net_EE.ISO-8859-1\t\t"...,8192) = 8192 (0x2000)
29790: read(6,"_KR.EUC\t\t\t\t\tko_KR.eucKR\nko"...,8192) = 8192 (0x2000)
29790: read(6,"sq_AL.ISO8859-2\nsq_AL.utf8\t\t"...,8192) = 8192 (0x2000)
29790: read(6,"8859-1\t\t\t\t\ten_US.ISO8859-1"...,8192) = 8192 (0x2000)
29790: read(6,"-15\nde_BE.UTF-8@euro:\t\t\t\tde"...,8192) = 8192 (0x2000)
29790: read(6,"\t\t\tes_US.ISO8859-1\nes_US.ISO"...,8192) = 8192 (0x2000)
29790: read(6,"ISO-2022-JP:\t\t\t\tja_JP.JIS7\n"...,8192) = 8192 (0x2000)
29790: read(6,"\tsd_IN.UTF-8\nsd@devanagari:\t"...,8192) = 8192 (0x2000)
29790: read(6,".iso88597:\t\t\t\t\tel_GR.ISO885"...,8192) = 1482 (0x5ca)
29790: read(6,0x6f42640,8192) = 0 (0x0)
29790: close(6) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc2c0,0x0,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffbb80) = 0 (0x0)
29790: read(6,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"...,8192) = 8192 (0x2000)
29790: read(6,"LC_LOCALE\t\t\tno_NO.ISO8859-15"...,8192) = 8192 (0x2000)
29790: read(6,"N.UTF-8@devanagari\nko_KR.UTF-8/"...,8192) = 8192 (0x2000)
29790: close(6) = 0 (0x0)
29790: linux_access("/usr/share/X11/locale/C/XLC_LOCALE",R_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f423c0,0x0,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffc8c0) = 0 (0x0)
29790: read(6,"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"...,4096) = 693 (0x2b5)
29790: read(6,0x6f40180,4096) = 0 (0x0)
29790: close(6) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^A\0\b\0\^D\0@\^C\M-E\a\0\0\0\0"...,84}],1) = 84 (0x54)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^R\0\r\0\^D\0@\^C'\0\0\0\^_\0\0"...,52},{0x0,0},{0x80693cb0c,0}],3) = 52 (0x34)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^J\^B\^D\0\^D\0@\^Ct\^A\0\0\a"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 4096 (0x1000)
29790: linux_recvfrom(0x3,0x810007af0,0xf5c,0x0,0x0,0x0) = 3932 (0xf5c)
29790: linux_sys_futex(0x7fffffffd818,0x81,0x1,0x0,0x7fffffffd7f0,0x7fffffffd810) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd818,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd810) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^C.\^E\0\M-E\a\0\0\^A\0\0\0\0"...,44}],1) = 44 (0x2c)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 304 (0x130)
29790: linux_sys_futex(0x7fffffffd818,0x81,0x1,0x0,0x7fffffffd7f0,0x7fffffffd810) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd818,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd810) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\^A\^D\0\0\^A\a\0\0\0\a\0"...,20}],1) = 20 (0x14)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x7fffffffd818,0x81,0x1,0x0,0x7fffffffd7f0,0x7fffffffd810) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd818,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd810) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"b\0\^E\0\t\0\0\0XKEYBOARD\0\0\0",20}],1) = 20 (0x14)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x7fffffffd718,0x81,0x1,0x0,0x7fffffffd6f0,0x7fffffffd710) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd718,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd710) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\^X\^D\0\0\^A\0\0\0\0\0\0\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd838,0x81,0x1,0x0,0x7fffffffd810,0x7fffffffd830) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd838,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd830) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\^Q\^C\0\0\^A\0\0\0\b\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 84 (0x54)
29790: linux_sys_futex(0x7fffffffd738,0x81,0x1,0x0,0x7fffffffd710,0x7fffffffd730) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd738,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd730) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-/\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-0\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-1\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-2\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-3\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-4\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-5\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-6\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-7\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-8\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-9\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-:\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-;\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\b\a\0\0\^A@\0\0\0\0\0\0\0\0"...,28}],1) = 28 (0x1c)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd6c0) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd778,0x81,0x1,0x0,0x7fffffffd750,0x7fffffffd770) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd778,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd770) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\b\a\0\^C\0\M-_\0\0\0\0\0\0"...,28}],1) = 28 (0x1c)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 4096 (0x1000)
29790: linux_recvfrom(0x3,0x810007af0,0xac8,0x0,0x0,0x0) = 2760 (0xac8)
29790: linux_sys_futex(0x7fffffffd6f8,0x81,0x1,0x0,0x7fffffffd6d0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\r\^C\0\^C\0\0\0\M^?\M^?\M^?"...,12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 416 (0x1a0)
29790: linux_sys_futex(0x7fffffffd6f8,0x81,0x1,0x0,0x7fffffffd6d0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\n\^C\0\^C\0\0\^A\0\0\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 2000 (0x7d0)
29790: linux_sys_futex(0x7fffffffd6f8,0x81,0x1,0x0,0x7fffffffd6d0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6f0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\^Q\^C\0\^C\0\0\0\M-u\^_\0\0",12}],1) = 12 (0xc)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 2316 (0x90c)
29790: linux_sys_futex(0x7fffffffd6f8,0x81,0x1,0x0,0x7fffffffd6d0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\09\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0:\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-=\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd6c0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-=\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd6c8,0x81,0x1,0x0,0x7fffffffd6a0,0x7fffffffd6c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M->\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-?\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-@\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 76 (0x4c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-C\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 72 (0x48)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-E\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 76 (0x4c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-G\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 80 (0x50)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-I\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 48 (0x30)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 76 (0x4c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-J\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 76 (0x4c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-L\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 76 (0x4c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-M\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 76 (0x4c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-N\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 48 (0x30)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 72 (0x48)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-O\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 48 (0x30)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd450) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 72 (0x48)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-P\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 48 (0x30)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,16}],1) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 72 (0x48)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-Q\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,40}],1) = 40 (0x28)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 200 (0xc8)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-U\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,64}],1) = 64 (0x40)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 336 (0x150)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x810005da0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-\\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,24}],1) = 24 (0x18)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 116 (0x74)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-]\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,64}],1) = 64 (0x40)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 324 (0x144)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x10) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-b\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,64}],1) = 64 (0x40)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 324 (0x144)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-c\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 60 (0x3c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,64}],1) = 64 (0x40)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 324 (0x144)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x10) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-d\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 72 (0x48)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,64}],1) = 64 (0x40)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 324 (0x144)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x10) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-e\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 60 (0x3c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,64}],1) = 64 (0x40)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd450) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 324 (0x144)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x10) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-f\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x10) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x10) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-g\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x10) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd450) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-h\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 60 (0x3c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-i\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 56 (0x38)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-j\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-k\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 68 (0x44)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 164 (0xa4)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x10) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-n\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x10) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,40}],1) = 40 (0x28)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 196 (0xc4)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-p\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 52 (0x34)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-A\0\0\0\^Q\0\^B\0"...,32}],1) = 32 (0x20)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 160 (0xa0)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-t\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-u\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-v\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffd450) ERR#-11 'Resource temporarily unavailable'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0;\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0<\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0=\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0>\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0?\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M^L\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0@\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0A\^A\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-w\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-x\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-y\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-/\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-0\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-1\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-2\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-3\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-4\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-5\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-6\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-7\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-8\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-9\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-:\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-;\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 40 (0x28)
29790: linux_sys_futex(0x7fffffffd458,0x81,0x1,0x0,0x7fffffffd430,0x7fffffffd450) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd458,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd450) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^Q\0\^B\0\M-s\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 44 (0x2c)
29790: linux_sys_futex(0x7fffffffd478,0x81,0x1,0x0,0x7fffffffd450,0x7fffffffd470) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd478,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd470) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_brk(0x6f72000) = 116858880 (0x6f72000)
29790: linux_brk(0x6f71000) = 116854784 (0x6f71000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\^F\^B\0\^C\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 92 (0x5c)
29790: linux_sys_futex(0x7fffffffd6f8,0x81,0x1,0x0,0x7fffffffd6d0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd6f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd6f0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^G\^D\^B\0\^C\0\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x7fffffffd7f8,0x81,0x1,0x0,0x7fffffffd7d0,0x7fffffffd7f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd7f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd7f0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\M^J\^B\^D\0\^D\0@\^C\^A\0\0\0\a"...,40}],1) = 40 (0x28)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x7fffffffd828,0x81,0x1,0x0,0x7fffffffd800,0x7fffffffd820) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd828,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd820) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"+\0\^A\0",4}],1) = 4 (0x4)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x7fffffffd888,0x81,0x1,0x0,0x7fffffffd860,0x7fffffffd880) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd888,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd880) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: geteuid() = 1002 (0x3ea)
29790: linux_access("/var/run/user/1002",F_OK) = 0 (0x0)
29790: linux_newstat("/var/run/user/1002",0x7fffffffd600) = 0 (0x0)
29790: linux_newstat("/var/run/user/1002",0x7fffffffd600) = 0 (0x0)
29790: linux_access("/var/run/user/1002",R_OK) = 0 (0x0)
29790: linux_access("/var/run/user/1002",W_OK) = 0 (0x0)
29790: linux_access("/var/run/user/1002",X_OK) = 0 (0x0)
29790: linux_newstat("/var/run/user/1002/flatpak-info",0x7fffffffd930) ERR#-2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/platformthemes/.",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f04868,0x90800,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd340) = 0 (0x0)
29790: linux_getdents64(0x6,0x6f54a50,0x8000) = 128 (0x80)
29790: linux_getdents64(0x6,0x6f54a50,0x8000) = 0 (0x0)
29790: close(6) = 0 (0x0)
29790: linux_newlstat(0x6f54a20,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54a20,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54a20,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54a20,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54a20,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54a20,0x7fffffffd4f0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f54aa8,0x80000,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd320) = 0 (0x0)
29790: linux_newfstat(6,0x7fffffffd410) = 0 (0x0)
29790: linux_mmap2(0x0,0x72598,0x1,0x1,0x6,0x0) = 34518253568 (0x80972c000)
29790: close(6) = 0 (0x0)
29790: munmap(0x80972c000,468376) = 0 (0x0)
29790: linux_newlstat(0x6f54ef0,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54ef0,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54ef0,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54ef0,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54ef0,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newlstat(0x6f54ef0,0x7fffffffd4f0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x810006958,0x80000,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd320) = 0 (0x0)
29790: linux_newfstat(6,0x7fffffffd410) = 0 (0x0)
29790: linux_mmap2(0x0,0x18130,0x1,0x1,0x6,0x0) = 34504339456 (0x8089e7000)
29790: close(6) = 0 (0x0)
29790: munmap(0x8089e7000,98608) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/platforminputcontexts/.",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f57898,0x90800,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd510) = 0 (0x0)
29790: linux_getdents64(0x6,0x6f5cc40,0x8000) = 232 (0xe8)
29790: linux_getdents64(0x6,0x6f5cc40,0x8000) = 0 (0x0)
29790: close(6) = 0 (0x0)
29790: linux_newlstat(0x6f57e20,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57e20,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57e20,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57e20,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57e20,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57e20,0x7fffffffd6c0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f06f88,0x80000,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newfstat(6,0x7fffffffd5e0) = 0 (0x0)
29790: linux_mmap2(0x0,0xfdc8,0x1,0x1,0x6,0x0) = 34504339456 (0x8089e7000)
29790: close(6) = 0 (0x0)
29790: munmap(0x8089e7000,64968) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f06f88,0x80000,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newfstat(6,0x7fffffffd5e0) = 0 (0x0)
29790: linux_mmap2(0x0,0x7bb50,0x1,0x1,0x6,0x0) = 34518253568 (0x80972c000)
29790: close(6) = 0 (0x0)
29790: munmap(0x80972c000,506704) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_newlstat(0x6f57ed0,0x7fffffffd6c0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f06f88,0x80000,0x0) = 6 (0x6)
29790: linux_newfstat(6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newfstat(6,0x7fffffffd5e0) = 0 (0x0)
29790: linux_mmap2(0x0,0x26280,0x1,0x1,0x6,0x0) = 34518253568 (0x80972c000)
29790: close(6) = 0 (0x0)
29790: munmap(0x80972c000,156288) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f57d40,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/platforminputcontexts/libcomposeplatforminputcontextplugin.so.avx2",F_OK) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x6f033a0,0x80000,0x0) = 6 (0x6)
29790: read(6,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(6,0x7fffffffcfc0) = 0 (0x0)
29790: linux_mmap2(0x0,0x20b348,0x5,0x802,0x6,0x0) = 34607202304 (0x80ec00000)
29790: linux_mprotect(0x80ec0b000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x80ee0a000,0x2000,0x3,0x812,0x6,0xa000) = 34609340416 (0x80ee0a000)
29790: close(6) = 0 (0x0)
29790: linux_mprotect(0x80ee0a000,0x1000,0x1) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffdd50) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/styles/.",F_OK) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffcdd0) = 0 (0x0)
29790: linux_chmod(0x6f08288,0x1c0) = 0 (0x0)
29790: linux_getuid() = 1002 (0x3ea)
29790: linux_newlstat(0x6f5b680,0x7fffffffdb10) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f39c38,0x80042,0x1b6) = 6 (0x6)
29790: linux_fcntl(0x6,0x6,0x7fffffffdd70) = 0 (0x0)
29790: linux_newlstat(0x6f5b680,0x7fffffffda90) = 0 (0x0)
29790: linux_socket(0x1,0x80001,0x0) = 7 (0x7)
29790: linux_bind(0x7,0x7fffffffdcd0,0x6e) ERR#-98 'Address already in use'
29790: close(7) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdbf0) = 0 (0x0)
29790: linux_unlink(0x6f57dc8) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffda90) = 0 (0x0)
29790: linux_socket(0x1,0x80001,0x0) = 7 (0x7)
29790: linux_bind(0x7,0x7fffffffdcd0,0x6e) = 0 (0x0)
29790: linux_listen(0x7,0x32) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) = 0 (0x0)
29790: linux_newlstat(0x6f5cc10,0x7fffffffdc00) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34609348608 (0x80ee0c000)
29790: linux_mprotect(0x80ee0d000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x80f60bef0,0x80f60c9d0,0x80f60c9d0,0x80f60c700) = 120470 (0x1d696)
29790: <new thread 120470>
29790: linux_set_robust_list(0x80f60c9e0,0x18) = 0 (0x0)
29790: linux_mmap2(0x0,0x8000000,0x0,0x4022,0xffffffff,0x0) = 34695282688 (0x814000000)
29790: munmap(0x818000000,67108864) = 0 (0x0)
29790: linux_mprotect(0x814000000,0x21000,0x3) = 0 (0x0)
29790: linux_eventfd2(0x0,0x80800) = 8 (0x8)
29790: write(8,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_prctl(0xf,0x814004de8,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f5c610,0x81,0x1,0x0,0x6f5c5e8,0x6f5c608) = 1 (0x1)
29790: linux_sys_futex(0x6f5c610,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f5c5c0,0x81,0x1,0x0,0x0,0x6f5c608) = 1 (0x1)
29790: linux_sys_futex(0x6f5c5c0,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f5c5c0,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f5c480,0x80,0x3,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f5c480,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f5c480,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x80f60bb20) = 0 (0x0)
29790: poll({ 8/POLLIN },1,0) = 1 (0x1)
29790: read(8,"\^A\0\0\0\0\0\0\0",16) = 8 (0x8)
29790: linux_mmap2(0x0,0x1000,0x7,0x22,0xffffffff,0x0) = 34469154816 (0x806859000)
29790: munmap(0x806859000,4096) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x80f60bb20) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffcd50,0x1) = 9 (0x9)
29790: linux_ftruncate(0x9,0x440000) = 0 (0x0)
29790: linux_mmap2(0x0,0x440000,0x3,0x2,0x9,0x0) = 34619785216 (0x80f800000)
29790: linux_mmap2(0x80f800000,0x1000,0x0,0x32,0x9,0x0) = 34619785216 (0x80f800000)
29790: linux_mmap2(0x80fc3f000,0x1000,0x0,0x32,0x9,0x0) = 34624237568 (0x80fc3f000)
29790: close(9) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffcd50,0x1) = 9 (0x9)
29790: linux_ftruncate(0x9,0x200000) = 0 (0x0)
29790: linux_mmap2(0x0,0x200000,0x3,0x2,0x9,0x0) = 34626076672 (0x80fe00000)
29790: linux_mmap2(0x80fe00000,0x1000,0x0,0x32,0x9,0x0) = 34626076672 (0x80fe00000)
29790: linux_mmap2(0x80ffff000,0x1000,0x0,0x32,0x9,0x0) = 34628169728 (0x80ffff000)
29790: close(9) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffcc90,0x1) = 9 (0x9)
29790: linux_ftruncate(0x9,0x400000) = 0 (0x0)
29790: linux_mmap2(0x0,0x400000,0x0,0x4002,0x9,0x0) = 34762391552 (0x818000000)
29790: linux_madvise(0x818000000,0x400000,0x4) = 0 (0x0)
29790: close(9) = 0 (0x0)
29790: linux_mprotect(0x818000000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x818000000,0x10000,0x3) = 0 (0x0)
29790: linux_mprotect(0x818010000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x818010000,0x10000,0x3) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffdbf0) = 0 (0x0)
29790: gettimeofday({ 1657909301.773464 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffdaa0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd8e0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd920) = 0 (0x0)
29790: linux_readlink("/etc/localtime","/usr/share/zoneinfo/US/Eastern",256) = 30 (0x1e)
29790: linux_newstat("/etc/localtime",0x7fffffffd8e0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f67028,0x80000,0x0) = 9 (0x9)
29790: linux_newfstat(9,0x7fffffffd860) = 0 (0x0)
29790: linux_newfstat(9,0x7fffffffd8d0) = 0 (0x0)
29790: read(9,"TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0"...,16384) = 3536 (0xdd0)
29790: read(9,0x6f67e78,12848) = 0 (0x0)
29790: close(9) = 0 (0x0)
29790: linux_readlink("/etc/localtime","/usr/share/zoneinfo/US/Eastern",256) = 30 (0x1e)
29790: linux_newstat("/etc/localtime",0x7fffffffd910) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6f6b5d8,0x80000,0x0) = 9 (0x9)
29790: linux_newfstat(9,0x7fffffffd870) = 0 (0x0)
29790: linux_newfstat(9,0x7fffffffd8e0) = 0 (0x0)
29790: read(9,"TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0"...,16384) = 3536 (0xdd0)
29790: read(9,0x6f67e78,12848) = 0 (0x0)
29790: close(9) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffda60) = 0 (0x0)
29790: linux_brk(0x6f92000) = 116989952 (0x6f92000)
29790: linux_mprotect(0x818020000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x818020000,0x10000,0x3) = 0 (0x0)
29790: linux_mprotect(0x818030000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x818030000,0x10000,0x3) = 0 (0x0)
29790: linux_mprotect(0x818040000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x818040000,0x10000,0x3) = 0 (0x0)
29790: linux_brk(0x6fb3000) = 117125120 (0x6fb3000)
29790: linux_access("/opt/zoom/translations/qt_en_US.qm",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en_US",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en_us.qm",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en_us",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en.qm",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en.qm",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_en",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt.qm",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt_",R_OK) ERR#-2 'No such file or directory'
29790: linux_access("/opt/zoom/translations/qt",R_OK) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909301.786919 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd750) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd590) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd5d0) = 0 (0x0)
29790: gettimeofday({ 1657909301.787781 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd750) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd590) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd5d0) = 0 (0x0)
29790: linux_brk(0x6fd4000) = 117260288 (0x6fd4000)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34766585856 (0x818400000)
29790: linux_mprotect(0x818401000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x818bffef0,0x818c009d0,0x818c009d0,0x818c00700) = 120471 (0x1d697)
29790: <new thread 120471>
29790: linux_set_robust_list(0x818c009e0,0x18) = 0 (0x0)
29790: linux_mmap2(0x818000000,0x4000000,0x0,0x4022,0xffffffff,0x0) = 34774978560 (0x818c01000)
29790: munmap(0x818c01000,67108864) = 0 (0x0)
29790: linux_mmap2(0x0,0x8000000,0x0,0x4022,0xffffffff,0x0) = 34774978560 (0x818c01000)
29790: munmap(0x818c01000,54521856) = 0 (0x0)
29790: munmap(0x820000000,12587008) = 0 (0x0)
29790: linux_mprotect(0x81c000000,0x21000,0x3) = 0 (0x0)
29790: linux_eventfd2(0x0,0x80800) = 9 (0x9)
29790: write(9,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_prctl(0xf,0x80a4771a8,0x0,0x0,0x0) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x818bffb10) = 0 (0x0)
29790: poll({ 9/POLLIN },1,0) = 1 (0x1)
29790: read(9,"\^A\0\0\0\0\0\0\0",16) = 8 (0x8)
29790: linux_clock_getres(0x1,0x818bff810) = 0 (0x0)
29790: getresuid(0x818bff7e0,0x818bff7e4,0x818bff7e8) = 0 (0x0)
29790: getresgid(0x818bff7ec,0x818bff7f0,0x818bff7f4) = 0 (0x0)
29790: linux_socket(0x1,0x80001,0x0) = 10 (0xa)
29790: linux_connect(0xa,0x818bff5f0,0x16) = 0 (0x0)
29790: linux_fcntl(0xa,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0xa,0x4,0x802) = 0 (0x0)
29790: geteuid() = 1002 (0x3ea)
29790: linux_getsockname(0xa,0x818bff5c0,0x818bff5bc) = 0 (0x0)
29790: poll({ 10/POLLOUT },1,0) = 1 (0x1)
29790: linux_sendto(0xa,0x818bff687,0x1,0x4000,0x0,0x0) = 1 (0x1)
29790: linux_sendto(0xa,0x81c00f190,0x18,0x4000,0x0,0x0) = 24 (0x18)
29790: poll({ 10/POLLIN },1,-1) = 1 (0x1)
29790: read(10,"REJECTED EXTERNAL\r\n",2048) = 19 (0x13)
29790: close(10) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x818bff760) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffd360,0x85,0x1,0x7fffffff,0x7fffffffd364,0xffffffffb201f000) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd360,0x80,0x100000000,0x0,0x0,0x0) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x818bffb10) = 0 (0x0)
29790: gettimeofday({ 1657909301.799761 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd300) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd140) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd180) = 0 (0x0)
29790: gettimeofday({ 1657909301.800570 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd300) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd140) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd180) = 0 (0x0)
29790: linux_pipe2(0x7fffffffd928,0x80000) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffd800) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffd800) = 0 (0x0)
29790: linux_mmap2(0x0,0x9000,0x3,0x20022,0xffffffff,0x0) = 34469179392 (0x80685f000)
29790: linux_rt_sigprocmask(0x0,0x808dba3e0,0x7fffffffd630,0x8) = 0 (0x0)
29798: <new process>
29790: linux_clone(0x4111,0x806867ff0,0x8073ee380,0x808dbc5aa,0x0) = 29798 (0x7466)
29798: linux_rt_sigprocmask(0x0,0x0,0x806867ea0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x4,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x4,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x5,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x5,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x6,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x6,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x7,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x7,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x8,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x8,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xa,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xa,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xb,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xb,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xc,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xc,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xd,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xd,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xe,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xe,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xf,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xf,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x11,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x11,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x12,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x12,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x14,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x14,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x15,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x15,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x16,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x16,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x17,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x17,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x18,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x18,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x19,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x19,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1a,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1a,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1b,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1b,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1c,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1c,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1d,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1d,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1e,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1e,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1f,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x1f,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x20,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x21,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x22,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x22,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x23,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x23,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x24,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x24,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x25,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x25,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x26,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x26,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x27,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x27,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x28,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x28,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x29,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x29,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2a,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2a,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2b,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2b,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2c,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2c,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2d,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2d,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2e,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2e,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2f,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2f,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x30,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x30,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x31,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x31,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x32,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x32,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x33,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x33,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x34,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x34,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x35,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x35,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x36,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x36,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x37,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x37,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x38,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x38,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x39,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x39,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3a,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3a,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3b,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3b,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3c,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3c,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3d,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3d,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3e,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3e,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3f,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3f,0x806867d30,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x40,0x0,0x806867dd0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x40,0x806867d30,0x0,0x8) = 0 (0x0)
29798: dup2(11,1) = 1 (0x1)
29798: linux_rt_sigprocmask(0x2,0x7fffffffd630,0x0,0x8) = 0 (0x0)
29798: linux_execve("/bin/sh",0x7fffffffd930,0x7fffffffe5d0) EJUSTRETURN
29790: munmap(0x80685f000,36864) = 0 (0x0)
29798: linux_brk(0x0) = 17055744 (0x1044000)
29790: linux_rt_sigprocmask(0x2,0x7fffffffd630,0x0,0x8) = 0 (0x0)
29798: linux_arch_prctl(0x3001,0x7fffffffe4e0) = 0 (0x0)
29790: close(11) = 0 (0x0)
29798: linux_newuname(0x7fffffffe0e0) = 0 (0x0)
29790: linux_fcntl(0xa,0x2,0x0) = 0 (0x0)
29798: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29790: linux_newfstat(10,0x7fffffffd830) = 0 (0x0)
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd730) = 0 (0x0)
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29798: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd730) ERR#-2 'No such file or directory'
29798: linux_openat(0xffffff9c,0x801064b80,0x80000,0x0) = 3 (0x3)
29798: linux_newfstat(3,0x7fffffffd6e0) = 0 (0x0)
29798: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376970240 (0x80106f000)
29798: close(3) = 0 (0x0)
29798: linux_openat(0xffffff9c,0x80106ef50,0x80000,0x0) = 3 (0x3)
29798: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29798: linux_pread(0x3,0x7fffffffd4a0,0x310,0x40) = 784 (0x310)
29798: linux_pread(0x3,0x7fffffffd470,0x20,0x350) = 32 (0x20)
29798: linux_pread(0x3,0x7fffffffd420,0x44,0x370) = 68 (0x44)
29798: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29798: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34377007104 (0x801078000)
29798: linux_pread(0x3,0x7fffffffd380,0x310,0x40) = 784 (0x310)
29798: linux_pread(0x3,0x7fffffffd060,0x20,0x350) = 32 (0x20)
29798: linux_pread(0x3,0x7fffffffd040,0x44,0x370) = 68 (0x44)
29798: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377015296 (0x80107a000)
29798: linux_mprotect(0x80109f000,0x1c3000,0x0) = 0 (0x0)
29798: linux_mmap2(0x80109f000,0x178000,0x5,0x812,0x3,0x25000) = 34377166848 (0x80109f000)
29798: linux_mmap2(0x801217000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378706944 (0x801217000)
29798: linux_mmap2(0x801262000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379014144 (0x801262000)
29798: linux_mmap2(0x801268000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379038720 (0x801268000)
29798: close(3) = 0 (0x0)
29798: linux_arch_prctl(0x1002,0x801079580) = 0 (0x0)
29798: linux_mprotect(0x801262000,0x3000,0x1) = 0 (0x0)
29798: linux_mprotect(0x103f000,0x2000,0x1) = 0 (0x0)
29798: linux_mprotect(0x80106c000,0x1000,0x1) = 0 (0x0)
29798: munmap(0x80106f000,34098) = 0 (0x0)
29798: linux_getuid() = 1002 (0x3ea)
29798: linux_getgid() = 1002 (0x3ea)
29798: linux_getpid() = 29798 (0x7466)
29798: linux_rt_sigaction(0x11,0x7fffffffe040,0x0,0x8) = 0 (0x0)
29798: geteuid() = 1002 (0x3ea)
29798: linux_brk(0x0) = 17055744 (0x1044000)
29798: linux_brk(0x1065000) = 17190912 (0x1065000)
29798: linux_getppid() = 29790 (0x745e)
29798: linux_newstat("/home/csgordon",0x7fffffffe260) = 0 (0x0)
29798: linux_newstat(".",0x7fffffffe2f0) = 0 (0x0)
29798: linux_getcwd(0x1044c00,0x1000) = 24 (0x18)
29798: geteuid() = 1002 (0x3ea)
29798: getegid() = 1002 (0x3ea)
29798: linux_rt_sigaction(0x2,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x2,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0x3,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xf,0x0,0x7fffffffe1f0,0x8) = 0 (0x0)
29798: linux_rt_sigaction(0xf,0x7fffffffe150,0x0,0x8) = 0 (0x0)
29798: linux_newstat("/home/csgordon/.local/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/usr/home/csgordon/.opam/default/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/home/csgordon/.cargo/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/usr/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/usr/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/usr/local/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29798: linux_newstat("/usr/local/bin/pactl",0x7fffffffe170) = 0 (0x0)
29799: <new process>
29798: linux_clone(0x1200011,0x0,0x0,0x801079850,0x0) = 29799 (0x7467)
29799: linux_execve("/usr/local/bin/pactl",0x1043b90,0x1044dd8) EJUSTRETURN
29799: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34362036224 (0x800231000)
29799: mprotect(0x80022e000,4096,PROT_READ) = 0 (0x0)
29799: issetugid() = 0 (0x0)
29799: sigfastblock(0x1,0x800230930) = 0 (0x0)
29799: __sysctl("kern.ostype",2,0x80023028a,0x7fffffffd800,0x0,0) = 0 (0x0)
29799: __sysctl("kern.hostname",2,0x80023038a,0x7fffffffd800,0x0,0) = 0 (0x0)
29799: __sysctl("kern.osrelease",2,0x80023048a,0x7fffffffd800,0x0,0) = 0 (0x0)
29799: __sysctl("kern.version",2,0x80023058a,0x7fffffffd800,0x0,0) = 0 (0x0)
29799: __sysctl("hw.machine",2,0x80023068a,0x7fffffffd800,0x0,0) = 0 (0x0)
29799: open("/etc/libmap.conf",O_RDONLY|O_CLOEXEC,010640030) = 3 (0x3)
29799: fstat(3,{ mode=-rw-r--r-- ,inode=529128,size=47,blksize=4096 }) = 0 (0x0)
29799: read(3,"# $FreeBSD$\nincludedir /usr/loc"...,47) = 47 (0x2f)
29799: close(3) = 0 (0x0)
29799: open("/usr/local/etc/libmap.d",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,0165) = 3 (0x3)
29799: fcntl(3,F_ISUNIONSTACK,0x0) = 0 (0x0)
29799: getdirentries(3,"4\M^G\^C\0\0\0\0\0\^A\0\0\0\0\0"...,4096,{ 0x0 }) = 104 (0x68)
29799: open("/usr/local/etc/libmap.d/mesa.conf",O_RDONLY|O_CLOEXEC,0165) = 4 (0x4)
29799: fstat(4,{ mode=-rw-r--r-- ,inode=505824,size=38,blksize=4096 }) = 0 (0x0)
29799: read(4,"libGLX_indirect.so.0 libGLX_mesa"...,38) = 38 (0x26)
29799: close(4) = 0 (0x0)
29799: getdirentries(3,0x800236008,4096,{ 0x156b2338 }) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=531805,size=342880,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,352256,PROT_NONE,MAP_GUARD,-1,0x0) = 34362175488 (0x800253000)
29799: mmap(0x800253000,135168,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362175488 (0x800253000)
29799: mmap(0x800274000,204800,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x20000) = 34362310656 (0x800274000)
29799: mmap(0x8002a6000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x51000) = 34362515456 (0x8002a6000)
29799: mmap(0x8002a8000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x52000) = 34362523648 (0x8002a8000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=545614,size=518624,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,532480,PROT_NONE,MAP_GUARD,-1,0x0) = 34362527744 (0x8002a9000)
29799: mmap(0x8002a9000,221184,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362527744 (0x8002a9000)
29799: mmap(0x8002df000,294912,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x35000) = 34362748928 (0x8002df000)
29799: mmap(0x800327000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34363043840 (0x800327000)
29799: mmap(0x800328000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34363047936 (0x800328000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=225495,size=576232,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,598016,PROT_NONE,MAP_GUARD,-1,0x0) = 34363060224 (0x80032b000)
29799: mmap(0x80032b000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363060224 (0x80032b000)
29799: mmap(0x80034d000,430080,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34363199488 (0x80034d000)
29799: mmap(0x8003b6000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x89000) = 34363629568 (0x8003b6000)
29799: mmap(0x8003b9000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34363641856 (0x8003b9000)
29799: mmap(0x8003bb000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363650048 (0x8003bb000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/var/run/ld-elf.so.hints",O_RDONLY|O_CLOEXEC,010022121) = 3 (0x3)
29799: read(3,"Ehnt\^A\0\0\0\M^@\0\0\0_\^A\0\0"...,128) = 128 (0x80)
29799: fstat(3,{ mode=-r--r--r-- ,inode=690360,size=479,blksize=4096 }) = 0 (0x0)
29799: pread(3,"/lib:/usr/lib:/usr/lib/compat:/u"...,351,0x80) = 351 (0x15f)
29799: close(3) = 0 (0x0)
29799: open("/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=529430,size=11840,blksize=12288 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34363658240 (0x8003bd000)
29799: mmap(0x8003bd000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363658240 (0x8003bd000)
29799: mmap(0x8003bf000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34363666432 (0x8003bf000)
29799: mmap(0x8003c1000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363674624 (0x8003c1000)
29799: mmap(0x8003c2000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363678720 (0x8003c2000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=527309,size=128224,blksize=128512 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,188416,PROT_NONE,MAP_GUARD,-1,0x0) = 34363682816 (0x8003c3000)
29799: mmap(0x8003c3000,53248,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363682816 (0x8003c3000)
29799: mmap(0x8003d0000,73728,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xc000) = 34363736064 (0x8003d0000)
29799: mmap(0x8003e2000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d000) = 34363809792 (0x8003e2000)
29799: mmap(0x8003e4000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1e000) = 34363817984 (0x8003e4000)
29799: mmap(0x8003e5000,49152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363822080 (0x8003e5000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=529712,size=22936,blksize=23040 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34363871232 (0x8003f1000)
29799: mmap(0x8003f1000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363871232 (0x8003f1000)
29799: mmap(0x8003f4000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34363883520 (0x8003f4000)
29799: mmap(0x8003f7000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363895808 (0x8003f7000)
29799: mmap(0x8003f8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363899904 (0x8003f8000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=527310,size=231544,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,241664,PROT_NONE,MAP_GUARD,-1,0x0) = 34363908096 (0x8003fa000)
29799: mmap(0x8003fa000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363908096 (0x8003fa000)
29799: mmap(0x80040c000,159744,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34363981824 (0x80040c000)
29799: mmap(0x800433000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34364141568 (0x800433000)
29799: mmap(0x800434000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34364145664 (0x800434000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rw-r--r-- ,inode=207032,size=56520,blksize=56832 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,57344,PROT_NONE,MAP_GUARD,-1,0x0) = 34364149760 (0x800435000)
29799: mmap(0x800435000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364149760 (0x800435000)
29799: mmap(0x800439000,28672,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34364166144 (0x800439000)
29799: mmap(0x800440000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34364194816 (0x800440000)
29799: mmap(0x800441000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34364198912 (0x800441000)
29799: mmap(0x800442000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34364203008 (0x800442000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=527311,size=1940232,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,4218880,PROT_NONE,MAP_GUARD,-1,0x0) = 34364207104 (0x800443000)
29799: mmap(0x800443000,532480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364207104 (0x800443000)
29799: mmap(0x8004c5000,1351680,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x81000) = 34364739584 (0x8004c5000)
29799: mmap(0x80060f000,40960,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1ca000) = 34366091264 (0x80060f000)
29799: mmap(0x800619000,24576,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d3000) = 34366132224 (0x800619000)
29799: mmap(0x80061f000,2269184,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34366156800 (0x80061f000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/pulseaudio/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29799: open("/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=472579,size=355424,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,368640,PROT_NONE,MAP_GUARD,-1,0x0) = 34368425984 (0x800849000)
29799: mmap(0x800849000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368425984 (0x800849000)
29799: mmap(0x80086b000,212992,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34368565248 (0x80086b000)
29799: mmap(0x80089f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x54000) = 34368778240 (0x80089f000)
29799: mmap(0x8008a1000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x55000) = 34368786432 (0x8008a1000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=223189,size=4256,blksize=4608 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,16384,PROT_NONE,MAP_GUARD,-1,0x0) = 34368794624 (0x8008a3000)
29799: mmap(0x8008a3000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368794624 (0x8008a3000)
29799: mmap(0x8008a4000,4096,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368798720 (0x8008a4000)
29799: mmap(0x8008a5000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368802816 (0x8008a5000)
29799: mmap(0x8008a6000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368806912 (0x8008a6000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=225224,size=1346744,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,1359872,PROT_NONE,MAP_GUARD,-1,0x0) = 34368811008 (0x8008a7000)
29799: mmap(0x8008a7000,700416,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368811008 (0x8008a7000)
29799: mmap(0x800952000,630784,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xaa000) = 34369511424 (0x800952000)
29799: mmap(0x8009ec000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x143000) = 34370142208 (0x8009ec000)
29799: mmap(0x8009ee000,20480,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x144000) = 34370150400 (0x8009ee000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=460835,size=171872,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,184320,PROT_NONE,MAP_GUARD,-1,0x0) = 34370170880 (0x8009f3000)
29799: mmap(0x8009f3000,90112,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370170880 (0x8009f3000)
29799: mmap(0x800a09000,86016,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x15000) = 34370260992 (0x800a09000)
29799: mmap(0x800a1e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34370347008 (0x800a1e000)
29799: mmap(0x800a1f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34370351104 (0x800a1f000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=207789,size=92480,blksize=92672 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,118784,PROT_NONE,MAP_GUARD,-1,0x0) = 34370355200 (0x800a20000)
29799: mmap(0x800a20000,36864,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370355200 (0x800a20000)
29799: mmap(0x800a29000,57344,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x8000) = 34370392064 (0x800a29000)
29799: mmap(0x800a37000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370449408 (0x800a37000)
29799: mmap(0x800a38000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370453504 (0x800a38000)
29799: mmap(0x800a3a000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370461696 (0x800a3a000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=222711,size=39888,blksize=39936 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34370473984 (0x800a3d000)
29799: mmap(0x800a3d000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370473984 (0x800a3d000)
29799: mmap(0x800a40000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34370486272 (0x800a40000)
29799: mmap(0x800a45000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34370506752 (0x800a45000)
29799: mmap(0x800a46000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34370510848 (0x800a46000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=210930,size=30440,blksize=30720 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34370519040 (0x800a48000)
29799: mmap(0x800a48000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370519040 (0x800a48000)
29799: mmap(0x800a4a000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34370527232 (0x800a4a000)
29799: mmap(0x800a4e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370543616 (0x800a4e000)
29799: mmap(0x800a4f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370547712 (0x800a4f000)
29799: mmap(0x800a50000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370551808 (0x800a50000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=529604,size=37768,blksize=37888 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,49152,PROT_NONE,MAP_GUARD,-1,0x0) = 34370555904 (0x800a51000)
29799: mmap(0x800a51000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370555904 (0x800a51000)
29799: mmap(0x800a55000,24576,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34370572288 (0x800a55000)
29799: mmap(0x800a5b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34370596864 (0x800a5b000)
29799: mmap(0x800a5c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34370600960 (0x800a5c000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=225523,size=664168,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,675840,PROT_NONE,MAP_GUARD,-1,0x0) = 34370605056 (0x800a5d000)
29799: mmap(0x800a5d000,557056,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370605056 (0x800a5d000)
29799: mmap(0x800ae5000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x87000) = 34371162112 (0x800ae5000)
29799: mmap(0x800aea000,94208,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34371182592 (0x800aea000)
29799: mmap(0x800b01000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xa1000) = 34371276800 (0x800b01000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=521459,size=266760,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,278528,PROT_NONE,MAP_GUARD,-1,0x0) = 34371280896 (0x800b02000)
29799: mmap(0x800b02000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371280896 (0x800b02000)
29799: mmap(0x800b14000,192512,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34371354624 (0x800b14000)
29799: mmap(0x800b43000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x3f000) = 34371547136 (0x800b43000)
29799: mmap(0x800b45000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x40000) = 34371555328 (0x800b45000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=228409,size=465976,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,479232,PROT_NONE,MAP_GUARD,-1,0x0) = 34371559424 (0x800b46000)
29799: mmap(0x800b46000,86016,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371559424 (0x800b46000)
29799: mmap(0x800b5b000,380928,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x14000) = 34371645440 (0x800b5b000)
29799: mmap(0x800bb8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x70000) = 34372026368 (0x800bb8000)
29799: mmap(0x800bba000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x71000) = 34372034560 (0x800bba000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=206803,size=211184,blksize=131072 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,225280,PROT_NONE,MAP_GUARD,-1,0x0) = 34372038656 (0x800bbb000)
29799: mmap(0x800bbb000,81920,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372038656 (0x800bbb000)
29799: mmap(0x800bcf000,131072,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x13000) = 34372120576 (0x800bcf000)
29799: mmap(0x800bef000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372251648 (0x800bef000)
29799: mmap(0x800bf0000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372255744 (0x800bf0000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=225227,size=31728,blksize=31744 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34372263936 (0x800bf2000)
29799: mmap(0x800bf2000,20480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372263936 (0x800bf2000)
29799: mmap(0x800bf7000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x4000) = 34372284416 (0x800bf7000)
29799: mmap(0x800bfb000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372300800 (0x800bfb000)
29799: mmap(0x800bfc000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372304896 (0x800bfc000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29799: open("/lib/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=529809,size=93640,blksize=93696 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,102400,PROT_NONE,MAP_GUARD,-1,0x0) = 34372308992 (0x800bfd000)
29799: mmap(0x800bfd000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372308992 (0x800bfd000)
29799: mmap(0x800c03000,69632,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34372333568 (0x800c03000)
29799: mmap(0x800c14000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34372403200 (0x800c14000)
29799: mmap(0x800c15000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34372407296 (0x800c15000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29799: open("/lib/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=529773,size=76944,blksize=77312 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,90112,PROT_NONE,MAP_GUARD,-1,0x0) = 34372411392 (0x800c16000)
29799: mmap(0x800c16000,28672,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372411392 (0x800c16000)
29799: mmap(0x800c1d000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x6000) = 34372440064 (0x800c1d000)
29799: mmap(0x800c29000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x11000) = 34372489216 (0x800c29000)
29799: mmap(0x800c2b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x12000) = 34372497408 (0x800c2b000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=207619,size=10816,blksize=11264 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34372501504 (0x800c2c000)
29799: mmap(0x800c2c000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372501504 (0x800c2c000)
29799: mmap(0x800c2d000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372505600 (0x800c2d000)
29799: mmap(0x800c2f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1000) = 34372513792 (0x800c2f000)
29799: mmap(0x800c31000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34372521984 (0x800c31000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=224892,size=28824,blksize=29184 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,32768,PROT_NONE,MAP_GUARD,-1,0x0) = 34372526080 (0x800c32000)
29799: mmap(0x800c32000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372526080 (0x800c32000)
29799: mmap(0x800c35000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34372538368 (0x800c35000)
29799: mmap(0x800c38000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34372550656 (0x800c38000)
29799: mmap(0x800c39000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34372554752 (0x800c39000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=224625,size=73376,blksize=73728 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,86016,PROT_NONE,MAP_GUARD,-1,0x0) = 34372558848 (0x800c3a000)
29799: mmap(0x800c3a000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372558848 (0x800c3a000)
29799: mmap(0x800c40000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34372583424 (0x800c40000)
29799: mmap(0x800c4c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34372632576 (0x800c4c000)
29799: mmap(0x800c4d000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34372636672 (0x800c4d000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: open("/compat/ubuntu/opt/zoom/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/compat/ubuntu/opt/zoom/cef/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/lib/compat/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29799: open("/usr/local/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29799: fstat(3,{ mode=-rwxr-xr-x ,inode=229151,size=62792,blksize=62976 }) = 0 (0x0)
29799: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29799: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29799: mmap(0x0,73728,PROT_NONE,MAP_GUARD,-1,0x0) = 34372644864 (0x800c4f000)
29799: mmap(0x800c4f000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372644864 (0x800c4f000)
29799: mmap(0x800c53000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34372661248 (0x800c53000)
29799: mmap(0x800c5f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34372710400 (0x800c5f000)
29799: mmap(0x800c60000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34372714496 (0x800c60000)
29799: munmap(0x800252000,4096) = 0 (0x0)
29799: close(3) = 0 (0x0)
29799: mprotect(0x8002a6000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x8003b6000,8192,PROT_READ) = 0 (0x0)
29799: mprotect(0x8003e2000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800440000,4096,PROT_READ) = 0 (0x0)
29799: mmap(0x0,196608,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372718592 (0x800c61000)
29799: mprotect(0x80060f000,36864,PROT_READ) = 0 (0x0)
29799: mprotect(0x80089f000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x8009ec000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800a45000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800a4e000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800aea000,90112,PROT_READ) = 0 (0x0)
29799: mprotect(0x800b43000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800bb8000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800c29000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800c2f000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x800c38000,4096,PROT_READ) = 0 (0x0)
29799: mprotect(0x80060f000,36864,PROT_READ|PROT_WRITE) = 0 (0x0)
29799: mprotect(0x80060f000,36864,PROT_READ) = 0 (0x0)
29799: readlink("/etc/malloc.conf",0x7fffffffcfd0,1024) ERR#2 'No such file or directory'
29799: issetugid() = 0 (0x0)
29799: __sysctl("vm.overcommit",2,0x7fffffffb55c,0x7fffffffb550,0x0,0) = 0 (0x0)
29799: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34374418432 (0x800e00000)
29799: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(12),-1,0x0) = 34376515584 (0x801000000)
29799: mmap(0x0,4194304,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34378612736 (0x801200000)
29799: __sysctl("kern.usrstack",2,0x8003e4c88,0x7fffffffd458,0x0,0) = 0 (0x0)
29799: getrlimit(RLIMIT_STACK,{ cur=8388608,max=536870912 }) = 0 (0x0)
29799: thr_self(0x801012000) = 0 (0x0)
29799: mmap(0x7fffff7fe000,4096,PROT_NONE,MAP_ANON,-1,0x0) = 34362171392 (0x800252000)
29799: rtprio_thread(RTP_LOOKUP,103562,0x7fffffffd418) = 0 (0x0)
29799: sigaction(SIGTHR,{ 0x8003dcb50 SA_SIGINFO ss_t },0x0) = 0 (0x0)
29799: sigprocmask(SIG_UNBLOCK,{ },0x0) = 0 (0x0)
29799: _umtx_op(0x7fffffffd410,UMTX_OP_WAKE,0x1,0x0,0x0) = 0 (0x0)
29799: mprotect(0x0,0,PROT_NONE) = 0 (0x0)
29799: getpid() = 29799 (0x7467)
29799: getpid() = 29799 (0x7467)
29799: sigprocmask(SIG_BLOCK,{ SIGHUP|SIGINT|SIGQUIT|SIGILL|SIGTRAP|SIGABRT|SIGEMT|SIGFPE|SIGKILL|SIGBUS|SIGSEGV|SIGSYS|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2 },{ }) = 0 (0x0)
29799: sigfastblock(0x3,0x0) = 0 (0x0)
29799: sigprocmask(SIG_SETMASK,{ },0x0) = 0 (0x0)
29799: sigfastblock(0x1,0x801012038) = 0 (0x0)
29799: getcontext(0x7fffffffce00) = 0 (0x0)
29799: sysarch(AMD64_GET_XFPUSTATE,0x7fffffffcdc8) = 0 (0x0)
29799: open("/usr/share/locale/en_US.UTF-8/LC_COLLATE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=535218,size=79692,blksize=79872 }) = 0 (0x0)
29799: mmap(0x0,79692,PROT_READ,MAP_PRIVATE,3,0x0) = 34372915200 (0x800c91000)
29799: close(3) = 0 (0x0)
29799: open("/usr/share/locale/en_US.UTF-8/LC_CTYPE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=536347,size=51056,blksize=51200 }) = 0 (0x0)
29799: mmap(0x0,51056,PROT_READ,MAP_PRIVATE,3,0x0) = 34372997120 (0x800ca5000)
29799: close(3) = 0 (0x0)
29799: munmap(0x800ca5000,51056) = 0 (0x0)
29799: open("/usr/share/locale/en_US.UTF-8/LC_MONETARY",O_RDONLY|O_CLOEXEC,014335262400) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=534800,size=32,blksize=4096 }) = 0 (0x0)
29799: read(3,"USD \n$\n.\n,\n3\n\n-\n2\n2\n1\n"...,32) = 32 (0x20)
29799: close(3) = 0 (0x0)
29799: open("/usr/share/locale/en_US.UTF-8/LC_NUMERIC",O_RDONLY|O_CLOEXEC,025242400) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=535217,size=6,blksize=4096 }) = 0 (0x0)
29799: read(3,".\n,\n3\n",6) = 6 (0x6)
29799: close(3) = 0 (0x0)
29799: open("/usr/share/locale/en_US.UTF-8/LC_TIME",O_RDONLY|O_CLOEXEC,00) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=535875,size=377,blksize=4096 }) = 0 (0x0)
29799: read(3,"Jan\nFeb\nMar\nApr\nMay\nJun\nJu"...,377) = 377 (0x179)
29799: close(3) = 0 (0x0)
29799: open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES",O_RDONLY|O_CLOEXEC,011320443400) = 3 (0x3)
29799: fstat(3,{ mode=-r--r--r-- ,inode=534801,size=74,blksize=4096 }) = 0 (0x0)
29799: read(3,"^(([yY]([eE][sS])?)|([yY]))\n^(("...,74) = 74 (0x4a)
29799: close(3) = 0 (0x0)
29799: mmap(0x0,139264,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372997120 (0x800ca5000)
29799: getuid() = 1002 (0x3ea)
29799: geteuid() = 1002 (0x3ea)
29799: getgid() = 1002 (0x3ea)
29799: getegid() = 1002 (0x3ea)
29799: openat(AT_FDCWD,"/usr/local/share/locale/en_US.UTF-8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29799: openat(AT_FDCWD,"/usr/local/share/locale/en_US.utf8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29799: openat(AT_FDCWD,"/usr/local/share/locale/en_US/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29799: openat(AT_FDCWD,"/usr/local/share/locale/en.UTF-8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29799: openat(AT_FDCWD,"/usr/local/share/locale/en.utf8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29799: openat(AT_FDCWD,"/usr/local/share/locale/en/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29799: fstat(1,{ mode=p--------- ,inode=72394,size=0,blksize=4096 }) = 0 (0x0)
29799: write(1,"pactl 14.2\nCompiled with libpul"...,69) = 69 (0x45)
29790: read(10,"pactl 14.2\nCompiled with libpul"...,4096) = 69 (0x45)
29790: close(10) = 0 (0x0)
29799: exit(0x0)
29799: process exit, rval = 0
29798: linux_wait4(0xffffffff,0x7fffffffe0ac,0x0,0x0) ERR#-4 'Interrupted system call'
29798: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29799 uid=1002 status=0
29798: linux_rt_sigreturn(0x11) EJUSTRETURN
29798: linux_wait4(0xffffffff,0x7fffffffe0ac,0x0,0x0) = 29799 (0x7467)
29798: linux_exit_group(0x0)
29798: process exit, rval = 0
29790: linux_wait4(0x7466,0x7fffffffd96c,0x0,0x0) = 29798 (0x7466)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_brk(0x6ff5000) = 117395456 (0x6ff5000)
29790: linux_brk(0x7016000) = 117530624 (0x7016000)
29790: linux_brk(0x7037000) = 117665792 (0x7037000)
29790: linux_newlstat(0x6fef078,0x7fffffffd4d0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6fef078,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd410) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd4a0) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd490) = 0 (0x0)
29790: read(10,"{"0023":{"sn":":pound_symbol:",""...,16384) = 16384 (0x4000)
29790: read(10,"}},"1f1f3-1f1ea":{"sn":":flag_ne"...,16384) = 16384 (0x4000)
29790: linux_mmap2(0x0,0x21000,0x3,0x22,0xffffffff,0x0) = 34518253568 (0x80972c000)
29790: read(10,"bon:","cp":{"b":"1f380","o":"1f3"...,16384) = 16384 (0x4000)
29790: read(10,","o":"1f3e9"}},"1f3ea":{"sn":":c"...,16384) = 16384 (0x4000)
29790: linux_mremap(0x80972c000,0x21000,0x41000,0x1,0x0) ERR#-12 'Cannot allocate memory'
29790: linux_mmap2(0x0,0x41000,0x3,0x22,0xffffffff,0x0) = 34518388736 (0x80974d000)
29790: munmap(0x80972c000,135168) = 0 (0x0)
29790: read(10,"-1f3fb-200d-2696-fe0f"}},"1f468-"...,16384) = 16384 (0x4000)
29790: read(10,":"1f469-1f3fd-200d-2695-fe0f"}},"...,16384) = 16384 (0x4000)
29790: read(10,"":"1f477-1f3fe","o":"1f477-1f3fe"...,16384) = 16384 (0x4000)
29790: read(10,"":{"sn":":telephone_receiver:",""...,16384) = 16384 (0x4000)
29790: linux_mremap(0x80974d000,0x41000,0x81000,0x1,0x0) ERR#-12 'Cannot allocate memory'
29790: linux_mmap2(0x0,0x81000,0x3,0x22,0xffffffff,0x0) = 34526081024 (0x809ea3000)
29790: munmap(0x80974d000,266240) = 0 (0x0)
29790: read(10,"cp":{"b":"1f620","o":"1f620"}},""...,16384) = 16384 (0x4000)
29790: read(10,""}},"1f6a0":{"sn":":mountain_cab"...,16384) = 16384 (0x4000)
29790: read(10,":person_facepalming:","cp":{"b":"...,16384) = 16384 (0x4000)
29790: read(10,"a","o":"1f94a"}},"1f94b":{"sn":""...,16384) = 16384 (0x4000)
29790: read(10,"-1f3ff-2640","o":"1f9db-1f3ff-20"...,16384) = 16384 (0x4000)
29790: read(10,"ation_x:","cp":{"b":"2716","o":""...,16384) = 2181 (0x885)
29790: read(10,0x7fffffff9db5,14203) = 0 (0x0)
29790: read(10,0x7fffffff9530,16384) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd440) = 0 (0x0)
29790: linux_mmap2(0x0,0x81000,0x3,0x22,0xffffffff,0x0) = 34518253568 (0x80972c000)
29790: munmap(0x809ea3000,528384) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd490) = 0 (0x0)
29790: close(10) = 0 (0x0)
29790: linux_mmap2(0x0,0x9e000,0x3,0x22,0xffffffff,0x0) = 34526081024 (0x809ea3000)
29790: linux_mremap(0x809ea3000,0x9e000,0x41000,0x1,0x0) = 34526081024 (0x809ea3000)
29790: linux_brk(0x706c000) = 117882880 (0x706c000)
29790: munmap(0x809ea3000,266240) = 0 (0x0)
29790: linux_brk(0x70a1000) = 118099968 (0x70a1000)
29790: linux_brk(0x70d6000) = 118317056 (0x70d6000)
29790: linux_brk(0x70f7000) = 118452224 (0x70f7000)
29790: linux_brk(0x7118000) = 118587392 (0x7118000)
29790: linux_brk(0x7139000) = 118722560 (0x7139000)
29790: linux_brk(0x715a000) = 118857728 (0x715a000)
29790: linux_brk(0x717b000) = 118992896 (0x717b000)
29790: linux_brk(0x719c000) = 119128064 (0x719c000)
29790: linux_brk(0x71bd000) = 119263232 (0x71bd000)
29790: linux_brk(0x71de000) = 119398400 (0x71de000)
29790: linux_brk(0x71ff000) = 119533568 (0x71ff000)
29790: linux_brk(0x7220000) = 119668736 (0x7220000)
29790: linux_brk(0x7241000) = 119803904 (0x7241000)
29790: linux_brk(0x7262000) = 119939072 (0x7262000)
29790: linux_brk(0x7283000) = 120074240 (0x7283000)
29790: linux_brk(0x72a4000) = 120209408 (0x72a4000)
29790: linux_brk(0x72c5000) = 120344576 (0x72c5000)
29790: linux_brk(0x72e6000) = 120479744 (0x72e6000)
29790: linux_brk(0x7307000) = 120614912 (0x7307000)
29790: linux_brk(0x7328000) = 120750080 (0x7328000)
29790: linux_brk(0x7349000) = 120885248 (0x7349000)
29790: linux_brk(0x736a000) = 121020416 (0x736a000)
29790: linux_brk(0x738b000) = 121155584 (0x738b000)
29790: linux_brk(0x73ac000) = 121290752 (0x73ac000)
29790: linux_brk(0x73cd000) = 121425920 (0x73cd000)
29790: linux_brk(0x73ee000) = 121561088 (0x73ee000)
29790: munmap(0x80972c000,528384) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffc730) = 0 (0x0)
29790: linux_newlstat(0x6f6e9b8,0x7fffffffd700) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffc830) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/screenCapture",0x7fffffffd800) = 0 (0x0)
29790: linux_access("/home/csgordon/.zoom/screenCapture",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x706b968,0x90800,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd4c0) = 0 (0x0)
29790: linux_getdents64(0xa,0x7080f60,0x20000) = 48 (0x30)
29790: linux_getdents64(0xa,0x7080f60,0x20000) = 0 (0x0)
29790: close(10) = 0 (0x0)
29790: linux_rmdir(0x6fe5f18) = 0 (0x0)
29790: linux_mkdir("/home/csgordon/.zoom/screenCapture",511) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffd8e0) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd880) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd8c0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffdae0) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/imageformats/.",F_OK) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6ffd848,0x90800,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd3b0) = 0 (0x0)
29790: linux_getdents64(0xa,0x72db320,0x8000) = 336 (0x150)
29790: linux_getdents64(0xa,0x72db320,0x8000) = 0 (0x0)
29790: close(10) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72e3848,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x8d20,0x1,0x1,0xa,0x0) = 34469179392 (0x80685f000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80685f000,36128) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72fc7f8,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0xca78,0x1,0x1,0xa,0x0) = 34504339456 (0x8089e7000)
29790: close(10) = 0 (0x0)
29790: munmap(0x8089e7000,51832) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6ffdc68,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0xa5d8,0x1,0x1,0xa,0x0) = 34504339456 (0x8089e7000)
29790: close(10) = 0 (0x0)
29790: munmap(0x8089e7000,42456) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72e3668,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x6cbe0,0x1,0x1,0xa,0x0) = 34518253568 (0x80972c000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80972c000,445408) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6ffd9d8,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x7f28,0x1,0x1,0xa,0x0) = 34469179392 (0x80685f000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80685f000,32552) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db2f0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x6ffd998,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x6bf8,0x1,0x1,0xa,0x0) = 34469179392 (0x80685f000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80685f000,27640) = 0 (0x0)
29790: linux_newlstat(0x72db530,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db530,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db530,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db530,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db530,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db530,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72db5b8,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x790a8,0x1,0x1,0xa,0x0) = 34518253568 (0x80972c000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80972c000,495784) = 0 (0x0)
29790: linux_newlstat(0x72db8a0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db8a0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db8a0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db8a0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db8a0,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72db8a0,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72db8b8,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x6b60,0x1,0x1,0xa,0x0) = 34469179392 (0x80685f000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80685f000,27488) = 0 (0x0)
29790: linux_newlstat(0x72dbc90,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72dbc90,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72dbc90,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72dbc90,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72dbc90,0x7fffffffd560) = 0 (0x0)
29790: linux_newlstat(0x72dbc90,0x7fffffffd560) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72dbd18,0x80000,0x0) = 10 (0xa)
29790: linux_newfstat(10,0x7fffffffd390) = 0 (0x0)
29790: linux_newfstat(10,0x7fffffffd480) = 0 (0x0)
29790: linux_mmap2(0x0,0x95498,0x1,0x1,0xa,0x0) = 34518253568 (0x80972c000)
29790: close(10) = 0 (0x0)
29790: munmap(0x80972c000,611480) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x72e3d90,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/imageformats/libqsvg.so.avx2",F_OK) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x72e3d90,0x80000,0x0) = 10 (0xa)
29790: read(10,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(10,0x7fffffffce80) = 0 (0x0)
29790: linux_mmap2(0x0,0x205268,0x5,0x802,0xa,0x0) = 34777071616 (0x818e00000)
29790: linux_mprotect(0x818e05000,0x1ff000,0x0) = 0 (0x0)
29790: linux_mmap2(0x819004000,0x2000,0x3,0x812,0xa,0x4000) = 34779185152 (0x819004000)
29790: close(10) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc730,0x80000,0x0) = 10 (0xa)
29790: read(10,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(10,0x7fffffffc800) = 0 (0x0)
29790: linux_mmap2(0x0,0x255eb0,0x5,0x802,0xa,0x0) = 34781265920 (0x819200000)
29790: linux_mprotect(0x819253000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x819453000,0x3000,0x3,0x812,0xa,0x53000) = 34783703040 (0x819453000)
29790: close(10) = 0 (0x0)
29790: linux_mprotect(0x819453000,0x2000,0x1) = 0 (0x0)
29790: linux_mprotect(0x819004000,0x1000,0x1) = 0 (0x0)
29790: gettimeofday({ 1657909302.092628 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd7b0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd5f0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd630) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffdc10) = 0 (0x0)
29790: linux_newuname(0x7fffffffdd10) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/RegisterProtocol",F_OK) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/RegisterProtocol/ZoomLauncher.desktop",F_OK) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/RegisterProtocol/RegisterProtocol.sh",F_OK) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffdd70) = 0 (0x0)
29790: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/zoom",4096) = 28 (0x1c)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffcce0) = 0 (0x0)
29790: linux_mkdir("/home/csgordon/.zoom/logs/",448) ERR#-17 'File exists'
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffda40) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_mmap2(0x0,0x801000,0x3,0x22,0xffffffff,0x0) = 34783715328 (0x819456000)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffbc60) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data",0x7fffffffccb0) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: gettimeofday({ 1657909302.099216 },0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c137b8,0x81,0x7fffffff,0x0,0x51eb851f,0x70bc9f0) = 0 (0x0)
29790: linux_gettid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_times(0x7fffffffc940) = 2461282 (0x258e62)
29790: linux_times(0x7fffffffc940) = 2461282 (0x258e62)
29790: linux_times(0x7fffffffc8f0) = 2461282 (0x258e62)
29790: linux_times(0x7fffffffc8f0) = 2461282 (0x258e62)
29790: linux_times(0x7fffffffc8f0) = 2461282 (0x258e62)
29790: linux_pipe(0x72db680) = 0 (0x0)
29790: linux_fcntl(0xa,0x3,0x808df0b80) = 2 (0x2)
29790: linux_fcntl(0xa,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0xb,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0xb,0x4,0x802) = 0 (0x0)
29790: linux_times(0x7fffffffc8f0) = 2461282 (0x258e62)
29790: linux_times(0x7fffffffc8f0) = 2461282 (0x258e62)
29790: linux_pipe(0x708ad70) = 0 (0x0)
29790: linux_fcntl(0xc,0x3,0x808df0b80) = 2 (0x2)
29790: linux_fcntl(0xc,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0xd,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0xd,0x4,0x802) = 0 (0x0)
29790: linux_times(0x7fffffffc960) = 2461282 (0x258e62)
29790: gettimeofday({ 1657909302.103602 },0x0) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34792108032 (0x819c57000)
29790: linux_mprotect(0x819c58000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x81a456ef0,0x81a4579d0,0x81a4579d0,0x81a457700) = 120472 (0x1d698)
29790: <new thread 120472>
29790: linux_set_robust_list(0x81a4579e0,0x18) = 0 (0x0)
29790: linux_prctl(0xf,0x6ffdbd8,0x1,0x1,0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461282 (0x258e62)
29790: gettimeofday({ 1657909302.105251 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.105447 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.105622 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.105804 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461282 (0x258e62)
29790: linux_gettid() = 29790 (0x745e)
29790: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/zoom",4096) = 28 (0x1c)
29790: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/zoom",4096) = 28 (0x1c)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffb4f0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data",0x7fffffffc540) = 0 (0x0)
29790: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/zoom",4096) = 28 (0x1c)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffb4f0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data",0x7fffffffc540) = 0 (0x0)
29790: gettimeofday({ 1657909302.108490 },0x7fffffffd600) = 0 (0x0)
29790: linux_socket(0xa,0x2,0x0) = 14 (0xe)
29790: close(14) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34800500736 (0x81a458000)
29790: linux_mprotect(0x81a459000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x81ac57ef0,0x81ac589d0,0x81ac589d0,0x81ac58700) = 120473 (0x1d699)
29790: <new thread 120473>
29790: linux_set_robust_list(0x81ac589e0,0x18) = 0 (0x0)
29790: gettimeofday({ 1657909302.110156 },0x0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 14 (0xe)
29790: linux_newfstat(14,0x7fffffffd020) = 0 (0x0)
29790: read(14,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29790: close(14) = 0 (0x0)
29790: linux_newuname(0x7fffffffd300) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffb410) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34808893440 (0x81ac59000)
29790: linux_mprotect(0x81ac5a000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x81b458ef0,0x81b4599d0,0x81b4599d0,0x81b459700) = 120474 (0x1d69a)
29790: <new thread 120474>
29790: linux_set_robust_list(0x81b4599e0,0x18) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffd540) = 0 (0x0)
29790: linux_mmap2(0x0,0x8000000,0x0,0x4022,0xffffffff,0x0) = 34896609280 (0x820000000)
29790: munmap(0x824000000,67108864) = 0 (0x0)
29790: linux_mprotect(0x820000000,0x21000,0x3) = 0 (0x0)
29790: gettimeofday({ 1657909302.113678 },0x0) = 0 (0x0)
29790: linux_times(0x7fffffffd390) = 2461283 (0x258e63)
29790: gettimeofday({ 1657909302.114381 },0x0) = 0 (0x0)
29790: linux_sys_futex(0x6c366f8,0x81,0x7fffffff,0x0,0x7133080,0xca) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getrandom(0x71334c0,0x20,0x0) = 32 (0x20)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_clock_gettime(0x0,0x7fffffffd230) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_sys_futex(0x6c366b4,0x81,0x7fffffff,0x0,0x1,0xffffffff) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_sys_futex(0x6c335a4,0x81,0x7fffffff,0x0,0x6e305d0,0x0) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: gettimeofday({ 1657909302.117533 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.117724 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461284 (0x258e64)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_pipe(0x717d140) = 0 (0x0)
29790: linux_fcntl(0xe,0x3,0x808df0b80) = 2 (0x2)
29790: linux_fcntl(0xe,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0xf,0x3,0x802) = 2 (0x2)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0xf,0x4,0x802) = 0 (0x0)
29790: gettimeofday({ 1657909302.129369 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.129574 },0x0) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 34817286144 (0x81b45a000)
29790: linux_mprotect(0x81b45b000,0x800000,0x3) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461286 (0x258e66)
29790: linux_clone(0x3d0f00,0x81bc59ef0,0x81bc5a9d0,0x81bc5a9d0,0x81bc5a700) = 120475 (0x1d69b)
29790: <new thread 120475>
29790: linux_set_robust_list(0x81bc5a9e0,0x18) = 0 (0x0)
29790: linux_mmap2(0x824000000,0x4000000,0x0,0x4022,0xffffffff,0x0) = 34963718144 (0x824000000)
29790: linux_mprotect(0x824000000,0x21000,0x3) = 0 (0x0)
29790: linux_prctl(0xf,0x717d108,0x0,0x10,0x824001e00) = 0 (0x0)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34526081024 (0x809ea3000)
29790: linux_pipe(0x71349c8) = 0 (0x0)
29790: linux_fcntl(0x10,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0x10,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x11,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x11,0x4,0x802) = 0 (0x0)
29790: write(15,"\0",1) = 1 (0x1)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 1 (0x1)
29790: poll({ 14/POLLIN|POLLPRI },1,0) = 1 (0x1)
29790: read(14,"\0",1) = 1 (0x1)
29790: write(17,"\0",1) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,-1) = 1 (0x1)
29790: read(16,"\0",1) = 1 (0x1)
29790: close(16) = 0 (0x0)
29790: close(17) = 0 (0x0)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34534375424 (0x80a68c000)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34546409472 (0x80b206000)
29790: linux_pipe(0x71349c8) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x10,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0x10,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x11,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x11,0x4,0x802) = 0 (0x0)
29790: gettimeofday({ 1657909302.141956 },0x0) = 0 (0x0)
29790: write(15,"\0",1) = 1 (0x1)
29790: gettimeofday({ 1657909302.142199 },0x0) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 1 (0x1)
29790: linux_times(0x81a456d90) = 2461287 (0x258e67)
29790: poll({ 14/POLLIN|POLLPRI },1,0) = 1 (0x1)
29790: read(14,"\0",1) = 1 (0x1)
29790: write(17,"\0",1) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,-1) = 1 (0x1)
29790: read(16,"\0",1) = 1 (0x1)
29790: close(16) = 0 (0x0)
29790: close(17) = 0 (0x0)
29790: linux_pipe(0x7289cd0) = 0 (0x0)
29790: linux_fcntl(0x10,0x3,0x808df0b80) = 2 (0x2)
29790: linux_fcntl(0x10,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x11,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x11,0x4,0x802) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 35030827008 (0x828000000)
29790: linux_mprotect(0x828001000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x8287ffef0,0x8288009d0,0x8288009d0,0x828800700) = 120476 (0x1d69c)
29790: <new thread 120476>
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34553303040 (0x80b899000)
29790: linux_set_robust_list(0x8288009e0,0x18) = 0 (0x0)
29790: linux_mmap2(0x0,0x8000000,0x0,0x4022,0xffffffff,0x0) = 35039219712 (0x828801000)
29790: munmap(0x828801000,58716160) = 0 (0x0)
29790: munmap(0x830000000,8392704) = 0 (0x0)
29790: linux_mprotect(0x82c000000,0x21000,0x3) = 0 (0x0)
29790: linux_prctl(0xf,0x7289c98,0x0,0x10,0x82c001e00) = 0 (0x0)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34588340224 (0x80da03000)
29790: linux_pipe(0x71349c8) = 0 (0x0)
29790: linux_fcntl(0x12,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0x12,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x13,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x13,0x4,0x802) = 0 (0x0)
29790: write(17,"\0",1) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,0) = 1 (0x1)
29790: read(16,"\0",1) = 1 (0x1)
29790: write(19,"\0",1) = 1 (0x1)
29790: poll({ 18/POLLIN|POLLPRI },1,-1) = 1 (0x1)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: read(18,"\0",1) = 1 (0x1)
29790: gettimeofday({ 1657909302.154190 },0x0) = 0 (0x0)
29790: close(18) = 0 (0x0)
29790: gettimeofday({ 1657909302.154637 },0x0) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461289 (0x258e69)
29790: close(19) = 0 (0x0)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34605150208 (0x80ea0b000)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34617741312 (0x80f60d000)
29790: linux_pipe(0x71349c8) = 0 (0x0)
29790: linux_fcntl(0x12,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0x12,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x13,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x13,0x4,0x802) = 0 (0x0)
29790: write(17,"\0",1) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,0) = 1 (0x1)
29790: read(16,"\0",1) = 1 (0x1)
29790: write(19,"\0",1) = 1 (0x1)
29790: poll({ 18/POLLIN|POLLPRI },1,-1) = 1 (0x1)
29790: read(18,"\0",1) = 1 (0x1)
29790: close(18) = 0 (0x0)
29790: close(19) = 0 (0x0)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34624241664 (0x80fc40000)
29790: linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 34774978560 (0x818c01000)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.166108 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.166308 },0x0) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461290 (0x258e6a)
29790: linux_pipe(0x71349c8) = 0 (0x0)
29790: linux_fcntl(0x12,0x3,0x0) = 2 (0x2)
29790: linux_fcntl(0x12,0x4,0x802) = 0 (0x0)
29790: linux_fcntl(0x13,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x13,0x4,0x802) = 0 (0x0)
29790: write(17,"\0",1) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 1 (0x1)
29790: poll({ 16/POLLIN|POLLPRI },1,0) = 1 (0x1)
29790: read(16,"\0",1) = 1 (0x1)
29790: write(19,"\0",1) = 1 (0x1)
29790: poll({ 18/POLLIN|POLLPRI },1,-1) = 1 (0x1)
29790: read(18,"\0",1) = 1 (0x1)
29790: close(18) = 0 (0x0)
29790: close(19) = 0 (0x0)
29790: mlock(0x7292000,3392) = 0 (0x0)
29790: mlock(0x7160000,760) = 0 (0x0)
29790: munlock(0x7160000,760) = 0 (0x0)
29790: munlock(0x7292000,3392) = 0 (0x0)
29790: gettimeofday({ 1657909302.171521 },0x7fffffffd6f0) = 0 (0x0)
29790: gettimeofday({ 1657909302.171699 },0x7fffffffd6d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffb490) = 0 (0x0)
29790: gettimeofday({ 1657909302.172148 },0x7fffffffd580) = 0 (0x0)
29790: linux_times(0x7fffffffd710) = 2461291 (0x258e6b)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffb5a0) = 0 (0x0)
29790: linux_sys_futex(0x6c3d740,0x81,0x7fffffff,0x0,0x72a2bf0,0x72da840) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_brk(0x7413000) = 121712640 (0x7413000)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.178010 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.178299 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461292 (0x258e6c)
29790: linux_brk(0x7451000) = 121966592 (0x7451000)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_brk(0x7482000) = 122167296 (0x7482000)
29790: linux_brk(0x74ac000) = 122339328 (0x74ac000)
29790: linux_brk(0x74f4000) = 122634240 (0x74f4000)
29790: linux_brk(0x7554000) = 123027456 (0x7554000)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.189110 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.189331 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461293 (0x258e6d)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.200021 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.200229 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461294 (0x258e6e)
29790: linux_brk(0x75c1000) = 123473920 (0x75c1000)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.211562 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.211760 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461296 (0x258e70)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_brk(0x75e2000) = 123609088 (0x75e2000)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.223092 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.223306 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461297 (0x258e71)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_brk(0x7603000) = 123744256 (0x7603000)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_getpid() = 29790 (0x745e)
29790: gettimeofday({ 1657909302.227336 },0x7fffffffd7a0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffbb90) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data",0x7fffffffcbe0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db",0x7fffffffda70) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.db",0x7fffffffda60) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db",0x7fffffffda40) = 0 (0x0)
29790: linux_chmod(0x73f4a88,0x180) = 0 (0x0)
29790: mlock(0x749c000,3936) = 0 (0x0)
29790: mlock(0x7091000,560) = 0 (0x0)
29790: mlock(0x7492000,1144) = 0 (0x0)
29790: mlock(0x7174000,360) = 0 (0x0)
29790: mlock(0x7491000,1576) = 0 (0x0)
29790: mlock(0x7452000,1448) = 0 (0x0)
29790: mlock(0x7490000,1672) = 0 (0x0)
29790: mlock(0x744d000,3512) = 0 (0x0)
29790: mlock(0x74b3000,2408) = 0 (0x0)
29790: mlock(0x745d000,3248) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x73f9000,3176) = 0 (0x0)
29790: mlock(0x710a000,2720) = 0 (0x0)
29790: linux_newlstat(0x74b393c,0x7fffffffd740) = 0 (0x0)
29790: mlock(0x7155000,4512) = 0 (0x0)
29790: munlock(0x710a000,2720) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: mlock(0x72d0000,3304) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7156114,0xa0002,0x0) = 18 (0x12)
29790: linux_newfstat(18,0x7fffffffd320) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x746c000,3704) = 0 (0x0)
29790: gettimeofday({ 1657909302.234277 },0x0) = 0 (0x0)
29790: mlock(0x745d000,3360) = 0 (0x0)
29790: gettimeofday({ 1657909302.234631 },0x0) = 0 (0x0)
29790: linux_sys_futex(0x711b990,0x189,0x0,0x81b458d40,0x0,0xffffffff) ERR#-110 'Operation timed out'
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461299 (0x258e73)
29790: linux_sys_futex(0x711b940,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffd230) = 0 (0x0)
29790: gettimeofday({ 1657909302.236102 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db",0x7fffffffd190) = 0 (0x0)
29790: mlock(0x710a000,5792) = 0 (0x0)
29790: mlock(0x73f4000,2848) = 0 (0x0)
29790: mlock(0x710b000,3768) = 0 (0x0)
29790: linux_lseek(18,0,SEEK_SET) = 0 (0x0)
29790: read(18,"\M-D\M^^N\M-%\M^M\M-'e,\M-g\M^T%"...,100) = 100 (0x64)
29790: mlock(0x7490000,1888) = 0 (0x0)
29790: mlock(0x7490000,2096) = 0 (0x0)
29790: mlock(0x72d5000,3232) = 0 (0x0)
29790: mlock(0x7454000,80) = 0 (0x0)
29790: mlock(0x746c000,3496) = 0 (0x0)
29790: mlock(0x7453000,3992) = 0 (0x0)
29790: mlock(0x74f8000,4072) = 0 (0x0)
29790: mlock(0x744e000,504) = 0 (0x0)
29790: mlock(0x7457000,3712) = 0 (0x0)
29790: mlock(0x7455000,824) = 0 (0x0)
29790: mlock(0x745d000,3560) = 0 (0x0)
29790: mlock(0x7490000,1432) = 0 (0x0)
29790: mlock(0x745d000,3760) = 0 (0x0)
29790: mlock(0x72b9000,336) = 0 (0x0)
29790: mlock(0x745e000,896) = 0 (0x0)
29790: mlock(0x72d1000,512) = 0 (0x0)
29790: mlock(0x745e000,2624) = 0 (0x0)
29790: mlock(0x72d1000,984) = 0 (0x0)
29790: mlock(0x74fa000,3920) = 0 (0x0)
29790: mlock(0x745f000,3592) = 0 (0x0)
29790: mlock(0x72c4000,176) = 0 (0x0)
29790: mlock(0x72d5000,832) = 0 (0x0)
29790: mlock(0x7461000,864) = 0 (0x0)
29790: mlock(0x7468000,4040) = 0 (0x0)
29790: mlock(0x7461000,1080) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x72bb000,2928) = 0 (0x0)
29790: mlock(0x7462000,2272) = 0 (0x0)
29790: mlock(0x7465000,1896) = 0 (0x0)
29790: mlock(0x7462000,2472) = 0 (0x0)
29790: mlock(0x72bb000,3416) = 0 (0x0)
29790: mlock(0x7462000,2704) = 0 (0x0)
29790: mlock(0x72c1000,240) = 0 (0x0)
29790: mlock(0x7463000,2056) = 0 (0x0)
29790: mlock(0x72bb000,3896) = 0 (0x0)
29790: mlock(0x7464000,2176) = 0 (0x0)
29790: mlock(0x7507000,1440) = 0 (0x0)
29790: mlock(0x72ba000,1880) = 0 (0x0)
29790: mlock(0x7465000,1584) = 0 (0x0)
29790: mlock(0x7517000,3792) = 0 (0x0)
29790: mlock(0x7465000,1992) = 0 (0x0)
29790: mlock(0x745b000,2288) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x7466000,328) = 0 (0x0)
29790: gettimeofday({ 1657909302.247252 },0x0) = 0 (0x0)
29790: mlock(0x7450000,720) = 0 (0x0)
29790: gettimeofday({ 1657909302.247520 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461300 (0x258e74)
29790: mlock(0x7466000,1144) = 0 (0x0)
29790: mlock(0x7450000,472) = 0 (0x0)
29790: mlock(0x7466000,1384) = 0 (0x0)
29790: mlock(0x75e4000,48248) = 0 (0x0)
29790: munlock(0x74b3000,2408) = 0 (0x0)
29790: linux_socket(0x10,0x80002,0x0) ERR#-97 'Address family not supported by protocol family'
29790: linux_clock_gettime(0x1,0x7fffffffcd60) = 0 (0x0)
29790: write(2,"Could not create AF_NETLINK sock"...,78) = 78 (0x4e)
29790: linux_setsockopt(0xffffffff,0x1,0x7,0x7fffffffd26c,0x4) ERR#-9 'Bad file descriptor'
29790: linux_openat(0xffffff9c,0x80ab990ca,0x80000,0x0) = 19 (0x13)
29790: read(19,"1ce13b7f3e464d4a9988ca9d42616192",32) = 32 (0x20)
29790: close(19) = 0 (0x0)
29790: mlock(0x7495000,640) = 0 (0x0)
29790: mlock(0x746d000,816) = 0 (0x0)
29790: mlock(0x746e000,1584) = 0 (0x0)
29790: mlock(0x746f000,880) = 0 (0x0)
29790: mlock(0x746f000,3888) = 0 (0x0)
29790: mlock(0x7471000,1648) = 0 (0x0)
29790: mlock(0x7409000,2224) = 0 (0x0)
29790: mlock(0x7409000,2224) = 0 (0x0)
29790: mlock(0x7497000,3552) = 0 (0x0)
29790: mlock(0x7497000,3552) = 0 (0x0)
29790: mlock(0x72d5000,360) = 0 (0x0)
29790: mlock(0x72d5000,360) = 0 (0x0)
29790: mlock(0x72b9000,2824) = 0 (0x0)
29790: mlock(0x72b9000,2824) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x749b000,3568) = 0 (0x0)
29790: mlock(0x749b000,3568) = 0 (0x0)
29790: mlock(0x710b000,7880) = 0 (0x0)
29790: mlock(0x710b000,7880) = 0 (0x0)
29790: mlock(0x7471000,1856) = 0 (0x0)
29790: mlock(0x7471000,1856) = 0 (0x0)
29790: mlock(0x7466000,1592) = 0 (0x0)
29790: mlock(0x7466000,1592) = 0 (0x0)
29790: mlock(0x746a000,3160) = 0 (0x0)
29790: mlock(0x746a000,3160) = 0 (0x0)
29790: mlock(0x7471000,2064) = 0 (0x0)
29790: mlock(0x7471000,2064) = 0 (0x0)
29790: mlock(0x746d000,376) = 0 (0x0)
29790: mlock(0x746d000,376) = 0 (0x0)
29790: mlock(0x7472000,3656) = 0 (0x0)
29790: mlock(0x7472000,3656) = 0 (0x0)
29790: mlock(0x7472000,4104) = 0 (0x0)
29790: mlock(0x7472000,4104) = 0 (0x0)
29790: mlock(0x7473000,200) = 0 (0x0)
29790: mlock(0x7473000,200) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.259070 },0x0) = 0 (0x0)
29790: munlock(0x710b000,7880) = 0 (0x0)
29790: gettimeofday({ 1657909302.259450 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461302 (0x258e76)
29790: munlock(0x710b000,7880) = 0 (0x0)
29790: mlock(0x72cd000,2600) = 0 (0x0)
29790: mlock(0x72cd000,2600) = 0 (0x0)
29790: mlock(0x710b000,4816) = 0 (0x0)
29790: mlock(0x7494000,2784) = 0 (0x0)
29790: mlock(0x710c000,2792) = 0 (0x0)
29790: munlock(0x710b000,3768) = 0 (0x0)
29790: munlock(0x73f4000,2848) = 0 (0x0)
29790: munlock(0x710a000,5792) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.db",0x7fffffffd940) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db",0x7fffffffda40) ERR#-2 'No such file or directory'
29790: mlock(0x74a1000,800) = 0 (0x0)
29790: mlock(0x7477000,1136) = 0 (0x0)
29790: mlock(0x7495000,904) = 0 (0x0)
29790: mlock(0x7477000,1496) = 0 (0x0)
29790: mlock(0x7495000,408) = 0 (0x0)
29790: mlock(0x7477000,1688) = 0 (0x0)
29790: mlock(0x7494000,1832) = 0 (0x0)
29790: mlock(0x7478000,1240) = 0 (0x0)
29790: mlock(0x7474000,832) = 0 (0x0)
29790: mlock(0x7464000,2080) = 0 (0x0)
29790: mlock(0x749f000,728) = 0 (0x0)
29790: mlock(0x710c000,3840) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newlstat(0x747430c,0x7fffffffd740) ERR#-2 'No such file or directory'
29790: mlock(0x710c000,4792) = 0 (0x0)
29790: munlock(0x710c000,3840) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db",0x7fffffffd320) ERR#-2 'No such file or directory'
29790: mlock(0x72bb000,1608) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x710d224,0xa0002,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x710d224,0xa0000,0x0) ERR#-2 'No such file or directory'
29790: munlock(0x72bb000,1608) = 0 (0x0)
29790: munlock(0x710c000,4792) = 0 (0x0)
29790: munlock(0x749f000,728) = 0 (0x0)
29790: munlock(0x7464000,2080) = 0 (0x0)
29790: munlock(0x7474000,832) = 0 (0x0)
29790: mlock(0x74b0000,1312) = 0 (0x0)
29790: mlock(0x7478000,1632) = 0 (0x0)
29790: mlock(0x7493000,2152) = 0 (0x0)
29790: mlock(0x7479000,1592) = 0 (0x0)
29790: mlock(0x7492000,3144) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x7479000,1816) = 0 (0x0)
29790: mlock(0x7492000,3352) = 0 (0x0)
29790: mlock(0x747a000,248) = 0 (0x0)
29790: mlock(0x7474000,832) = 0 (0x0)
29790: mlock(0x7464000,2080) = 0 (0x0)
29790: mlock(0x74a1000,3896) = 0 (0x0)
29790: mlock(0x710c000,3840) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newlstat(0x747430c,0x7fffffffd740) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.271119 },0x0) = 0 (0x0)
29790: mlock(0x710c000,4792) = 0 (0x0)
29790: gettimeofday({ 1657909302.271535 },0x0) = 0 (0x0)
29790: munlock(0x710c000,3840) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_times(0x81a456d90) = 2461304 (0x258e78)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db",0x7fffffffd320) ERR#-2 'No such file or directory'
29790: mlock(0x72bb000,1608) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x710d224,0xa0042,0x180) = 19 (0x13)
29790: linux_newfstat(19,0x7fffffffd320) = 0 (0x0)
29790: mlock(0x7464000,1896) = 0 (0x0)
29790: mlock(0x747a000,2864) = 0 (0x0)
29790: linux_newfstat(19,0x7fffffffd230) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db",0x7fffffffd190) = 0 (0x0)
29790: mlock(0x710a000,5792) = 0 (0x0)
29790: mlock(0x73f4000,2848) = 0 (0x0)
29790: mlock(0x710b000,3768) = 0 (0x0)
29790: linux_lseek(19,0,SEEK_SET) = 0 (0x0)
29790: read(19,0x7fffffffd880,100) = 0 (0x0)
29790: mlock(0x7496000,640) = 0 (0x0)
29790: mlock(0x7496000,1168) = 0 (0x0)
29790: mlock(0x72be000,2176) = 0 (0x0)
29790: mlock(0x747b000,2176) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x7460000,2216) = 0 (0x0)
29790: mlock(0x747b000,2568) = 0 (0x0)
29790: mlock(0x7517000,3480) = 0 (0x0)
29790: mlock(0x747b000,2792) = 0 (0x0)
29790: mlock(0x746a000,2976) = 0 (0x0)
29790: mlock(0x747b000,2984) = 0 (0x0)
29790: mlock(0x747e000,3176) = 0 (0x0)
29790: mlock(0x7497000,2536) = 0 (0x0)
29790: mlock(0x747e000,3904) = 0 (0x0)
29790: mlock(0x72c0000,720) = 0 (0x0)
29790: mlock(0x747f000,48) = 0 (0x0)
29790: mlock(0x72ba000,2352) = 0 (0x0)
29790: mlock(0x747f000,304) = 0 (0x0)
29790: mlock(0x72b9000,1304) = 0 (0x0)
29790: mlock(0x7517000,3152) = 0 (0x0)
29790: mlock(0x747f000,488) = 0 (0x0)
29790: mlock(0x7516000,2848) = 0 (0x0)
29790: mlock(0x72b9000,2336) = 0 (0x0)
29790: mlock(0x7480000,2016) = 0 (0x0)
29790: mlock(0x746d000,2376) = 0 (0x0)
29790: mlock(0x7480000,3224) = 0 (0x0)
29790: mlock(0x72d5000,3760) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x7481000,112) = 0 (0x0)
29790: mlock(0x7472000,2760) = 0 (0x0)
29790: mlock(0x7481000,600) = 0 (0x0)
29790: mlock(0x72bb000,904) = 0 (0x0)
29790: mlock(0x7481000,784) = 0 (0x0)
29790: mlock(0x7515000,2512) = 0 (0x0)
29790: mlock(0x7482000,680) = 0 (0x0)
29790: mlock(0x72bf000,3816) = 0 (0x0)
29790: mlock(0x7482000,864) = 0 (0x0)
29790: mlock(0x7509000,3456) = 0 (0x0)
29790: mlock(0x72c0000,200) = 0 (0x0)
29790: mlock(0x7482000,1072) = 0 (0x0)
29790: mlock(0x7509000,576) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x7482000,1272) = 0 (0x0)
29790: gettimeofday({ 1657909302.283221 },0x0) = 0 (0x0)
29790: mlock(0x746b000,3952) = 0 (0x0)
29790: gettimeofday({ 1657909302.283405 },0x0) = 0 (0x0)
29790: mlock(0x7482000,1464) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461305 (0x258e79)
29790: mlock(0x746c000,64) = 0 (0x0)
29790: mlock(0x7482000,1672) = 0 (0x0)
29790: mlock(0x744f000,1528) = 0 (0x0)
29790: mlock(0x7482000,1864) = 0 (0x0)
29790: mlock(0x75ef000,51208) = 0 (0x0)
29790: munlock(0x7474000,832) = 0 (0x0)
29790: linux_socket(0x10,0x80002,0x0) ERR#-97 'Address family not supported by protocol family'
29790: write(2,"Could not create AF_NETLINK sock"...,78) = 78 (0x4e)
29790: linux_setsockopt(0xffffffff,0x1,0x7,0x7fffffffd26c,0x4) ERR#-9 'Bad file descriptor'
29790: linux_openat(0xffffff9c,0x80ab990ca,0x80000,0x0) = 20 (0x14)
29790: read(20,"1ce13b7f3e464d4a9988ca9d42616192",32) = 32 (0x20)
29790: close(20) = 0 (0x0)
29790: mlock(0x74a2000,2720) = 0 (0x0)
29790: mlock(0x74a2000,2720) = 0 (0x0)
29790: mlock(0x72c2000,1784) = 0 (0x0)
29790: mlock(0x72c2000,1784) = 0 (0x0)
29790: mlock(0x72c2000,2248) = 0 (0x0)
29790: mlock(0x72c2000,2248) = 0 (0x0)
29790: mlock(0x74a3000,1664) = 0 (0x0)
29790: mlock(0x74a3000,1664) = 0 (0x0)
29790: mlock(0x75fb000,6168) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: mlock(0x75fb000,6168) = 0 (0x0)
29790: mlock(0x72b7000,1728) = 0 (0x0)
29790: mlock(0x72b7000,1728) = 0 (0x0)
29790: mlock(0x7482000,2248) = 0 (0x0)
29790: mlock(0x7482000,2248) = 0 (0x0)
29790: mlock(0x7482000,4104) = 0 (0x0)
29790: mlock(0x7482000,4104) = 0 (0x0)
29790: mlock(0x7483000,224) = 0 (0x0)
29790: mlock(0x7483000,224) = 0 (0x0)
29790: mlock(0x7484000,2808) = 0 (0x0)
29790: mlock(0x7484000,2808) = 0 (0x0)
29790: mlock(0x7484000,3048) = 0 (0x0)
29790: mlock(0x7484000,3048) = 0 (0x0)
29790: mlock(0x7484000,4088) = 0 (0x0)
29790: mlock(0x7484000,4088) = 0 (0x0)
29790: mlock(0x7486000,2920) = 0 (0x0)
29790: mlock(0x7486000,2920) = 0 (0x0)
29790: munlock(0x75fb000,6168) = 0 (0x0)
29790: munlock(0x75fb000,6168) = 0 (0x0)
29790: mlock(0x710c000,3832) = 0 (0x0)
29790: mlock(0x710c000,3832) = 0 (0x0)
29790: mlock(0x75fb000,3104) = 0 (0x0)
29790: mlock(0x74b3000,896) = 0 (0x0)
29790: mlock(0x75fb000,5176) = 0 (0x0)
29790: munlock(0x710b000,3768) = 0 (0x0)
29790: munlock(0x73f4000,2848) = 0 (0x0)
29790: munlock(0x710a000,5792) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffc6d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffc6d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffc6d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffc6d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffc6d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffc690) = 0 (0x0)
29790: linux_lseek(18,0,SEEK_SET) = 0 (0x0)
29790: read(18,"\M-D\M^^N\M-%\M^M\M-'e,\M-g\M^T%"...,1024) = 1024 (0x400)
29790: linux_lseek(18,0,SEEK_SET) = 0 (0x0)
29790: read(18,"\M-D\M^^N\M-%\M^M\M-'e,\M-g\M^T%"...,16) = 16 (0x10)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.294925 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.295006 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461306 (0x258e7a)
29790: mlock(0x749a000,347) = 0 (0x0)
29790: munlock(0x7473000,200) = 0 (0x0)
29790: mlock(0x7473000,200) = 0 (0x0)
29790: mlock(0x7499000,3963) = 0 (0x0)
29790: munlock(0x7472000,4104) = 0 (0x0)
29790: munlock(0x7473000,200) = 0 (0x0)
29790: linux_lseek(18,5120,SEEK_SET) = 5120 (0x1400)
29790: read(18,"}"\M-B\M-L\M-\\M->PZJ\M-m\M^["...,1024) = 1024 (0x400)
29790: linux_lseek(18,6144,SEEK_SET) = 6144 (0x1800)
29790: read(18,"<]\M-{\M-vkT\n\M^Pm\M-L\M-G\M-\&"...,1024) = 1024 (0x400)
29790: linux_lseek(18,8192,SEEK_SET) = 8192 (0x2000)
29790: read(18,"\M-|\M-k\M-:\^F\M-E\^Y\M-b\M-Y"...,1024) = 1024 (0x400)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_lseek(18,14336,SEEK_SET) = 14336 (0x3800)
29790: read(18,"\M-GB\M-l\M-(\M-Z\M-8\M-.\M-q"...,1024) = 1024 (0x400)
29790: linux_lseek(18,21504,SEEK_SET) = 21504 (0x5400)
29790: read(18,"\M-M\M-S'A4\M-M[{\^W\M-]HO\M-je"...,1024) = 1024 (0x400)
29790: linux_lseek(18,27648,SEEK_SET) = 27648 (0x6c00)
29790: read(18,"iU\M-E*/\M^Pi\M-hz\M-$DG\M-$\M-r"...,1024) = 1024 (0x400)
29790: linux_lseek(18,34816,SEEK_SET) = 34816 (0x8800)
29790: read(18,"C\M-W\M-4]~/\M-x\M-2^?\M^M\^Q"...,1024) = 1024 (0x400)
29790: linux_lseek(18,39936,SEEK_SET) = 39936 (0x9c00)
29790: read(18,"\M^B\M-d9\M-I\M^_\M^Qv;\M-Cd\M^X"...,1024) = 1024 (0x400)
29790: linux_lseek(18,45056,SEEK_SET) = 45056 (0xb000)
29790: read(18,"\^_\M-e9\M-a1\M-R\^Q\M-_\M-Y5-"...,1024) = 1024 (0x400)
29790: linux_fcntl(0x12,0x6,0x7fffffffc3c0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffc6d0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffc6d0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffc6d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-journal",0x7fffffffc6d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-wal",0x7fffffffc6d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(19,0x7fffffffc690) = 0 (0x0)
29790: linux_brk(0x7629000) = 123899904 (0x7629000)
29790: linux_fcntl(0x13,0x6,0x7fffffffc3c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd510) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd510) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd510) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd510) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd510) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd580) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd510) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd510) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd510) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-journal",0x7fffffffd510) ERR#-2 'No such file or directory'
29790: linux_lseek(19,24,SEEK_SET) = 24 (0x18)
29790: read(19,0x7fffffffd5c0,16) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-wal",0x7fffffffd510) ERR#-2 'No such file or directory'
29790: linux_newfstat(19,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd580) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd420) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd420) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd420) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-journal",0x7fffffffd420) ERR#-2 'No such file or directory'
29790: linux_lseek(19,24,SEEK_SET) = 24 (0x18)
29790: read(19,0x7fffffffd4d0,16) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-wal",0x7fffffffd420) ERR#-2 'No such file or directory'
29790: linux_newfstat(19,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd4b0) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db",0x7fffffffcfd0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x710d251,0xa0042,0x180) = 20 (0x14)
29790: linux_newfstat(20,0x7fffffffcec0) = 0 (0x0)
29790: geteuid() = 1002 (0x3ea)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_openat(0xffffff9c,0x57a0652,0x80000,0x0) = 21 (0x15)
29790: read(21,"\M-K\^R\M-bp\^C\M-Nu\^Dbi\M-J"...,256) = 256 (0x100)
29790: close(21) = 0 (0x0)
29790: linux_lseek(20,0,SEEK_SET) = 0 (0x0)
29790: write(20,"\M-Y\M-U\^E\M-y \M-!c\M-W\M^?"...,512) = 512 (0x200)
29790: linux_fcntl(0x13,0x6,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd4c0) = 0 (0x0)
29790: linux_lseek(19,0,SEEK_SET) = 0 (0x0)
29790: read(19,0x72c26e8,16) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.305879 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.305947 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461308 (0x258e7c)
29790: mlock(0x749d000,1643) = 0 (0x0)
29790: munlock(0x7486000,2920) = 0 (0x0)
29790: mlock(0x7486000,2920) = 0 (0x0)
29790: mlock(0x749c000,2747) = 0 (0x0)
29790: munlock(0x7484000,4088) = 0 (0x0)
29790: munlock(0x7486000,2920) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_lseek(19,0,SEEK_SET) = 0 (0x0)
29790: write(19,"\M^?\M-M\M-Y\M^T\a\M--\M^FT\n"...,1024) = 1024 (0x400)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_lseek(19,1024,SEEK_SET) = 1024 (0x400)
29790: write(19,"\f\M-b\M-D_s\M-|@\M-4\M-\\M^F"...,1024) = 1024 (0x400)
29790: close(20) = 0 (0x0)
29790: linux_unlink(0x710d251) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd470) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd470) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4e0) ERR#-2 'No such file or directory'
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffd4a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd550) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3f0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd3f0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd3f0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd3b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd460) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4f0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4f0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd560) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd580) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd580) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd580) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd580) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd580) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd540) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd5f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd500) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd500) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd540) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd540) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd540) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd540) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4d0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd540) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4f0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4f0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4f0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd560) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd4a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd550) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd4e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd4e0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.316885 },0x0) = 0 (0x0)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: gettimeofday({ 1657909302.317040 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd4e0) ERR#-2 'No such file or directory'
29790: linux_times(0x81a456d90) = 2461309 (0x258e7d)
29790: linux_newfstat(18,0x7fffffffd4a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd550) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd570) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd570) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd570) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd530) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd5e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd350) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd350) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd350) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd350) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd350) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd310) = 0 (0x0)
29790: linux_lseek(18,1024,SEEK_SET) = 1024 (0x400)
29790: read(18,",z\^VS\M-N\M-eH\M^Tq\M-k\r$\M^T"...,1024) = 1024 (0x400)
29790: linux_lseek(18,49152,SEEK_SET) = 49152 (0xc000)
29790: read(18,"\M-q\^E\M-m\M-Th\M-g\M--\M^D\M-/"...,1024) = 1024 (0x400)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_lseek(18,50176,SEEK_SET) = 50176 (0xc400)
29790: read(18,"\M-w\^C}0+[\M-4\M-{|I5\M-+\M^W"...,1024) = 1024 (0x400)
29790: linux_lseek(18,51200,SEEK_SET) = 51200 (0xc800)
29790: read(18,"g\0PU\M-&WF\^E\M^I[\^Xi0\M-)\M-d"...,1024) = 1024 (0x400)
29790: linux_lseek(18,52224,SEEK_SET) = 52224 (0xcc00)
29790: read(18,"\^R\M-$1t\M-Pf\M-H]2\M-l\M-=UY"...,1024) = 1024 (0x400)
29790: linux_lseek(18,53248,SEEK_SET) = 53248 (0xd000)
29790: read(18,"\M^X\M-`\M-O\M-1\M-b\M-Wxr['\M-c"...,1024) = 1024 (0x400)
29790: linux_lseek(18,54272,SEEK_SET) = 54272 (0xd400)
29790: read(18,"\M-DDuI\M-b\M-M\M-5\M-p\M^N\^S ;"...,1024) = 1024 (0x400)
29790: linux_lseek(18,55296,SEEK_SET) = 55296 (0xd800)
29790: read(18,"\M-F\M-e0\M^O0\M^_\^]\M-!\M-J\^N"...,1024) = 1024 (0x400)
29790: linux_lseek(18,56320,SEEK_SET) = 56320 (0xdc00)
29790: read(18,"O\M^J\M^?\240\M^X\M-R\M-O\M-["...,1024) = 1024 (0x400)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd420) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd420) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd420) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd420) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd420) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd3e0) = 0 (0x0)
29790: linux_lseek(18,4096,SEEK_SET) = 4096 (0x1000)
29790: read(18,"\M-H\M-5\fN>\M-#\M^Hb<E\M-}m\M-N"...,1024) = 1024 (0x400)
29790: linux_fcntl(0x12,0x6,0x7fffffffd490) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2a0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2a0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2a0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd260) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd310) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd550) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd550) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd550) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd550) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd550) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd510) = 0 (0x0)
29790: linux_lseek(18,47104,SEEK_SET) = 47104 (0xb800)
29790: read(18,"U\^[\M-U~\^N}\M-d\^Z|Q\M-="\M-)"...,1024) = 1024 (0x400)
29790: linux_fcntl(0x12,0x6,0x7fffffffd5c0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd2a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd350) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd2a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd350) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd330) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd330) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd330) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd330) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd330) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd370) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd370) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd330) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd3e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: gettimeofday({ 1657909302.327976 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.328066 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461311 (0x258e7f)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd2b0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd270) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd320) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: gettimeofday({ 1657909302.338901 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.338950 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461312 (0x258e80)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.349908 },0x0) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.350039 },0x0) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461313 (0x258e81)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_sys_futex(0x711b990,0x189,0x0,0x81b458d40,0x0,0xffffffff) ERR#-110 'Operation timed out'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x711b940,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: gettimeofday({ 1657909302.357143 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.360929 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.360982 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461315 (0x258e83)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: gettimeofday({ 1657909302.371888 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.371949 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461316 (0x258e84)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.382977 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: gettimeofday({ 1657909302.383167 },0x0) = 0 (0x0)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_times(0x81a456d90) = 2461318 (0x258e86)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.393990 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.394041 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461319 (0x258e87)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: gettimeofday({ 1657909302.404924 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.405034 },0x0) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461320 (0x258e88)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.415450 },0x0) = 0 (0x0)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: gettimeofday({ 1657909302.415554 },0x0) = 0 (0x0)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_times(0x81a456d90) = 2461322 (0x258e8a)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.426023 },0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.426125 },0x0) = 0 (0x0)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: linux_times(0x81a456d90) = 2461323 (0x258e8b)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd240) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd200) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd2b0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1e0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1e0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd1a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd250) = 0 (0x0)
29790: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/zoom",4096) = 28 (0x1c)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcfb0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcfb0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcfb0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffcfb0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffcfb0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffcf70) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd020) = 0 (0x0)
29790: linux_mmap2(0x0,0x1000,0x7,0x22,0xffffffff,0x0) = 34469154816 (0x806859000)
29790: munmap(0x806859000,4096) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffc670,0x1) = 20 (0x14)
29790: linux_ftruncate(0x14,0x440000) = 0 (0x0)
29790: linux_mmap2(0x0,0x440000,0x3,0x2,0x14,0x0) = 35041312768 (0x828a00000)
29790: linux_mmap2(0x828a00000,0x1000,0x0,0x32,0x14,0x0) = 35041312768 (0x828a00000)
29790: linux_mmap2(0x828e3f000,0x1000,0x0,0x32,0x14,0x0) = 35045765120 (0x828e3f000)
29790: close(20) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffc670,0x1) = 20 (0x14)
29790: linux_ftruncate(0x14,0x200000) = 0 (0x0)
29790: linux_mmap2(0x0,0x200000,0x3,0x2,0x14,0x0) = 34827403264 (0x81be00000)
29790: linux_mmap2(0x81be00000,0x1000,0x0,0x32,0x14,0x0) = 34827403264 (0x81be00000)
29790: linux_mmap2(0x81bfff000,0x1000,0x0,0x32,0x14,0x0) = 34829496320 (0x81bfff000)
29790: close(20) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffc5b0,0x1) = 20 (0x14)
29790: linux_ftruncate(0x14,0x400000) = 0 (0x0)
29790: linux_mmap2(0x0,0x400000,0x0,0x4002,0x14,0x0) = 35047604224 (0x829000000)
29790: linux_madvise(0x829000000,0x400000,0x4) = 0 (0x0)
29790: close(20) = 0 (0x0)
29790: linux_mprotect(0x829000000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x829000000,0x10000,0x3) = 0 (0x0)
29790: linux_mprotect(0x829010000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x829010000,0x10000,0x3) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd510) = 0 (0x0)
29790: gettimeofday({ 1657909302.435912 },0x0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd3c0) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd200) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd240) = 0 (0x0)
29790: linux_readlink("/etc/localtime","/usr/share/zoneinfo/US/Eastern",256) = 30 (0x1e)
29790: linux_newstat("/etc/localtime",0x7fffffffd230) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7498f78,0x80000,0x0) = 20 (0x14)
29790: linux_newfstat(20,0x7fffffffd190) = 0 (0x0)
29790: linux_newfstat(20,0x7fffffffd200) = 0 (0x0)
29790: read(20,"TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0"...,16384) = 3536 (0xdd0)
29790: read(20,0x7621ec8,12848) = 0 (0x0)
29790: close(20) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd380) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.436968 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.437023 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461325 (0x258e8d)
29790: linux_mprotect(0x829020000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x829020000,0x10000,0x3) = 0 (0x0)
29790: linux_mprotect(0x829030000,0x10000,0x3) = 0 (0x0)
29790: linux_madvise(0x829030000,0x10000,0x3) = 0 (0x0)
29790: linux_brk(0x764a000) = 124035072 (0x764a000)
29790: linux_memfd_create(0x7fffffffc340,0x1) = 20 (0x14)
29790: linux_ftruncate(0x14,0x1000) = 0 (0x0)
29790: linux_mmap2(0x0,0x1000,0x3,0x2,0x14,0x0) = 34469154816 (0x806859000)
29790: close(20) = 0 (0x0)
29790: linux_memfd_create(0x7fffffffc370,0x1) = 20 (0x14)
29790: linux_ftruncate(0x14,0x1000) = 0 (0x0)
29790: linux_mmap2(0x0,0x1000,0x3,0x2,0x14,0x0) = 34469179392 (0x80685f000)
29790: close(20) = 0 (0x0)
29790: munmap(0x80685f000,4096) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 35051798528 (0x829400000)
29790: linux_mprotect(0x829401000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x829bffef0,0x829c009d0,0x829c009d0,0x829c00700) = 120477 (0x1d69d)
29790: <new thread 120477>
29790: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.438936 },0x829bffda0) = 0 (0x0)
29790: linux_mmap2(0x0,0x8000000,0x0,0x4022,0xffffffff,0x0) = 35165044736 (0x830000000)
29790: munmap(0x834000000,67108864) = 0 (0x0)
29790: linux_mprotect(0x830000000,0x21000,0x3) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcfc0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcfc0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcfc0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffcfc0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_pipe2(0x829bff690,0x0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffcfc0) ERR#-2 'No such file or directory'
29790: linux_pipe2(0x829bff698,0x80000) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffcf80) = 0 (0x0)
29790: linux_pipe2(0x829bff580,0x0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd030) = 0 (0x0)
29800: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29800 (0x7468)
29800: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: linux_sys_futex(0x808df0b80,0x81,0x1,0x0,0x808df0b80,0x0) = 1 (0x1)
29790: linux_sys_futex(0x808df0b80,0x80,0x2,0x0,0xf,0x76304e8) = 0 (0x0)
29800: linux_rt_sigaction(0x11,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: linux_sys_futex(0x808df0b80,0x81,0x1,0x0,0x7630550,0x76304e8) = 0 (0x0)
29800: linux_rt_sigaction(0x2,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: close(25) = 0 (0x0)
29800: linux_rt_sigaction(0xf,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29800: linux_rt_sigaction(0x1,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29800: linux_rt_sigaction(0xd,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1d0) = 0 (0x0)
29800: close(24) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1d0) = 0 (0x0)
29800: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29790: linux_fcntl(0x12,0x6,0x7fffffffd1d0) = 0 (0x0)
29800: dup2(24,0) = 0 (0x0)
29800: close(24) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd1d0) ERR#-2 'No such file or directory'
29800: dup2(21,1) = 1 (0x1)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29800: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29800: dup2(23,2) = 2 (0x2)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29800: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd1d0) ERR#-2 'No such file or directory'
29800: dup2(25,3) = 3 (0x3)
29790: linux_newfstat(18,0x7fffffffd190) = 0 (0x0)
29800: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29790: linux_lseek(18,43008,SEEK_SET) = 43008 (0xa800)
29800: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29790: read(18,"<\M-@\^A\M-`we\M-Z\M^E\M^X.|\M-i"...,1024) = 1024 (0x400)
29800: linux_getdents64(0x18,0x829bfe430,0x1000) = 672 (0x2a0)
29800: close(4) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd240) = 0 (0x0)
29800: close(5) = 0 (0x0)
29800: close(6) = 0 (0x0)
29790: linux_readlink("/proc/self/exe","/compat/ubuntu/opt/zoom/zoom",4096) = 28 (0x1c)
29800: close(7) = 0 (0x0)
29800: close(8) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffb6e0) = 0 (0x0)
29800: close(9) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data",0x7fffffffc730) = 0 (0x0)
29800: close(10) = 0 (0x0)
29800: close(11) = 0 (0x0)
29800: close(12) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffc590) = 0 (0x0)
29800: close(13) = 0 (0x0)
29790: linux_mkdir("/home/csgordon/.zoom/reports/",448) ERR#-17 'File exists'
29800: close(14) = 0 (0x0)
29800: close(15) = 0 (0x0)
29800: close(16) = 0 (0x0)
29800: close(17) = 0 (0x0)
29800: close(18) = 0 (0x0)
29800: close(19) = 0 (0x0)
29800: close(20) = 0 (0x0)
29790: linux_socket(0x10,0x80002,0x0) ERR#-97 'Address family not supported by protocol family'
29800: close(21) = 0 (0x0)
29800: close(22) = 0 (0x0)
29790: write(2,"Could not create AF_NETLINK sock"...,78) = 78 (0x4e)
29800: close(23) = 0 (0x0)
29790: linux_setsockopt(0xffffffff,0x1,0x7,0x7fffffffd00c,0x4) ERR#-9 'Bad file descriptor'
29800: close(25) = 0 (0x0)
29800: linux_getdents64(0x18,0x829bfe430,0x1000) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffce40) = 0 (0x0)
29800: close(24) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffce40) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffce40) = 0 (0x0)
29800: linux_execve("/home/csgordon/.local/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffce40) ERR#-2 'No such file or directory'
29800: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29800: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29800: linux_execve("/sbin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffce40) ERR#-2 'No such file or directory'
29800: linux_execve("/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffce00) = 0 (0x0)
29800: linux_execve("/usr/sbin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffceb0) = 0 (0x0)
29800: linux_execve("/usr/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29800: linux_execve("/usr/local/sbin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffce90) = 0 (0x0)
29800: linux_execve("/usr/local/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffce90) = 0 (0x0)
29800: linux_execve("~/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffce90) = 0 (0x0)
29800: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830002ef0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffce90) ERR#-2 'No such file or directory'
29800: write(3,"\^A\0\0\0",4) = 4 (0x4)
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29800: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffce90) ERR#-2 'No such file or directory'
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newfstat(18,0x7fffffffce50) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.447939 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.448003 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461326 (0x258e8e)
29790: linux_fcntl(0x12,0x6,0x7fffffffcf00) = 0 (0x0)
29790: linux_sys_futex(0x806b75f38,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x806b75f38,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffcea0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffcea0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffce60) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcf10) = 0 (0x0)
29790: linux_socket(0x10,0x80002,0x0) ERR#-97 'Address family not supported by protocol family'
29790: write(2,"Could not create AF_NETLINK sock"...,78) = 78 (0x4e)
29790: linux_setsockopt(0xffffffff,0x1,0x7,0x7fffffffceec,0x4) ERR#-9 'Bad file descriptor'
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 25 (0x19)
29790: linux_newfstat(25,0x7fffffffd080) = 0 (0x0)
29790: read(25,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29790: close(25) = 0 (0x0)
29790: linux_newuname(0x7fffffffd360) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca531,0x0,0x0) = 25 (0x19)
29790: linux_newfstat(25,0x7fffffffc670) = 0 (0x0)
29790: read(25,"cpu 1061103 86225 481418 1376632"...,4096) = 511 (0x1ff)
29790: close(25) = 0 (0x0)
29790: linux_pipe2(0x7fffffffc680,0x0) = 0 (0x0)
29790: linux_pipe2(0x7fffffffc688,0x80000) = 0 (0x0)
29790: linux_pipe2(0x7fffffffc570,0x0) = 0 (0x0)
29800: linux_exit_group(0x1)
29800: process exit, rval = 1
29801: <new process>
29790: linux_wait4(0x7468,0x0,0x0,0x0) = 29800 (0x7468)
29790: linux_clone(0x1200011,0x0,0x0,0x8073ee650,0x0) = 29801 (0x7469)
29801: linux_set_robust_list(0x8073ee660,0x18) = 0 (0x0)
29790: close(24) = 0 (0x0)
29790: close(20) = 0 (0x0)
29801: linux_rt_sigaction(0x11,0x7fffffffc290,0x7fffffffc330,0x8) = 0 (0x0)
29790: close(21) = 0 (0x0)
29801: linux_rt_sigaction(0x2,0x7fffffffc290,0x7fffffffc330,0x8) = 0 (0x0)
29790: close(22) = 0 (0x0)
29801: linux_rt_sigaction(0xf,0x7fffffffc290,0x7fffffffc330,0x8) = 0 (0x0)
29801: linux_rt_sigaction(0x1,0x7fffffffc290,0x7fffffffc330,0x8) = 0 (0x0)
29790: close(30) = 0 (0x0)
29790: close(23) = 0 (0x0)
29801: linux_rt_sigaction(0xd,0x7fffffffc290,0x7fffffffc330,0x8) = 0 (0x0)
29801: close(29) = 0 (0x0)
29790: linux_pipe2(0x829bff690,0x0) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 29 (0x1d)
29790: linux_pipe2(0x829bff698,0x80000) = 0 (0x0)
29801: dup2(29,0) = 0 (0x0)
29790: linux_pipe2(0x829bff580,0x0) = 0 (0x0)
29801: close(29) = 0 (0x0)
29801: dup2(26,1) = 1 (0x1)
29801: linux_fcntl(0x1a,0x2,0x1) = 0 (0x0)
29801: dup2(28,2) = 2 (0x2)
29801: linux_fcntl(0x1c,0x2,0x1) = 0 (0x0)
29801: dup2(30,3) = 3 (0x3)
29801: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 29 (0x1d)
29801: linux_getdents64(0x1d,0x7fffffffb420,0x1000) = 792 (0x318)
29801: close(4) = 0 (0x0)
29801: close(5) = 0 (0x0)
29801: close(6) = 0 (0x0)
29801: close(7) = 0 (0x0)
29801: close(8) = 0 (0x0)
29801: close(9) = 0 (0x0)
29801: close(10) = 0 (0x0)
29801: close(11) = 0 (0x0)
29801: close(12) = 0 (0x0)
29801: close(13) = 0 (0x0)
29801: close(14) = 0 (0x0)
29801: close(15) = 0 (0x0)
29801: close(16) = 0 (0x0)
29801: close(17) = 0 (0x0)
29801: close(18) = 0 (0x0)
29801: close(19) = 0 (0x0)
29801: close(20) = 0 (0x0)
29801: close(21) = 0 (0x0)
29801: close(22) = 0 (0x0)
29801: close(23) = 0 (0x0)
29801: close(24) = 0 (0x0)
29801: close(25) = 0 (0x0)
29801: close(26) = 0 (0x0)
29801: close(27) = 0 (0x0)
29801: close(28) = 0 (0x0)
29801: close(30) = 0 (0x0)
29801: linux_getdents64(0x1d,0x7fffffffb420,0x1000) = 0 (0x0)
29801: close(29) = 0 (0x0)
29801: linux_execve("/home/csgordon/.local/bin/lscpu",0x742b790,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_execve("/usr/home/csgordon/.opam/default/bin/lscpu",0x742b790,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_execve("/home/csgordon/.cargo/bin/lscpu",0x742b790,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_execve("/sbin/lscpu",0x742b790,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_execve("/bin/lscpu",0x742b790,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_execve("/usr/sbin/lscpu",0x742b790,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29802: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29802 (0x746a)
29802: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: close(30) = 0 (0x0)
29802: linux_rt_sigaction(0x11,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29802: linux_rt_sigaction(0x2,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29802: linux_rt_sigaction(0xf,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29802: linux_rt_sigaction(0x1,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29802: linux_rt_sigaction(0xd,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29802: close(24) = 0 (0x0)
29802: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29802: dup2(24,0) = 0 (0x0)
29802: close(24) = 0 (0x0)
29802: dup2(21,1) = 1 (0x1)
29802: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29802: dup2(23,2) = 2 (0x2)
29802: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29802: dup2(30,3) = 3 (0x3)
29802: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29802: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29802: linux_getdents64(0x18,0x829bfe430,0x1000) = 792 (0x318)
29802: close(4) = 0 (0x0)
29802: close(5) = 0 (0x0)
29802: close(6) = 0 (0x0)
29802: close(7) = 0 (0x0)
29802: close(8) = 0 (0x0)
29802: close(9) = 0 (0x0)
29802: close(10) = 0 (0x0)
29802: close(11) = 0 (0x0)
29802: close(12) = 0 (0x0)
29802: close(13) = 0 (0x0)
29802: close(14) = 0 (0x0)
29802: close(15) = 0 (0x0)
29802: close(16) = 0 (0x0)
29802: close(17) = 0 (0x0)
29802: close(18) = 0 (0x0)
29802: close(19) = 0 (0x0)
29802: close(20) = 0 (0x0)
29802: close(21) = 0 (0x0)
29802: close(22) = 0 (0x0)
29802: close(23) = 0 (0x0)
29802: close(25) = 0 (0x0)
29802: close(26) = 0 (0x0)
29802: close(27) = 0 (0x0)
29802: close(28) = 0 (0x0)
29802: close(29) = 0 (0x0)
29802: close(30) = 0 (0x0)
29802: linux_getdents64(0x18,0x829bfe430,0x1000) = 0 (0x0)
29801: linux_execve("/usr/bin/lscpu",0x742b790,0x7fffffffe5d0) EJUSTRETURN
29802: close(24) = 0 (0x0)
29790: read(29,0x7fffffffc580,8) = 0 (0x0)
29801: linux_brk(0x0) = 17018880 (0x103b000)
29802: linux_execve("/home/csgordon/.local/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_arch_prctl(0x3001,0x7fffffffe500) = 0 (0x0)
29802: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_newuname(0x7fffffffe100) = 0 (0x0)
29802: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29802: linux_execve("/sbin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29802: linux_execve("/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29802: linux_execve("/usr/sbin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29802: linux_execve("/usr/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd750) ERR#-2 'No such file or directory'
29802: linux_execve("/usr/local/sbin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29802: linux_execve("/usr/local/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29802: linux_execve("~/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29802: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004180,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd750) ERR#-2 'No such file or directory'
29802: write(3,"\^A\0\0\0",4) = 4 (0x4)
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29802: write(3,"\^B\0\0\0",4) = 4 (0x4)
29801: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29790: read(24,"\^A\0\0\0\^B\0\0\0",8) = 8 (0x8)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29801: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd750) ERR#-2 'No such file or directory'
29790: close(29) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29801: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29790: close(26) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29801: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd750) = 0 (0x0)
29790: gettimeofday({ 1657909302.460094 },0x0) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29790: close(28) = 0 (0x0)
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd750) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.460302 },0x0) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29790: linux_times(0x81a456d90) = 2461327 (0x258e8f)
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffd690,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd750) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x80105db80,0x80000,0x0) = 3 (0x3)
29801: linux_newfstat(3,0x7fffffffd700) = 0 (0x0)
29801: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376941568 (0x801068000)
29801: close(3) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x801067f50,0x80000,0x0) = 3 (0x3)
29801: read(3,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29801: linux_newfstat(3,0x7fffffffd750) = 0 (0x0)
29801: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34376978432 (0x801071000)
29801: linux_mmap2(0x0,0x3c3c8,0x1,0x802,0x3,0x0) = 34376986624 (0x801073000)
29801: linux_mmap2(0x80107a000,0x27000,0x5,0x812,0x3,0x7000) = 34377015296 (0x80107a000)
29801: linux_mmap2(0x8010a1000,0xc000,0x1,0x812,0x3,0x2e000) = 34377175040 (0x8010a1000)
29801: linux_mmap2(0x8010ad000,0x3000,0x3,0x812,0x3,0x39000) = 34377224192 (0x8010ad000)
29801: close(3) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29802: linux_exit_group(0x1)
29802: process exit, rval = 1
29790: linux_wait4(0x746a,0x0,0x0,0x0) = 29802 (0x746a)
29801: linux_openat(0xffffff9c,0x8010714f0,0x80000,0x0) = 3 (0x3)
29801: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: close(24) = 0 (0x0)
29801: linux_pread(0x3,0x7fffffffd4a0,0x310,0x40) = 784 (0x310)
29790: close(20) = 0 (0x0)
29801: linux_pread(0x3,0x7fffffffd470,0x20,0x350) = 32 (0x20)
29790: close(21) = 0 (0x0)
29801: linux_pread(0x3,0x7fffffffd420,0x44,0x370) = 68 (0x44)
29790: close(22) = 0 (0x0)
29801: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29790: close(23) = 0 (0x0)
29801: linux_pread(0x3,0x7fffffffd380,0x310,0x40) = 784 (0x310)
29790: linux_pipe2(0x829bff690,0x0) = 0 (0x0)
29801: linux_pread(0x3,0x7fffffffd060,0x20,0x350) = 32 (0x20)
29790: linux_pipe2(0x829bff698,0x80000) = 0 (0x0)
29801: linux_pread(0x3,0x7fffffffd040,0x44,0x370) = 68 (0x44)
29790: linux_pipe2(0x829bff580,0x0) = 0 (0x0)
29801: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377236480 (0x8010b0000)
29801: linux_mprotect(0x8010d5000,0x1c3000,0x0) = 0 (0x0)
29801: linux_mmap2(0x8010d5000,0x178000,0x5,0x812,0x3,0x25000) = 34377388032 (0x8010d5000)
29801: linux_mmap2(0x80124d000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378928128 (0x80124d000)
29801: linux_mmap2(0x801298000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379235328 (0x801298000)
29801: linux_mmap2(0x80129e000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379259904 (0x80129e000)
29801: close(3) = 0 (0x0)
29801: linux_mmap2(0x0,0x3000,0x3,0x22,0xffffffff,0x0) = 34379276288 (0x8012a2000)
29801: linux_arch_prctl(0x1002,0x8012a2740) = 0 (0x0)
29801: linux_mprotect(0x801298000,0x3000,0x1) = 0 (0x0)
29801: linux_mprotect(0x8010ad000,0x2000,0x1) = 0 (0x0)
29801: linux_mprotect(0x1038000,0x2000,0x1) = 0 (0x0)
29801: linux_mprotect(0x801065000,0x1000,0x1) = 0 (0x0)
29801: munmap(0x801068000,34098) = 0 (0x0)
29801: linux_brk(0x0) = 17018880 (0x103b000)
29801: linux_brk(0x105c000) = 17154048 (0x105c000)
29801: linux_openat(0xffffff9c,0x80126efd0,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x7fffffffdc60,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x103b590,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x103b7f0,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x103b640,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x103b730,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x103b8a0,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x103b6c0,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_newuname(0x7fffffffbf20) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x103db30,0x80000,0x0) = 3 (0x3)
29801: linux_openat(0x3,0x103354d,0x0,0x0) = 4 (0x4)
29801: linux_fcntl(0x4,0x3,0x0) = 0 (0x0)
29801: linux_newfstat(4,0x7fffffffbd10) = 0 (0x0)
29801: read(4,"processor\t: 0\nvendor_id\t: Gen"...,4096) = 4096 (0x1000)
29801: read(4,"tscp lm pni pclmulqdq dtes64 mon"...,4096) = 3161 (0xc59)
29801: read(4,0x103db70,4096) = 0 (0x0)
29803: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29803 (0x746b)
29801: close(4) = 0 (0x0)
29803: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: close(26) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x103cad0,0x80000,0x0) = 4 (0x4)
29803: linux_rt_sigaction(0x11,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29801: linux_openat(0x4,0x10336cb,0x80000,0x0) ERR#-2 'No such file or directory'
29803: linux_rt_sigaction(0x2,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29801: linux_sched_getaffinity(0x0,0x100,0x103db70) = 32 (0x20)
29803: linux_rt_sigaction(0xf,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29803: linux_rt_sigaction(0x1,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) = 5 (0x5)
29803: linux_rt_sigaction(0xd,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29801: linux_fcntl(0x5,0x3,0x80000) = 0 (0x0)
29803: close(24) = 0 (0x0)
29801: linux_newfstat(5,0x7fffffffb4d0) = 0 (0x0)
29803: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29801: read(5,"0-7\n",4096) = 4 (0x4)
29803: dup2(24,0) = 0 (0x0)
29801: close(5) = 0 (0x0)
29803: close(24) = 0 (0x0)
29803: dup2(21,1) = 1 (0x1)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) = 5 (0x5)
29803: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29801: linux_fcntl(0x5,0x3,0x80000) = 0 (0x0)
29803: dup2(23,2) = 2 (0x2)
29801: linux_newfstat(5,0x7fffffffb4d0) = 0 (0x0)
29803: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29801: read(5,"0-7\n",4096) = 4 (0x4)
29803: dup2(26,3) = 3 (0x3)
29801: close(5) = 0 (0x0)
29803: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) = 5 (0x5)
29801: linux_fcntl(0x5,0x3,0x80000) = 0 (0x0)
29803: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29801: linux_newfstat(5,0x7fffffffb4d0) = 0 (0x0)
29803: linux_getdents64(0x18,0x829bfe430,0x1000) = 720 (0x2d0)
29801: read(5,"0-7\n",4096) = 4 (0x4)
29803: close(4) = 0 (0x0)
29801: close(5) = 0 (0x0)
29803: close(5) = 0 (0x0)
29803: close(6) = 0 (0x0)
29801: linux_openat(0x4,0x10336ee,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(7) = 0 (0x0)
29801: linux_openat(0x4,0x10336fa,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(8) = 0 (0x0)
29801: linux_openat(0x3,0x10331d5,0x0,0x0) ERR#-2 'No such file or directory'
29803: close(9) = 0 (0x0)
29801: linux_faccessat(0x4,0x103370d,0x0) ERR#-2 'No such file or directory'
29803: close(10) = 0 (0x0)
29803: close(11) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(12) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(13) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(14) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(15) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(16) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(17) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(18) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(19) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(20) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(21) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(22) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(23) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(25) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(26) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: close(27) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_getdents64(0x18,0x829bfe430,0x1000) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: close(24) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/home/csgordon/.local/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/sbin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/usr/sbin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/usr/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/usr/local/sbin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/usr/local/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("~/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004210,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29803: write(3,"\^A\0\0\0",4) = 4 (0x4)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29803: write(3,"\^B\0\0\0",4) = 4 (0x4)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x71123c0,0x189,0x0,0x81ac57dc0,0x0,0xffffffff) ERR#-110 'Operation timed out'
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29801: linux_faccessat(0x4,0x103ba40,0x0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.471122 },0x0) = 0 (0x0)
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x4,0x103ba40,0x80000,0x0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.471218 },0x0) = 0 (0x0)
29790: linux_sys_futex(0x7112370,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29801: linux_openat(0xffffff9c,0x103dd10,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_times(0x81a456d90) = 2461329 (0x258e91)
29801: linux_openat(0x3,0x1033415,0x0,0x0) = 5 (0x5)
29790: gettimeofday({ 1657909302.471495 },0x0) = 0 (0x0)
29801: linux_fcntl(0x5,0x3,0x0) = 0 (0x0)
29801: linux_newfstat(5,0x7fffffffbed0) = 0 (0x0)
29801: read(5,"3.17.0\n",4096) = 7 (0x7)
29801: close(5) = 0 (0x0)
29801: linux_newstat("/sys/firmware/dmi/tables/DMI",0x7fffffffbfa0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x1034ba2,0x0,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x1034bbb,0x0,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0xffffff9c,0x1034b99,0x0,0x0) ERR#-13 'Permission denied'
29801: linux_getuid() = 1002 (0x3ea)
29801: linux_faccessat(0x3,0x1033475,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x3,0x10330bb,0x0,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x3,0x1033da0,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x3,0x10330bb,0x0,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x3,0x10334ba,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x3,0x10330d2,0x0,0x0) = 5 (0x5)
29801: linux_fcntl(0x5,0x3,0x0) = 0 (0x0)
29801: linux_newfstat(5,0x7fffffffb6f0) = 0 (0x0)
29801: read(5,0x103ee60,4096) ERR#-21 'Is a directory'
29801: close(5) = 0 (0x0)
29803: linux_exit_group(0x1)
29803: process exit, rval = 1
29790: linux_wait4(0x746b,0x0,0x0,0x0) = 29803 (0x746b)
29801: linux_openat(0x3,0x10330d2,0x0,0x0) = 5 (0x5)
29801: linux_fcntl(0x5,0x3,0x0) = 0 (0x0)
29790: close(24) = 0 (0x0)
29801: linux_newfstat(5,0x7fffffffb6f0) = 0 (0x0)
29790: close(20) = 0 (0x0)
29801: read(5,0x103ee60,4096) ERR#-21 'Is a directory'
29790: close(21) = 0 (0x0)
29801: close(5) = 0 (0x0)
29790: close(22) = 0 (0x0)
29801: linux_openat(0x3,0x10330d2,0x0,0x0) = 5 (0x5)
29790: close(23) = 0 (0x0)
29801: linux_fcntl(0x5,0x3,0x0) = 0 (0x0)
29801: linux_newfstat(5,0x7fffffffb6f0) = 0 (0x0)
29790: linux_pipe2(0x829bff690,0x0) = 0 (0x0)
29801: read(5,0x103ee60,4096) ERR#-21 'Is a directory'
29790: linux_pipe2(0x829bff698,0x80000) = 0 (0x0)
29801: close(5) = 0 (0x0)
29790: linux_pipe2(0x829bff580,0x0) = 0 (0x0)
29801: linux_openat(0x3,0x10331d5,0x0,0x0) ERR#-2 'No such file or directory'
29801: linux_faccessat(0x3,0x10334f3,0x0) ERR#-2 'No such file or directory'
29801: linux_openat(0x3,0x1033513,0x0,0x0) = 5 (0x5)
29801: linux_fcntl(0x5,0x3,0x0) = 0 (0x0)
29801: linux_newfstat(5,0x7fffffffbed0) = 0 (0x0)
29801: read(5,"Name:\tlscpu\nState:\tR (running"...,4096) = 469 (0x1d5)
29801: read(5,0x103ee60,4096) = 0 (0x0)
29801: close(5) = 0 (0x0)
29801: linux_ioctl(0x1,0x5413,0x7fffffffc010) ERR#-25 'Inappropriate ioctl for device'
29801: linux_ioctl(0x1,0x5401,0x7fffffffbef0) ERR#-25 'Inappropriate ioctl for device'
29801: linux_newfstat(1,0x7fffffffbcd0) = 0 (0x0)
29801: close(4) = 0 (0x0)
29801: close(3) = 0 (0x0)
29801: write(1,"Architecture: x86_64\nCPU"...,917) = 917 (0x395)
29801: close(1) = 0 (0x0)
29801: close(2) = 0 (0x0)
29801: linux_exit_group(0x0)
29801: process exit, rval = 0
29804: <new process>
29804: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29804 (0x746c)
29790: poll({ 25/POLLIN|POLLERR|POLLHUP 27/POLLIN|POLLERR|POLLHUP },2,-1) = 1 (0x1)
29790: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29801 uid=1002 status=0
29804: linux_rt_sigaction(0x11,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29804: linux_rt_sigaction(0x2,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: read(25,"Architecture: x86_64\nCPU"...,4096) = 917 (0x395)
29804: linux_rt_sigaction(0xf,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: poll({ 25/POLLIN|POLLERR|POLLHUP 27/POLLIN|POLLERR|POLLHUP },2,-1) = 2 (0x2)
29804: linux_rt_sigaction(0x1,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: read(25,0x7fffffffb720,4096) = 0 (0x0)
29804: linux_rt_sigaction(0xd,0x829bff2a0,0x829bff340,0x8) = 0 (0x0)
29790: close(25) = 0 (0x0)
29804: close(24) = 0 (0x0)
29790: read(27,0x7fffffffb720,4096) = 0 (0x0)
29804: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29804: dup2(24,0) = 0 (0x0)
29790: close(27) = 0 (0x0)
29790: close(26) = 0 (0x0)
29804: close(24) = 0 (0x0)
29804: dup2(21,1) = 1 (0x1)
29790: linux_wait4(0x7469,0x7fffffffc77c,0x0,0x0) = 29801 (0x7469)
29804: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29804: dup2(23,2) = 2 (0x2)
29804: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca559,0x0,0x0) = 25 (0x19)
29804: dup2(26,3) = 3 (0x3)
29790: linux_newfstat(25,0x7fffffffcb00) = 0 (0x0)
29804: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29804: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29790: read(25,"processor\t: 0\nvendor_id\t: Gen"...,4096) = 4096 (0x1000)
29804: linux_getdents64(0x18,0x829bfe430,0x1000) = 720 (0x2d0)
29790: close(25) = 0 (0x0)
29804: close(4) = 0 (0x0)
29804: close(5) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca5b5,0x0,0x0) = 25 (0x19)
29804: close(6) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffba70) = 0 (0x0)
29804: close(7) = 0 (0x0)
29790: read(25,"MemTotal: 16461248 kB\nMemFree:"...,4096) = 138 (0x8a)
29804: close(8) = 0 (0x0)
29790: close(25) = 0 (0x0)
29804: close(9) = 0 (0x0)
29790: linux_sys_futex(0x711b990,0x189,0x0,0x81b458d40,0x0,0xffffffff) ERR#-110 'Operation timed out'
29804: close(10) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca531,0x0,0x0) = 25 (0x19)
29804: close(11) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffcd20) = 0 (0x0)
29804: close(12) = 0 (0x0)
29804: close(13) = 0 (0x0)
29790: linux_sys_futex(0x711b940,0x81,0x1,0x0,0x0,0x2) = 0 (0x0)
29790: linux_lseek(25,0,SEEK_SET) = 0 (0x0)
29804: close(14) = 0 (0x0)
29804: close(15) = 0 (0x0)
29790: read(25,"cpu 1061103 86225 481423 1376634"...,4096) = 511 (0x1ff)
29804: close(16) = 0 (0x0)
29790: gettimeofday({ 1657909302.478343 },0x0) = 0 (0x0)
29804: close(17) = 0 (0x0)
29804: close(18) = 0 (0x0)
29790: close(25) = 0 (0x0)
29804: close(19) = 0 (0x0)
29804: close(20) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca500,0x0,0x0) = 25 (0x19)
29804: close(21) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffc680) = 0 (0x0)
29804: close(22) = 0 (0x0)
29790: read(25,"29790 (zoom.im.index) R 29786 29"...,4096) = 166 (0xa6)
29804: close(23) = 0 (0x0)
29790: close(25) = 0 (0x0)
29804: close(25) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca5b5,0x0,0x0) = 25 (0x19)
29804: close(26) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffba70) = 0 (0x0)
29804: close(27) = 0 (0x0)
29790: read(25,"MemTotal: 16461248 kB\nMemFree:"...,4096) = 138 (0x8a)
29804: linux_getdents64(0x18,0x829bfe430,0x1000) = 0 (0x0)
29790: close(25) = 0 (0x0)
29804: close(24) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x57ca5de,0x0,0x0) = 25 (0x19)
29790: linux_newfstat(25,0x7fffffffc330) = 0 (0x0)
29804: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: read(25,"Name:\tzoom.im.index\nState:\tR "...,4096) = 477 (0x1dd)
29804: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: close(25) = 0 (0x0)
29804: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29804: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: write(2,"[CZPClientLogMgr::LogClientEnvir"...,225) = 225 (0xe1)
29804: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.479731 },0x7fffffffd6e0) = 0 (0x0)
29804: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29804: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffce30) = 0 (0x0)
29804: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffce30) = 0 (0x0)
29804: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffce30) = 0 (0x0)
29804: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffce30) ERR#-2 'No such file or directory'
29804: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29804: write(3,"\^A\0\0\0",4) = 4 (0x4)
29804: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffce30) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffcdf0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd060) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd060) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd060) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd060) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd060) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd020) = 0 (0x0)
29790: linux_lseek(18,10240,SEEK_SET) = 10240 (0x2800)
29790: read(18,":\M-b\M-0=\M^I`\^PX\M-,\^A\M-e"...,1024) = 1024 (0x400)
29790: linux_fcntl(0x12,0x6,0x7fffffffd0d0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd060) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd060) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd060) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd060) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: read(18,"3\^A\M-Z\M^Aj\M^V\M-v\^AEV\M-fpb"...,16) = 16 (0x10)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd060) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd020) = 0 (0x0)
29790: gettimeofday({ 1657909302.482139 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.482236 },0x0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd0f0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461330 (0x258e92)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db",0x7fffffffcf80) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db",0x7fffffffcc30) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x715613d,0xa0042,0x180) = 25 (0x19)
29790: linux_newfstat(25,0x7fffffffcb20) = 0 (0x0)
29790: geteuid() = 1002 (0x3ea)
29790: linux_lseek(25,0,SEEK_SET) = 0 (0x0)
29790: write(25,"\0\0\0\0\0\0\0\0\0\0\0\0\^Q,H"...,512) = 512 (0x200)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29804: linux_exit_group(0x1)
29804: process exit, rval = 1
29790: linux_wait4(0x746c,0x0,0x0,0x0) = 29804 (0x746c)
29790: close(24) = 0 (0x0)
29790: close(20) = 0 (0x0)
29790: linux_lseek(25,512,SEEK_SET) = 512 (0x200)
29790: write(25,"\0\0\0\v",4) = 4 (0x4)
29790: close(21) = 0 (0x0)
29790: linux_lseek(25,516,SEEK_SET) = 516 (0x204)
29790: write(25,"]GO\M-`\^W\M-]?\M-q\M-CQ\^Cc\^?"...,1024) = 1024 (0x400)
29790: close(22) = 0 (0x0)
29790: linux_lseek(25,1540,SEEK_SET) = 1540 (0x604)
29790: write(25,"\^Q,K\M-s",4) = 4 (0x4)
29790: close(23) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd100) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd100) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_getpid() = 29790 (0x745e)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29790: linux_pipe2(0x829bff6d0,0x0) = 0 (0x0)
29790: linux_lseek(25,1544,SEEK_SET) = 1544 (0x608)
29790: write(25,"\0\0\0\^A",4) = 4 (0x4)
29790: linux_pipe2(0x829bff6d8,0x80000) = 0 (0x0)
29790: linux_lseek(25,1548,SEEK_SET) = 1548 (0x60c)
29790: write(25,"\M-D\M^^N\M-%\M^M\M-'e,\M-g\M^T%"...,1024) = 1024 (0x400)
29790: linux_pipe2(0x829bff5c0,0x0) = 0 (0x0)
29790: linux_lseek(25,2572,SEEK_SET) = 2572 (0xa0c)
29790: write(25,"\^Q,J\M-s",4) = 4 (0x4)
29805: <new process>
29790: linux_lseek(25,3072,SEEK_SET) = 3072 (0xc00)
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29805 (0x746d)
29805: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: read(25,0x7fffffffd080,8) = 0 (0x0)
29805: linux_rt_sigaction(0x11,0x829bff2e0,0x829bff380,0x8) = 0 (0x0)
29790: linux_lseek(25,0,SEEK_SET) = 0 (0x0)
29805: linux_rt_sigaction(0x2,0x829bff2e0,0x829bff380,0x8) = 0 (0x0)
29805: linux_rt_sigaction(0xf,0x829bff2e0,0x829bff380,0x8) = 0 (0x0)
29790: write(25,"\M-Y\M-U\^E\M-y \M-!c\M-W\0\0\0"...,12) = 12 (0xc)
29805: linux_rt_sigaction(0x1,0x829bff2e0,0x829bff380,0x8) = 0 (0x0)
29805: linux_rt_sigaction(0xd,0x829bff2e0,0x829bff380,0x8) = 0 (0x0)
29805: close(24) = 0 (0x0)
29805: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29805: dup2(24,0) = 0 (0x0)
29805: close(24) = 0 (0x0)
29805: dup2(21,1) = 1 (0x1)
29805: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29805: dup2(23,2) = 2 (0x2)
29805: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29805: dup2(26,3) = 3 (0x3)
29805: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29805: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29805: linux_getdents64(0x18,0x829bfe470,0x1000) = 696 (0x2b8)
29805: close(4) = 0 (0x0)
29805: close(5) = 0 (0x0)
29805: close(6) = 0 (0x0)
29805: close(7) = 0 (0x0)
29790: fsync(25) = 0 (0x0)
29805: close(8) = 0 (0x0)
29790: close(26) = 0 (0x0)
29805: close(9) = 0 (0x0)
29805: close(10) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffce30,0x80000,0x0) = 26 (0x1a)
29805: close(11) = 0 (0x0)
29790: fsync(26) = 0 (0x0)
29805: close(12) = 0 (0x0)
29790: close(26) = 0 (0x0)
29805: close(13) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29805: close(14) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29805: close(15) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29805: close(16) = 0 (0x0)
29805: close(17) = 0 (0x0)
29790: linux_lseek(18,0,SEEK_SET) = 0 (0x0)
29805: close(18) = 0 (0x0)
29805: close(19) = 0 (0x0)
29790: write(18,"\M-D\M^^N\M-%\M^M\M-'e,\M-g\M^T%"...,1024) = 1024 (0x400)
29805: close(20) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29805: close(21) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29805: close(22) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29805: close(23) = 0 (0x0)
29790: linux_lseek(18,10240,SEEK_SET) = 10240 (0x2800)
29805: close(25) = 0 (0x0)
29805: close(26) = 0 (0x0)
29790: write(18,"\M-}P\M-M\M-Z\M-w\^P\M-S\M-5\M-#"...,1024) = 1024 (0x400)
29805: linux_getdents64(0x18,0x829bfe470,0x1000) = 0 (0x0)
29805: close(24) = 0 (0x0)
29805: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29805: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: fsync(18) = 0 (0x0)
29805: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: close(25) = 0 (0x0)
29805: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_unlink(0x715613d) = 0 (0x0)
29805: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x12,0x6,0x7fffffffd0b0) = 0 (0x0)
29805: write(3,"\^A\0\0\0",4) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29805: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_fcntl(0x12,0x6,0x7fffffffd0b0) = 0 (0x0)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_fcntl(0x12,0x6,0x7fffffffd0d0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffcf90) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffcf90) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffcf90) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-journal",0x7fffffffcf90) ERR#-2 'No such file or directory'
29790: linux_lseek(19,24,SEEK_SET) = 24 (0x18)
29790: read(19,"\M-zo3\M-69\^O\M-Y\^C\M^I5\M-x"...,16) = 16 (0x10)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-wal",0x7fffffffcf90) ERR#-2 'No such file or directory'
29790: linux_newfstat(19,0x7fffffffcf50) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffd000) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcea0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffcea0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"\M^GQ\M-]T\^Df\M-`\M^PVP\^_\M-c"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffcea0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffce60) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcf10) = 0 (0x0)
29790: linux_mmap2(0x0,0x801000,0x0,0x20022,0xffffffff,0x0) = 35060191232 (0x829c01000)
29790: linux_mprotect(0x829c02000,0x800000,0x3) = 0 (0x0)
29790: linux_clone(0x3d0f00,0x82a400ef0,0x82a4019d0,0x82a4019d0,0x82a401700) = 120478 (0x1d69e)
29790: <new thread 120478>
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_set_robust_list(0x82a4019e0,0x18) = 0 (0x0)
29790: gettimeofday({ 1657909302.493121 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.493186 },0x0) = 0 (0x0)
29790: linux_mmap2(0x834000000,0x4000000,0x0,0x4022,0xffffffff,0x0) = 35232153600 (0x834000000)
29790: linux_times(0x81a456d90) = 2461332 (0x258e94)
29790: linux_mprotect(0x834000000,0x21000,0x3) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcee0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcee0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcee0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffcee0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"\M^GQ\M-]T\^Df\M-`\M^PVP\^_\M-c"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffcee0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffcea0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffcf50) = 0 (0x0)
29805: linux_exit_group(0x1)
29805: process exit, rval = 1
29790: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29805 uid=1002 status=1
29790: linux_wait4(0x746d,0x0,0x0,0x0) = 29805 (0x746d)
29790: close(24) = 0 (0x0)
29790: close(20) = 0 (0x0)
29790: close(21) = 0 (0x0)
29790: close(22) = 0 (0x0)
29790: close(23) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffcfa0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffcfa0) = 0 (0x0)
29790: linux_fcntl(0x13,0x6,0x7fffffffcfa0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-journal",0x7fffffffcfa0) ERR#-2 'No such file or directory'
29790: linux_pipe2(0x829bff6c0,0x0) = 0 (0x0)
29790: linux_lseek(19,24,SEEK_SET) = 24 (0x18)
29790: linux_pipe2(0x829bff6c8,0x80000) = 0 (0x0)
29790: read(19,"\M-zo3\M-69\^O\M-Y\^C\M^I5\M-x"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.tmp.enc.db-wal",0x7fffffffcfa0) ERR#-2 'No such file or directory'
29790: linux_pipe2(0x829bff5b0,0x0) = 0 (0x0)
29790: linux_newfstat(19,0x7fffffffcf60) = 0 (0x0)
29806: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29806 (0x746e)
29790: linux_fcntl(0x13,0x6,0x7fffffffd010) = 0 (0x0)
29806: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: linux_time(0x0) = 1657909302 (0x62d1b036)
29806: linux_rt_sigaction(0x11,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: close(25) = 0 (0x0)
29806: linux_rt_sigaction(0x2,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29806: linux_rt_sigaction(0xf,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: gettimeofday({ 1657909302.498068 },0x7fffffffd5d0) = 0 (0x0)
29806: linux_rt_sigaction(0x1,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29806: linux_rt_sigaction(0xd,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29806: close(24) = 0 (0x0)
29806: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29806: dup2(24,0) = 0 (0x0)
29806: close(24) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffc870) = 0 (0x0)
29806: dup2(21,1) = 1 (0x1)
29806: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7644e18,0x90800,0x0) = 25 (0x19)
29806: dup2(23,2) = 2 (0x2)
29790: linux_newfstat(25,0x7fffffffd8d0) = 0 (0x0)
29806: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: linux_brk(0x766e000) = 124182528 (0x766e000)
29806: dup2(25,3) = 3 (0x3)
29806: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29790: linux_getdents64(0x19,0x76454c0,0x8000) = 96 (0x60)
29790: linux_getdents64(0x19,0x76454c0,0x8000) = 0 (0x0)
29806: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29790: close(25) = 0 (0x0)
29806: linux_getdents64(0x18,0x829bfe460,0x1000) = 672 (0x2a0)
29806: close(4) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom",0x7fffffffc940) = 0 (0x0)
29806: close(5) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7644e18,0x90800,0x0) = 25 (0x19)
29806: close(6) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffd9a0) = 0 (0x0)
29806: close(7) = 0 (0x0)
29790: linux_getdents64(0x19,0x76454c0,0x8000) = 48 (0x30)
29806: close(8) = 0 (0x0)
29790: linux_getdents64(0x19,0x76454c0,0x8000) = 0 (0x0)
29806: close(9) = 0 (0x0)
29790: close(25) = 0 (0x0)
29806: close(10) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffda40) = 0 (0x0)
29806: close(11) = 0 (0x0)
29806: close(12) = 0 (0x0)
29806: close(13) = 0 (0x0)
29790: write(2,"Linux Client Version is 5.9.6 (2"...,37) = 37 (0x25)
29806: close(14) = 0 (0x0)
29806: close(15) = 0 (0x0)
29790: write(2,"QSG_RENDER_LOOP is \n",20) = 20 (0x14)
29806: close(16) = 0 (0x0)
29806: close(17) = 0 (0x0)
29790: write(2,"XDG_CURRENT_DESKTOP = MATE; GD"...,74) = 74 (0x4a)
29806: close(18) = 0 (0x0)
29806: close(19) = 0 (0x0)
29790: linux_pipe2(0x7644248,0x80000) = 0 (0x0)
29806: close(20) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29806: close(21) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29806: close(22) = 0 (0x0)
29790: linux_pipe2(0x7644270,0x80000) = 0 (0x0)
29806: close(23) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29806: close(25) = 0 (0x0)
29790: linux_pipe2(0x7644298,0x80000) = 0 (0x0)
29806: linux_getdents64(0x18,0x829bfe460,0x1000) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29806: close(24) = 0 (0x0)
29790: linux_pipe2(0x76442c0,0x80000) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29806: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_getcwd(0x7fffffffc8a0,0x1000) = 24 (0x18)
29806: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.local/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/usr/home/csgordon/.opam/default/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/home/csgordon/.cargo/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/sbin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/usr/sbin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/usr/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/usr/local/sbin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/usr/local/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/~/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29806: write(3,"\^A\0\0\0",4) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29806: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_newstat("/home/csgordon/.local/share/coursier/bin/lspci",0x7fffffffd840) ERR#-2 'No such file or directory'
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_rt_sigaction(0x11,0x7fffffffd670,0x7fffffffd710,0x8) = 0 (0x0)
29790: linux_rt_sigaction(0xd,0x7fffffffd670,0x0,0x8) = 0 (0x0)
29790: linux_sys_futex(0x80af977a4,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29790: linux_pipe2(0x7fffffffd980,0x80000) = 0 (0x0)
29790: linux_eventfd2(0x0,0x80000) = 35 (0x23)
29807: <new process>
29806: linux_exit_group(0x1)
29806: process exit, rval = 1
29807: linux_set_robust_list(0x8073ee660,0x18) = 0 (0x0)
29790: linux_clone(0x1200011,0x0,0x0,0x8073ee650,0x0) = 29807 (0x746f)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_wait4(0x746e,0x0,0x0,0x0) = 29806 (0x746e)
29790: gettimeofday({ 1657909302.505405 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.505494 },0x0) = 0 (0x0)
29790: close(24) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461333 (0x258e95)
29790: close(20) = 0 (0x0)
29790: close(21) = 0 (0x0)
29790: close(22) = 0 (0x0)
29790: close(23) = 0 (0x0)
29807: read(35,"*\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: write(35,"*\0\0\0\0\0\0\0",8) = 8 (0x8)
29807: close(35) = 0 (0x0)
29790: close(35) = 0 (0x0)
29807: close(33) = 0 (0x0)
29807: close(34) = 0 (0x0)
29790: close(32) = 0 (0x0)
29790: linux_pipe2(0x829bff6c0,0x0) = 0 (0x0)
29807: linux_rt_sigaction(0xd,0x7fffffffd6f0,0x7fffffffd790,0x8) = 0 (0x0)
29790: close(25) = 0 (0x0)
29807: linux_dup3(0x19,0x0,0x0) = 0 (0x0)
29807: linux_dup3(0x1c,0x1,0x0) = 1 (0x1)
29790: linux_pipe2(0x829bff6c8,0x80000) = 0 (0x0)
29807: linux_dup3(0x1e,0x2,0x0) = 2 (0x2)
29790: linux_fcntl(0x1a,0x3,0x748ba10) = 2 (0x2)
29807: close(31) = 0 (0x0)
29790: linux_fcntl(0x1a,0x4,0x802) = 0 (0x0)
29807: linux_execve("lspci",0x742d7e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: close(28) = 0 (0x0)
29807: write(32,"\^B\0\0\0execvp\0\0",12) = 12 (0xc)
29790: linux_fcntl(0x1b,0x3,0x802) = 2 (0x2)
29790: linux_fcntl(0x1b,0x4,0x802) = 0 (0x0)
29790: close(30) = 0 (0x0)
29790: linux_fcntl(0x1d,0x3,0x802) = 2 (0x2)
29790: linux_pipe2(0x829bff5b0,0x0) = 0 (0x0)
29790: linux_fcntl(0x1d,0x4,0x802) = 0 (0x0)
29808: <new process>
29808: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29807: linux_exit_group(0xffffffff)
29807: process exit, rval = 4294967295
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29808 (0x7470)
29808: linux_rt_sigaction(0x11,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29807 uid=1002 status=-1
29808: linux_rt_sigaction(0x2,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29808: linux_rt_sigaction(0xf,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: linux_waitid(0x0,0x0,0x7fffffffd5c0,0x1000005,0x0) = 0 (0x0)
29808: linux_rt_sigaction(0x1,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29808: linux_rt_sigaction(0xd,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: linux_wait4(0x746f,0x7fffffffd5bc,0x1,0x7fffffffd648) = 29807 (0x746f)
29808: close(24) = 0 (0x0)
29790: close(25) = 0 (0x0)
29808: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29790: write(34,"\^A\0\0\0\M^?\0\0\0\0\0\0\0\0\0"...,152) = 152 (0x98)
29808: dup2(24,0) = 0 (0x0)
29790: close(34) = 0 (0x0)
29808: close(24) = 0 (0x0)
29790: linux_waitid(0x0,0x0,0x7fffffffd5c0,0x1000005,0x0) = 0 (0x0)
29808: dup2(21,1) = 1 (0x1)
29790: linux_rt_sigreturn(0x0) EJUSTRETURN
29808: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29808: dup2(23,2) = 2 (0x2)
29790: linux_clock_gettime(0x1,0x7fffffffdbc0) = 0 (0x0)
29808: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x7fffffffdb30) = 0 (0x0)
29808: dup2(25,3) = 3 (0x3)
29790: linux_ppoll(0x7fffffffdba0,0x1,0x7fffffffdb20,0x0,0x8) = 1 (0x1)
29808: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29808: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29790: read(31,"\^B\0\0\0execvp\0\0",12) = 12 (0xc)
29808: linux_getdents64(0x18,0x829bfe460,0x1000) = 816 (0x330)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29808: close(4) = 0 (0x0)
29790: close(31) = 0 (0x0)
29808: close(5) = 0 (0x0)
29790: read(33,"\^A\0\0\0\M^?\0\0\0\0\0\0\0\0\0"...,152) = 152 (0x98)
29808: close(6) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29808: close(7) = 0 (0x0)
29790: close(33) = 0 (0x0)
29808: close(8) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29808: close(9) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29808: close(10) = 0 (0x0)
29790: close(27) = 0 (0x0)
29808: close(11) = 0 (0x0)
29790: close(29) = 0 (0x0)
29808: close(12) = 0 (0x0)
29790: close(26) = 0 (0x0)
29808: close(13) = 0 (0x0)
29808: close(14) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 25 (0x19)
29808: close(15) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffd790) = 0 (0x0)
29808: close(16) = 0 (0x0)
29790: read(25,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29808: close(17) = 0 (0x0)
29790: close(25) = 0 (0x0)
29808: close(18) = 0 (0x0)
29808: close(19) = 0 (0x0)
29790: write(2,"Graphics Card Info:: \n",22) = 22 (0x16)
29808: close(20) = 0 (0x0)
29790: linux_newuname(0x7fffffffda70) = 0 (0x0)
29808: close(21) = 0 (0x0)
29808: close(22) = 0 (0x0)
29790: write(2,"Zoom package arch is 64bit, runi"...,53) = 53 (0x35)
29808: close(23) = 0 (0x0)
29808: close(25) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 25 (0x19)
29808: close(26) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffd8f0) = 0 (0x0)
29808: close(27) = 0 (0x0)
29790: read(25,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29808: close(29) = 0 (0x0)
29790: close(25) = 0 (0x0)
29808: close(31) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 25 (0x19)
29808: close(33) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffd8f0) = 0 (0x0)
29808: close(34) = 0 (0x0)
29790: read(25,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29808: linux_getdents64(0x18,0x829bfe460,0x1000) = 0 (0x0)
29790: close(25) = 0 (0x0)
29808: close(24) = 0 (0x0)
29790: linux_newfstat(1,0x7fffffffd5a0) = 0 (0x0)
29808: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29808: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29808: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29808: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: writev(3,[{"\^P\0\a\0\^S\0\0\0_NET_SYSTEM_TR"...,28}],1) = 28 (0x1c)
29808: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29808: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29808: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x7fffffffdc78,0x81,0x1,0x0,0x7fffffffdc50,0x7fffffffdc70) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffdc78,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29808: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29808: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffdc70) = 0 (0x0)
29808: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29808: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29808: write(3,"\^A\0\0\0",4) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29808: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: writev(3,[{"\^W\0\^B\0\^V\^B\0\0",8}],1) = 8 (0x8)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29790: linux_sys_futex(0x7fffffffdcf8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffdcf8,0x81,0x1,0x0,0x7fffffffdcd0,0x7fffffffdcf0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: gettimeofday({ 1657909302.516055 },0x0) = 0 (0x0)
29790: gettimeofday({ 1657909302.516141 },0x0) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461335 (0x258e97)
29790: linux_fcntl(0x12,0x6,0x7fffffffd5a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd5a0) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd5a0) = 0 (0x0)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-journal",0x7fffffffd5a0) ERR#-2 'No such file or directory'
29790: linux_lseek(18,24,SEEK_SET) = 24 (0x18)
29790: read(18,"\M^GQ\M-]T\^Df\M-`\M^PVP\^_\M-c"...,16) = 16 (0x10)
29790: linux_newstat("/home/csgordon/.zoom/data/zoomus.enc.db-wal",0x7fffffffd5a0) ERR#-2 'No such file or directory'
29790: linux_newfstat(18,0x7fffffffd560) = 0 (0x0)
29790: linux_fcntl(0x12,0x6,0x7fffffffd610) = 0 (0x0)
29790: linux_pipe2(0x7fffffffdc18,0x80000) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffdaf0) = 0 (0x0)
29790: linux_prlimit64(0x0,0x7,0x0,0x7fffffffdaf0) = 0 (0x0)
29790: linux_mmap2(0x0,0x9000,0x3,0x20022,0xffffffff,0x0) = 34469179392 (0x80685f000)
29790: linux_rt_sigprocmask(0x0,0x808dba3e0,0x7fffffffd920,0x8) = 0 (0x0)
29809: <new process>
29790: linux_clone(0x4111,0x806867ff0,0x8073ee380,0x808dbc5aa,0x0) = 29809 (0x7471)
29809: linux_rt_sigprocmask(0x0,0x0,0x806867ea0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x4,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x4,0x806867d30,0x0,0x8) = 0 (0x0)
29808: linux_exit_group(0x1)
29808: process exit, rval = 1
29809: linux_rt_sigaction(0x5,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x5,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x6,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x6,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x7,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x7,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x8,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x8,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xa,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xa,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xb,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xb,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xc,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xc,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xd,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xe,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xe,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xf,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0xf,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x11,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x11,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x12,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x12,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x14,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x14,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x15,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x15,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x16,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x16,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x17,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x17,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x18,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x18,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x19,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x19,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1a,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1a,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1b,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1b,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1c,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1c,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1d,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1d,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1e,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1e,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1f,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x1f,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x20,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x21,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x22,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x22,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x23,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x23,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x24,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x24,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x25,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x25,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x26,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x26,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x27,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x27,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x28,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x28,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x29,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x29,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2a,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2a,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2b,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2b,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2c,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2c,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2d,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2d,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2e,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2e,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2f,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x2f,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x30,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x30,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x31,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x31,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x32,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x32,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x33,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x33,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x34,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x34,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x35,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x35,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x36,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x36,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x37,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x37,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x38,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x38,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x39,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x39,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3a,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3a,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3b,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3b,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3c,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3c,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3d,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3d,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3e,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3e,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3f,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x3f,0x806867d30,0x0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x40,0x0,0x806867dd0,0x8) = 0 (0x0)
29809: linux_rt_sigaction(0x40,0x806867d30,0x0,0x8) = 0 (0x0)
29809: dup2(26,1) = 1 (0x1)
29809: linux_rt_sigprocmask(0x2,0x7fffffffd920,0x0,0x8) = 0 (0x0)
29809: linux_execve("/bin/sh",0x7fffffffdc20,0x7fffffffe5d0) EJUSTRETURN
29790: poll({ 3/POLLIN },1,-1) ERR#-4 'Interrupted system call'
29809: linux_brk(0x0) = 17055744 (0x1044000)
29790: linux_wait4(0x7470,0x0,0x0,0x0) = 29808 (0x7470)
29790: munmap(0x80685f000,36864) = 0 (0x0)
29809: linux_arch_prctl(0x3001,0x7fffffffe4e0) = 0 (0x0)
29790: linux_rt_sigprocmask(0x2,0x7fffffffd920,0x0,0x8) = 0 (0x0)
29809: linux_newuname(0x7fffffffe0e0) = 0 (0x0)
29809: linux_access("/etc/ld.so.preload",R_OK) ERR#-2 'No such file or directory'
29790: close(26) = 0 (0x0)
29790: close(24) = 0 (0x0)
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_fcntl(0x19,0x2,0x0) = 0 (0x0)
29809: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newfstat(25,0x7fffffffdb20) = 0 (0x0)
29790: close(20) = 0 (0x0)
29809: linux_newstat("/compat/ubuntu/opt/zoom/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: close(21) = 0 (0x0)
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: close(22) = 0 (0x0)
29809: linux_newstat("/compat/ubuntu/opt/zoom/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: close(23) = 0 (0x0)
29809: linux_newstat("/compat/ubuntu/opt/zoom/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_pipe2(0x829bff6c0,0x0) = 0 (0x0)
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_pipe2(0x829bff6c8,0x80000) = 0 (0x0)
29809: linux_newstat("/compat/ubuntu/opt/zoom/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29790: linux_pipe2(0x829bff5b0,0x0) = 0 (0x0)
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom",0x7fffffffd730) = 0 (0x0)
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/tls",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/haswell",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef/x86_64",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x7fffffffd670,0x80000,0x0) ERR#-2 'No such file or directory'
29809: linux_newstat("/compat/ubuntu/opt/zoom/cef",0x7fffffffd730) ERR#-2 'No such file or directory'
29809: linux_openat(0xffffff9c,0x801064b80,0x80000,0x0) = 3 (0x3)
29809: linux_newfstat(3,0x7fffffffd6e0) = 0 (0x0)
29809: linux_mmap2(0x0,0x8532,0x1,0x2,0x3,0x0) = 34376970240 (0x80106f000)
29809: close(3) = 0 (0x0)
29809: linux_openat(0xffffff9c,0x80106ef50,0x80000,0x0) = 3 (0x3)
29809: read(3,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29809: linux_pread(0x3,0x7fffffffd4a0,0x310,0x40) = 784 (0x310)
29809: linux_pread(0x3,0x7fffffffd470,0x20,0x350) = 32 (0x20)
29809: linux_pread(0x3,0x7fffffffd420,0x44,0x370) = 68 (0x44)
29809: linux_newfstat(3,0x7fffffffd730) = 0 (0x0)
29809: linux_mmap2(0x0,0x2000,0x3,0x22,0xffffffff,0x0) = 34377007104 (0x801078000)
29809: linux_pread(0x3,0x7fffffffd380,0x310,0x40) = 784 (0x310)
29809: linux_pread(0x3,0x7fffffffd060,0x20,0x350) = 32 (0x20)
29809: linux_pread(0x3,0x7fffffffd040,0x44,0x370) = 68 (0x44)
29809: linux_mmap2(0x0,0x1f14d8,0x1,0x802,0x3,0x0) = 34377015296 (0x80107a000)
29809: linux_mprotect(0x80109f000,0x1c3000,0x0) = 0 (0x0)
29809: linux_mmap2(0x80109f000,0x178000,0x5,0x812,0x3,0x25000) = 34377166848 (0x80109f000)
29809: linux_mmap2(0x801217000,0x4a000,0x1,0x812,0x3,0x19d000) = 34378706944 (0x801217000)
29809: linux_mmap2(0x801262000,0x6000,0x3,0x812,0x3,0x1e7000) = 34379014144 (0x801262000)
29809: linux_mmap2(0x801268000,0x34d8,0x3,0x32,0xffffffff,0x0) = 34379038720 (0x801268000)
29809: close(3) = 0 (0x0)
29809: linux_arch_prctl(0x1002,0x801079580) = 0 (0x0)
29810: <new process>
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29809: linux_mprotect(0x801262000,0x3000,0x1) = 0 (0x0)
29810: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29810 (0x7472)
29809: linux_mprotect(0x103f000,0x2000,0x1) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29810: linux_rt_sigaction(0x11,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29809: linux_mprotect(0x80106c000,0x1000,0x1) = 0 (0x0)
29810: linux_rt_sigaction(0x2,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29810: linux_rt_sigaction(0xf,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29809: munmap(0x80106f000,34098) = 0 (0x0)
29810: linux_rt_sigaction(0x1,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29809: linux_getuid() = 1002 (0x3ea)
29810: linux_rt_sigaction(0xd,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29790: gettimeofday({ 1657909302.529291 },0x0) = 0 (0x0)
29809: linux_getgid() = 1002 (0x3ea)
29810: close(24) = 0 (0x0)
29809: linux_getpid() = 29809 (0x7471)
29810: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29809: linux_rt_sigaction(0x11,0x7fffffffe040,0x0,0x8) = 0 (0x0)
29810: dup2(24,0) = 0 (0x0)
29809: geteuid() = 1002 (0x3ea)
29810: close(24) = 0 (0x0)
29790: gettimeofday({ 1657909302.529523 },0x0) = 0 (0x0)
29810: dup2(21,1) = 1 (0x1)
29809: linux_brk(0x0) = 17055744 (0x1044000)
29810: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29809: linux_brk(0x1065000) = 17190912 (0x1065000)
29810: dup2(23,2) = 2 (0x2)
29809: linux_getppid() = 29790 (0x745e)
29810: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461336 (0x258e98)
29810: dup2(26,3) = 3 (0x3)
29809: linux_newstat("/home/csgordon",0x7fffffffe260) = 0 (0x0)
29810: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29809: linux_newstat(".",0x7fffffffe2f0) = 0 (0x0)
29809: linux_getcwd(0x1044c00,0x1000) = 24 (0x18)
29810: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29809: geteuid() = 1002 (0x3ea)
29810: linux_getdents64(0x18,0x829bfe460,0x1000) = 696 (0x2b8)
29809: getegid() = 1002 (0x3ea)
29810: close(4) = 0 (0x0)
29809: linux_rt_sigaction(0x2,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29810: close(5) = 0 (0x0)
29809: linux_rt_sigaction(0x2,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29810: close(6) = 0 (0x0)
29809: linux_rt_sigaction(0x3,0x0,0x7fffffffe1e0,0x8) = 0 (0x0)
29810: close(7) = 0 (0x0)
29809: linux_rt_sigaction(0x3,0x7fffffffe140,0x0,0x8) = 0 (0x0)
29810: close(8) = 0 (0x0)
29809: linux_rt_sigaction(0xf,0x0,0x7fffffffe1f0,0x8) = 0 (0x0)
29810: close(9) = 0 (0x0)
29809: linux_rt_sigaction(0xf,0x7fffffffe150,0x0,0x8) = 0 (0x0)
29810: close(10) = 0 (0x0)
29790: close(26) = 0 (0x0)
29810: close(11) = 0 (0x0)
29809: linux_newstat("/home/csgordon/.local/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(12) = 0 (0x0)
29809: linux_newstat("/usr/home/csgordon/.opam/default/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(13) = 0 (0x0)
29809: linux_newstat("/home/csgordon/.cargo/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(14) = 0 (0x0)
29809: linux_newstat("/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(15) = 0 (0x0)
29809: linux_newstat("/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(16) = 0 (0x0)
29809: linux_newstat("/usr/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(17) = 0 (0x0)
29809: linux_newstat("/usr/bin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(18) = 0 (0x0)
29809: linux_newstat("/usr/local/sbin/pactl",0x7fffffffe170) ERR#-2 'No such file or directory'
29810: close(19) = 0 (0x0)
29809: linux_newstat("/usr/local/bin/pactl",0x7fffffffe170) = 0 (0x0)
29810: close(20) = 0 (0x0)
29810: close(21) = 0 (0x0)
29811: <new process>
29809: linux_clone(0x1200011,0x0,0x0,0x801079850,0x0) = 29811 (0x7473)
29810: close(22) = 0 (0x0)
29810: close(23) = 0 (0x0)
29811: linux_execve("/usr/local/bin/pactl",0x1043b90,0x1044dd8) EJUSTRETURN
29810: close(25) = 0 (0x0)
29811: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34362036224 (0x800231000)
29810: close(26) = 0 (0x0)
29811: mprotect(0x80022e000,4096,PROT_READ) = 0 (0x0)
29810: linux_getdents64(0x18,0x829bfe460,0x1000) = 0 (0x0)
29811: issetugid() = 0 (0x0)
29810: close(24) = 0 (0x0)
29811: sigfastblock(0x1,0x800230930) = 0 (0x0)
29810: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: __sysctl("kern.ostype",2,0x80023028a,0x7fffffffd800,0x0,0) = 0 (0x0)
29810: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: __sysctl("kern.hostname",2,0x80023038a,0x7fffffffd800,0x0,0) = 0 (0x0)
29811: __sysctl("kern.osrelease",2,0x80023048a,0x7fffffffd800,0x0,0) = 0 (0x0)
29810: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: __sysctl("kern.version",2,0x80023058a,0x7fffffffd800,0x0,0) = 0 (0x0)
29810: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: __sysctl("hw.machine",2,0x80023068a,0x7fffffffd800,0x0,0) = 0 (0x0)
29810: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/etc/libmap.conf",O_RDONLY|O_CLOEXEC,010640030) = 3 (0x3)
29810: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: fstat(3,{ mode=-rw-r--r-- ,inode=529128,size=47,blksize=4096 }) = 0 (0x0)
29810: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: read(3,"# $FreeBSD$\nincludedir /usr/loc"...,47) = 47 (0x2f)
29810: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: close(3) = 0 (0x0)
29810: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/usr/local/etc/libmap.d",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,0165) = 3 (0x3)
29810: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: fcntl(3,F_ISUNIONSTACK,0x0) = 0 (0x0)
29810: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29810: write(3,"\^A\0\0\0",4) = 4 (0x4)
29811: getdirentries(3,"4\M^G\^C\0\0\0\0\0\^A\0\0\0\0\0"...,4096,{ 0x0 }) = 104 (0x68)
29810: write(3,"\^B\0\0\0",4) = 4 (0x4)
29811: open("/usr/local/etc/libmap.d/mesa.conf",O_RDONLY|O_CLOEXEC,0165) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29811: fstat(4,{ mode=-rw-r--r-- ,inode=505824,size=38,blksize=4096 }) = 0 (0x0)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29811: read(4,"libGLX_indirect.so.0 libGLX_mesa"...,38) = 38 (0x26)
29811: close(4) = 0 (0x0)
29811: getdirentries(3,0x800236008,4096,{ 0x156b2338 }) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libpulse.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,011425250000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=531805,size=342880,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,352256,PROT_NONE,MAP_GUARD,-1,0x0) = 34362175488 (0x800253000)
29811: mmap(0x800253000,135168,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362175488 (0x800253000)
29811: mmap(0x800274000,204800,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x20000) = 34362310656 (0x800274000)
29811: mmap(0x8002a6000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x51000) = 34362515456 (0x8002a6000)
29811: mmap(0x8002a8000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x52000) = 34362523648 (0x8002a8000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/pulseaudio/libpulsecommon-14.2.so",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=545614,size=518624,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,532480,PROT_NONE,MAP_GUARD,-1,0x0) = 34362527744 (0x8002a9000)
29811: mmap(0x8002a9000,221184,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362527744 (0x8002a9000)
29811: mmap(0x8002df000,294912,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x35000) = 34362748928 (0x8002df000)
29811: mmap(0x800327000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34363043840 (0x800327000)
29811: mmap(0x800328000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7c000) = 34363047936 (0x800328000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libsndfile.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=225495,size=576232,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,598016,PROT_NONE,MAP_GUARD,-1,0x0) = 34363060224 (0x80032b000)
29811: mmap(0x80032b000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363060224 (0x80032b000)
29811: mmap(0x80034d000,430080,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34363199488 (0x80034d000)
29810: linux_exit_group(0x1)
29810: process exit, rval = 1
29811: mmap(0x8003b6000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x89000) = 34363629568 (0x8003b6000)
29790: read(25,0x764d990,4096) ERR#-4 'Interrupted system call'
29790: linux_wait4(0x7472,0x0,0x0,0x0) = 29810 (0x7472)
29811: mmap(0x8003b9000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34363641856 (0x8003b9000)
29790: close(24) = 0 (0x0)
29811: mmap(0x8003bb000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363650048 (0x8003bb000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29790: close(20) = 0 (0x0)
29790: close(25) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: close(21) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: close(22) = 0 (0x0)
29811: open("/usr/local/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: close(23) = 0 (0x0)
29811: open("/usr/local/lib/pulseaudio/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_pipe2(0x829bff6c0,0x0) = 0 (0x0)
29811: open("/var/run/ld-elf.so.hints",O_RDONLY|O_CLOEXEC,010022121) = 3 (0x3)
29790: linux_pipe2(0x829bff6c8,0x80000) = 0 (0x0)
29811: read(3,"Ehnt\^A\0\0\0\M^@\0\0\0_\^A\0\0"...,128) = 128 (0x80)
29790: linux_pipe2(0x829bff5b0,0x0) = 0 (0x0)
29811: fstat(3,{ mode=-r--r--r-- ,inode=690360,size=479,blksize=4096 }) = 0 (0x0)
29811: pread(3,"/lib:/usr/lib:/usr/lib/compat:/u"...,351,0x80) = 351 (0x15f)
29811: close(3) = 0 (0x0)
29811: open("/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=529430,size=11840,blksize=12288 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34363658240 (0x8003bd000)
29811: mmap(0x8003bd000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363658240 (0x8003bd000)
29811: mmap(0x8003bf000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34363666432 (0x8003bf000)
29811: mmap(0x8003c1000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363674624 (0x8003c1000)
29811: mmap(0x8003c2000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34363678720 (0x8003c2000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/pulseaudio/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29811: open("/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=527309,size=128224,blksize=128512 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,188416,PROT_NONE,MAP_GUARD,-1,0x0) = 34363682816 (0x8003c3000)
29811: mmap(0x8003c3000,53248,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363682816 (0x8003c3000)
29811: mmap(0x8003d0000,73728,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xc000) = 34363736064 (0x8003d0000)
29811: mmap(0x8003e2000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d000) = 34363809792 (0x8003e2000)
29811: mmap(0x8003e4000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1e000) = 34363817984 (0x8003e4000)
29811: mmap(0x8003e5000,49152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34363822080 (0x8003e5000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/pulseaudio/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/librt.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=529712,size=22936,blksize=23040 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29812 (0x7474)
29812: <new process>
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29812: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29811: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34363871232 (0x8003f1000)
29790: close(25) = 0 (0x0)
29811: mmap(0x8003f1000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363871232 (0x8003f1000)
29812: linux_rt_sigaction(0x11,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29811: mmap(0x8003f4000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34363883520 (0x8003f4000)
29812: linux_rt_sigaction(0x2,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29811: mmap(0x8003f7000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363895808 (0x8003f7000)
29812: linux_rt_sigaction(0xf,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29811: mmap(0x8003f8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34363899904 (0x8003f8000)
29812: linux_rt_sigaction(0x1,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29812: linux_rt_sigaction(0xd,0x829bff2d0,0x829bff370,0x8) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29812: close(24) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29812: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29811: open("/compat/ubuntu/opt/zoom/cef/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29812: dup2(24,0) = 0 (0x0)
29811: open("/usr/local/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29812: close(24) = 0 (0x0)
29811: open("/usr/local/lib/pulseaudio/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29812: dup2(21,1) = 1 (0x1)
29811: open("/lib/libm.so.5",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29812: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29811: fstat(3,{ mode=-r--r--r-- ,inode=527310,size=231544,blksize=131072 }) = 0 (0x0)
29812: dup2(23,2) = 2 (0x2)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29812: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29812: dup2(25,3) = 3 (0x3)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29812: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29811: mmap(0x0,241664,PROT_NONE,MAP_GUARD,-1,0x0) = 34363908096 (0x8003fa000)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29812: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29811: mmap(0x8003fa000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34363908096 (0x8003fa000)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29812: linux_getdents64(0x18,0x829bfe460,0x1000) = 672 (0x2a0)
29811: mmap(0x80040c000,159744,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34363981824 (0x80040c000)
29812: close(4) = 0 (0x0)
29811: mmap(0x800433000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34364141568 (0x800433000)
29812: close(5) = 0 (0x0)
29811: mmap(0x800434000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x37000) = 34364145664 (0x800434000)
29812: close(6) = 0 (0x0)
29790: gettimeofday({ 1657909302.542053 },0x0) = 0 (0x0)
29812: close(7) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29812: close(8) = 0 (0x0)
29811: close(3) = 0 (0x0)
29812: close(9) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29812: close(10) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29812: close(11) = 0 (0x0)
29790: gettimeofday({ 1657909302.542210 },0x0) = 0 (0x0)
29812: close(12) = 0 (0x0)
29811: open("/usr/local/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29812: close(13) = 0 (0x0)
29811: fstat(3,{ mode=-rw-r--r-- ,inode=207032,size=56520,blksize=56832 }) = 0 (0x0)
29812: close(14) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29812: close(15) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29812: close(16) = 0 (0x0)
29811: mmap(0x0,57344,PROT_NONE,MAP_GUARD,-1,0x0) = 34364149760 (0x800435000)
29812: close(17) = 0 (0x0)
29811: mmap(0x800435000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364149760 (0x800435000)
29812: close(18) = 0 (0x0)
29811: mmap(0x800439000,28672,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34364166144 (0x800439000)
29812: close(19) = 0 (0x0)
29811: mmap(0x800440000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34364194816 (0x800440000)
29812: close(20) = 0 (0x0)
29811: mmap(0x800441000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34364198912 (0x800441000)
29812: close(21) = 0 (0x0)
29811: mmap(0x800442000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34364203008 (0x800442000)
29812: close(22) = 0 (0x0)
29812: close(23) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461338 (0x258e9a)
29812: close(25) = 0 (0x0)
29811: close(3) = 0 (0x0)
29812: linux_getdents64(0x18,0x829bfe460,0x1000) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29812: close(24) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29812: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/usr/local/lib/pulseaudio/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29812: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29812: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: fstat(3,{ mode=-r--r--r-- ,inode=527311,size=1940232,blksize=131072 }) = 0 (0x0)
29812: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29812: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29812: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x0,4218880,PROT_NONE,MAP_GUARD,-1,0x0) = 34364207104 (0x800443000)
29812: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800443000,532480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364207104 (0x800443000)
29812: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29812: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x8004c5000,1351680,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x81000) = 34364739584 (0x8004c5000)
29812: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x80060f000,40960,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1ca000) = 34366091264 (0x80060f000)
29811: mmap(0x800619000,24576,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d3000) = 34366132224 (0x800619000)
29812: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x80061f000,2269184,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34366156800 (0x80061f000)
29812: write(3,"\^A\0\0\0",4) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29812: write(3,"\^B\0\0\0",4) = 4 (0x4)
29811: munmap(0x800252000,4096) = 0 (0x0)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/pulseaudio/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29811: open("/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29811: open("/usr/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,010222246000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=472579,size=355424,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,368640,PROT_NONE,MAP_GUARD,-1,0x0) = 34368425984 (0x800849000)
29811: mmap(0x800849000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368425984 (0x800849000)
29811: mmap(0x80086b000,212992,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x21000) = 34368565248 (0x80086b000)
29811: mmap(0x80089f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x54000) = 34368778240 (0x80089f000)
29811: mmap(0x8008a1000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x55000) = 34368786432 (0x8008a1000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libX11-xcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=223189,size=4256,blksize=4608 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,16384,PROT_NONE,MAP_GUARD,-1,0x0) = 34368794624 (0x8008a3000)
29811: mmap(0x8008a3000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368794624 (0x8008a3000)
29811: mmap(0x8008a4000,4096,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368798720 (0x8008a4000)
29811: mmap(0x8008a5000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368802816 (0x8008a5000)
29811: mmap(0x8008a6000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x0) = 34368806912 (0x8008a6000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libX11.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=225224,size=1346744,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29812: linux_exit_group(0x1)
29812: process exit, rval = 1
29790: linux_wait4(0x7471,0x7fffffffdc5c,0x0,0x0) ERR#-4 'Interrupted system call'
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29790: linux_wait4(0x7474,0x0,0x0,0x0) = 29812 (0x7474)
29811: mmap(0x0,1359872,PROT_NONE,MAP_GUARD,-1,0x0) = 34368811008 (0x8008a7000)
29790: close(24) = 0 (0x0)
29811: mmap(0x8008a7000,700416,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34368811008 (0x8008a7000)
29790: close(20) = 0 (0x0)
29811: mmap(0x800952000,630784,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xaa000) = 34369511424 (0x800952000)
29790: close(21) = 0 (0x0)
29811: mmap(0x8009ec000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x143000) = 34370142208 (0x8009ec000)
29790: close(22) = 0 (0x0)
29811: mmap(0x8009ee000,20480,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x144000) = 34370150400 (0x8009ee000)
29790: close(23) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29790: linux_pipe2(0x829bff6a0,0x0) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_pipe2(0x829bff6a8,0x80000) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_pipe2(0x829bff590,0x0) = 0 (0x0)
29811: open("/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libxcb.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=460835,size=171872,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,184320,PROT_NONE,MAP_GUARD,-1,0x0) = 34370170880 (0x8009f3000)
29811: mmap(0x8009f3000,90112,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370170880 (0x8009f3000)
29811: mmap(0x800a09000,86016,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x15000) = 34370260992 (0x800a09000)
29811: mmap(0x800a1e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34370347008 (0x800a1e000)
29811: mmap(0x800a1f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x29000) = 34370351104 (0x800a1f000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libICE.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=207789,size=92480,blksize=92672 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,118784,PROT_NONE,MAP_GUARD,-1,0x0) = 34370355200 (0x800a20000)
29811: mmap(0x800a20000,36864,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370355200 (0x800a20000)
29811: mmap(0x800a29000,57344,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x8000) = 34370392064 (0x800a29000)
29811: mmap(0x800a37000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370449408 (0x800a37000)
29811: mmap(0x800a38000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34370453504 (0x800a38000)
29811: mmap(0x800a3a000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370461696 (0x800a3a000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libSM.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=222711,size=39888,blksize=39936 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34370473984 (0x800a3d000)
29811: mmap(0x800a3d000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370473984 (0x800a3d000)
29811: mmap(0x800a40000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34370486272 (0x800a40000)
29813: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29813 (0x7475)
29811: mmap(0x800a45000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34370506752 (0x800a45000)
29813: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29811: mmap(0x800a46000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x6000) = 34370510848 (0x800a46000)
29790: close(25) = 0 (0x0)
29813: linux_rt_sigaction(0x11,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29813: linux_rt_sigaction(0x2,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: close(3) = 0 (0x0)
29813: linux_rt_sigaction(0xf,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29813: linux_rt_sigaction(0x1,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29813: linux_rt_sigaction(0xd,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: open("/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29813: close(24) = 0 (0x0)
29811: open("/usr/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29813: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29813: dup2(24,0) = 0 (0x0)
29811: open("/usr/local/lib/libXtst.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29813: close(24) = 0 (0x0)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=210930,size=30440,blksize=30720 }) = 0 (0x0)
29813: dup2(21,1) = 1 (0x1)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29813: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29813: dup2(23,2) = 2 (0x2)
29811: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34370519040 (0x800a48000)
29813: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29811: mmap(0x800a48000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370519040 (0x800a48000)
29813: dup2(25,3) = 3 (0x3)
29811: mmap(0x800a4a000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34370527232 (0x800a4a000)
29813: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29811: mmap(0x800a4e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370543616 (0x800a4e000)
29811: mmap(0x800a4f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34370547712 (0x800a4f000)
29813: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29811: mmap(0x800a50000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34370551808 (0x800a50000)
29813: linux_getdents64(0x18,0x829bfe440,0x1000) = 672 (0x2a0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29813: close(4) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29813: close(5) = 0 (0x0)
29811: close(3) = 0 (0x0)
29813: close(6) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29813: close(7) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29813: close(8) = 0 (0x0)
29811: open("/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29813: close(9) = 0 (0x0)
29811: open("/usr/lib/libwrap.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29813: close(10) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29813: close(11) = 0 (0x0)
29811: fstat(3,{ mode=-r--r--r-- ,inode=529604,size=37768,blksize=37888 }) = 0 (0x0)
29813: close(12) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29813: close(13) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29813: close(14) = 0 (0x0)
29811: mmap(0x0,49152,PROT_NONE,MAP_GUARD,-1,0x0) = 34370555904 (0x800a51000)
29813: close(15) = 0 (0x0)
29811: mmap(0x800a51000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370555904 (0x800a51000)
29813: close(16) = 0 (0x0)
29811: mmap(0x800a55000,24576,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34370572288 (0x800a55000)
29813: close(17) = 0 (0x0)
29811: mmap(0x800a5b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34370596864 (0x800a5b000)
29813: close(18) = 0 (0x0)
29811: mmap(0x800a5c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8000) = 34370600960 (0x800a5c000)
29813: close(19) = 0 (0x0)
29790: gettimeofday({ 1657909302.555391 },0x0) = 0 (0x0)
29813: close(20) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29813: close(21) = 0 (0x0)
29811: close(3) = 0 (0x0)
29813: close(22) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29813: close(23) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29813: close(25) = 0 (0x0)
29811: open("/usr/local/lib/libvorbisenc.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29813: linux_getdents64(0x18,0x829bfe440,0x1000) = 0 (0x0)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=225523,size=664168,blksize=131072 }) = 0 (0x0)
29813: close(24) = 0 (0x0)
29790: gettimeofday({ 1657909302.555541 },0x0) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29813: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29813: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x0,675840,PROT_NONE,MAP_GUARD,-1,0x0) = 34370605056 (0x800a5d000)
29813: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800a5d000,557056,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370605056 (0x800a5d000)
29813: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800ae5000,20480,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x87000) = 34371162112 (0x800ae5000)
29813: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800aea000,94208,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x8b000) = 34371182592 (0x800aea000)
29813: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800b01000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xa1000) = 34371276800 (0x800b01000)
29813: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: munmap(0x800252000,4096) = 0 (0x0)
29813: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: close(3) = 0 (0x0)
29813: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29813: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29813: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: open("/usr/local/lib/libFLAC.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29813: write(3,"\^A\0\0\0",4) = 4 (0x4)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=521459,size=266760,blksize=131072 }) = 0 (0x0)
29813: write(3,"\^B\0\0\0",4) = 4 (0x4)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29790: read(24,"\^A\0\0\0\^B\0\0\0",8) = 8 (0x8)
29790: linux_times(0x81a456d90) = 2461340 (0x258e9c)
29811: mmap(0x0,278528,PROT_NONE,MAP_GUARD,-1,0x0) = 34371280896 (0x800b02000)
29811: mmap(0x800b02000,73728,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371280896 (0x800b02000)
29811: mmap(0x800b14000,192512,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x11000) = 34371354624 (0x800b14000)
29811: mmap(0x800b43000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x3f000) = 34371547136 (0x800b43000)
29811: mmap(0x800b45000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x40000) = 34371555328 (0x800b45000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libopus.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=228409,size=465976,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,479232,PROT_NONE,MAP_GUARD,-1,0x0) = 34371559424 (0x800b46000)
29811: mmap(0x800b46000,86016,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371559424 (0x800b46000)
29811: mmap(0x800b5b000,380928,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x14000) = 34371645440 (0x800b5b000)
29811: mmap(0x800bb8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x70000) = 34372026368 (0x800bb8000)
29811: mmap(0x800bba000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x71000) = 34372034560 (0x800bba000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libvorbis.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=206803,size=211184,blksize=131072 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,225280,PROT_NONE,MAP_GUARD,-1,0x0) = 34372038656 (0x800bbb000)
29811: mmap(0x800bbb000,81920,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372038656 (0x800bbb000)
29811: mmap(0x800bcf000,131072,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x13000) = 34372120576 (0x800bcf000)
29811: mmap(0x800bef000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372251648 (0x800bef000)
29811: mmap(0x800bf0000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x32000) = 34372255744 (0x800bf0000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libogg.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=225227,size=31728,blksize=31744 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34372263936 (0x800bf2000)
29811: mmap(0x800bf2000,20480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372263936 (0x800bf2000)
29813: linux_exit_group(0x1)
29813: process exit, rval = 1
29811: mmap(0x800bf7000,16384,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x4000) = 34372284416 (0x800bf7000)
29790: linux_wait4(0x7471,0x7fffffffdc5c,0x0,0x0) ERR#-4 'Interrupted system call'
29790: linux_wait4(0x7475,0x0,0x0,0x0) = 29813 (0x7475)
29811: mmap(0x800bfb000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372300800 (0x800bfb000)
29811: mmap(0x800bfc000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372304896 (0x800bfc000)
29790: close(24) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29790: close(20) = 0 (0x0)
29811: close(3) = 0 (0x0)
29790: close(21) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29790: close(22) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29790: close(23) = 0 (0x0)
29811: open("/lib/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=529809,size=93640,blksize=93696 }) = 0 (0x0)
29790: linux_pipe2(0x829bff6a0,0x0) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_pipe2(0x829bff6a8,0x80000) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29790: linux_pipe2(0x829bff590,0x0) = 0 (0x0)
29811: mmap(0x0,102400,PROT_NONE,MAP_GUARD,-1,0x0) = 34372308992 (0x800bfd000)
29811: mmap(0x800bfd000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372308992 (0x800bfd000)
29811: mmap(0x800c03000,69632,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34372333568 (0x800c03000)
29811: mmap(0x800c14000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34372403200 (0x800c14000)
29811: mmap(0x800c15000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x15000) = 34372407296 (0x800c15000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29811: open("/lib/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=529773,size=76944,blksize=77312 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,90112,PROT_NONE,MAP_GUARD,-1,0x0) = 34372411392 (0x800c16000)
29811: mmap(0x800c16000,28672,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372411392 (0x800c16000)
29811: mmap(0x800c1d000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x6000) = 34372440064 (0x800c1d000)
29811: mmap(0x800c29000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x11000) = 34372489216 (0x800c29000)
29811: mmap(0x800c2b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x12000) = 34372497408 (0x800c2b000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/lib/compat/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29811: open("/usr/local/lib/libXau.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=207619,size=10816,blksize=11264 }) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29811: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34372501504 (0x800c2c000)
29811: mmap(0x800c2c000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372501504 (0x800c2c000)
29811: mmap(0x800c2d000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372505600 (0x800c2d000)
29811: mmap(0x800c2f000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1000) = 34372513792 (0x800c2f000)
29811: mmap(0x800c31000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34372521984 (0x800c31000)
29811: munmap(0x800252000,4096) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29811: open("/compat/ubuntu/opt/zoom/cef/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29811: open("/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29814: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29814 (0x7476)
29811: open("/usr/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29814: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29811: open("/usr/lib/compat/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) ERR#2 'No such file or directory'
29790: close(25) = 0 (0x0)
29814: linux_rt_sigaction(0x11,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: open("/usr/local/lib/libXdmcp.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,032266000) = 3 (0x3)
29814: linux_rt_sigaction(0x2,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=224892,size=28824,blksize=29184 }) = 0 (0x0)
29814: linux_rt_sigaction(0xf,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29814: linux_rt_sigaction(0x1,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29814: linux_rt_sigaction(0xd,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29811: mmap(0x0,32768,PROT_NONE,MAP_GUARD,-1,0x0) = 34372526080 (0x800c32000)
29814: close(24) = 0 (0x0)
29811: mmap(0x800c32000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372526080 (0x800c32000)
29811: mmap(0x800c35000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34372538368 (0x800c35000)
29814: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29811: mmap(0x800c38000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34372550656 (0x800c38000)
29814: dup2(24,0) = 0 (0x0)
29811: mmap(0x800c39000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x4000) = 34372554752 (0x800c39000)
29814: close(24) = 0 (0x0)
29814: dup2(21,1) = 1 (0x1)
29811: munmap(0x800252000,4096) = 0 (0x0)
29814: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29811: close(3) = 0 (0x0)
29814: dup2(23,2) = 2 (0x2)
29811: open("/compat/ubuntu/opt/zoom/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29814: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29814: dup2(25,3) = 3 (0x3)
29811: open("/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29814: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29811: open("/usr/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29814: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29811: open("/usr/lib/compat/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29814: linux_getdents64(0x18,0x829bfe440,0x1000) = 672 (0x2a0)
29814: close(4) = 0 (0x0)
29811: open("/usr/local/lib/libXext.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29814: close(5) = 0 (0x0)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=224625,size=73376,blksize=73728 }) = 0 (0x0)
29814: close(6) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29814: close(7) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29814: close(8) = 0 (0x0)
29811: mmap(0x0,86016,PROT_NONE,MAP_GUARD,-1,0x0) = 34372558848 (0x800c3a000)
29814: close(9) = 0 (0x0)
29811: mmap(0x800c3a000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372558848 (0x800c3a000)
29814: close(10) = 0 (0x0)
29811: mmap(0x800c40000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x5000) = 34372583424 (0x800c40000)
29814: close(11) = 0 (0x0)
29811: mmap(0x800c4c000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34372632576 (0x800c4c000)
29814: close(12) = 0 (0x0)
29811: mmap(0x800c4d000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x10000) = 34372636672 (0x800c4d000)
29814: close(13) = 0 (0x0)
29814: close(14) = 0 (0x0)
29811: munmap(0x800252000,4096) = 0 (0x0)
29814: close(15) = 0 (0x0)
29811: close(3) = 0 (0x0)
29814: close(16) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29814: close(17) = 0 (0x0)
29811: open("/compat/ubuntu/opt/zoom/cef/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29814: close(18) = 0 (0x0)
29811: open("/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29814: close(19) = 0 (0x0)
29811: open("/usr/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29814: close(20) = 0 (0x0)
29811: open("/usr/lib/compat/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29814: close(21) = 0 (0x0)
29811: open("/usr/local/lib/libXi.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29814: close(22) = 0 (0x0)
29811: fstat(3,{ mode=-rwxr-xr-x ,inode=229151,size=62792,blksize=62976 }) = 0 (0x0)
29814: close(23) = 0 (0x0)
29811: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29814: close(25) = 0 (0x0)
29811: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362171392 (0x800252000)
29814: linux_getdents64(0x18,0x829bfe440,0x1000) = 0 (0x0)
29811: mmap(0x0,73728,PROT_NONE,MAP_GUARD,-1,0x0) = 34372644864 (0x800c4f000)
29814: close(24) = 0 (0x0)
29811: mmap(0x800c4f000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372644864 (0x800c4f000)
29811: mmap(0x800c53000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34372661248 (0x800c53000)
29814: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800c5f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34372710400 (0x800c5f000)
29814: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mmap(0x800c60000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xe000) = 34372714496 (0x800c60000)
29814: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: munmap(0x800252000,4096) = 0 (0x0)
29814: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: close(3) = 0 (0x0)
29814: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29814: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mprotect(0x8002a6000,4096,PROT_READ) = 0 (0x0)
29814: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29814: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mprotect(0x8003b6000,8192,PROT_READ) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29814: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mprotect(0x8003e2000,4096,PROT_READ) = 0 (0x0)
29814: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.568207 },0x0) = 0 (0x0)
29814: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29811: mprotect(0x800440000,4096,PROT_READ) = 0 (0x0)
29814: write(3,"\^A\0\0\0",4) = 4 (0x4)
29811: mmap(0x0,196608,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372718592 (0x800c61000)
29814: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: gettimeofday({ 1657909302.568483 },0x0) = 0 (0x0)
29790: read(24,"\^A\0\0\0\^B\0\0\0",8) = 8 (0x8)
29811: mprotect(0x80060f000,36864,PROT_READ) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461341 (0x258e9d)
29811: mprotect(0x80089f000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x8009ec000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800a45000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800a4e000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800aea000,90112,PROT_READ) = 0 (0x0)
29811: mprotect(0x800b43000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800bb8000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800c29000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800c2f000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x800c38000,4096,PROT_READ) = 0 (0x0)
29811: mprotect(0x80060f000,36864,PROT_READ|PROT_WRITE) = 0 (0x0)
29811: mprotect(0x80060f000,36864,PROT_READ) = 0 (0x0)
29811: readlink("/etc/malloc.conf",0x7fffffffcfd0,1024) ERR#2 'No such file or directory'
29811: issetugid() = 0 (0x0)
29811: __sysctl("vm.overcommit",2,0x7fffffffb55c,0x7fffffffb550,0x0,0) = 0 (0x0)
29811: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34374418432 (0x800e00000)
29811: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(12),-1,0x0) = 34376515584 (0x801000000)
29811: mmap(0x0,4194304,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34378612736 (0x801200000)
29811: __sysctl("kern.usrstack",2,0x8003e4c88,0x7fffffffd458,0x0,0) = 0 (0x0)
29811: getrlimit(RLIMIT_STACK,{ cur=8388608,max=536870912 }) = 0 (0x0)
29811: thr_self(0x801012000) = 0 (0x0)
29811: mmap(0x7fffff7fe000,4096,PROT_NONE,MAP_ANON,-1,0x0) = 34362171392 (0x800252000)
29811: rtprio_thread(RTP_LOOKUP,101358,0x7fffffffd418) = 0 (0x0)
29811: sigaction(SIGTHR,{ 0x8003dcb50 SA_SIGINFO ss_t },0x0) = 0 (0x0)
29811: sigprocmask(SIG_UNBLOCK,{ },0x0) = 0 (0x0)
29811: _umtx_op(0x7fffffffd410,UMTX_OP_WAKE,0x1,0x0,0x0) = 0 (0x0)
29811: mprotect(0x0,0,PROT_NONE) = 0 (0x0)
29811: getpid() = 29811 (0x7473)
29811: getpid() = 29811 (0x7473)
29814: linux_exit_group(0x1)
29814: process exit, rval = 1
29790: linux_wait4(0x7471,0x7fffffffdc5c,0x0,0x0) ERR#-4 'Interrupted system call'
29811: sigprocmask(SIG_BLOCK,{ SIGHUP|SIGINT|SIGQUIT|SIGILL|SIGTRAP|SIGABRT|SIGEMT|SIGFPE|SIGKILL|SIGBUS|SIGSEGV|SIGSYS|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2 },{ }) = 0 (0x0)
29790: linux_wait4(0x7476,0x0,0x0,0x0) = 29814 (0x7476)
29811: sigfastblock(0x3,0x0) = 0 (0x0)
29811: sigprocmask(SIG_SETMASK,{ },0x0) = 0 (0x0)
29790: close(24) = 0 (0x0)
29811: sigfastblock(0x1,0x801012038) = 0 (0x0)
29790: close(20) = 0 (0x0)
29811: getcontext(0x7fffffffce00) = 0 (0x0)
29790: close(21) = 0 (0x0)
29811: sysarch(AMD64_GET_XFPUSTATE,0x7fffffffcdc8) = 0 (0x0)
29790: close(22) = 0 (0x0)
29790: close(23) = 0 (0x0)
29811: open("/usr/share/locale/en_US.UTF-8/LC_COLLATE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29790: linux_pipe2(0x829bff6a0,0x0) = 0 (0x0)
29811: fstat(3,{ mode=-r--r--r-- ,inode=535218,size=79692,blksize=79872 }) = 0 (0x0)
29790: linux_pipe2(0x829bff6a8,0x80000) = 0 (0x0)
29811: mmap(0x0,79692,PROT_READ,MAP_PRIVATE,3,0x0) = 34372915200 (0x800c91000)
29790: linux_pipe2(0x829bff590,0x0) = 0 (0x0)
29811: close(3) = 0 (0x0)
29811: open("/usr/share/locale/en_US.UTF-8/LC_CTYPE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=536347,size=51056,blksize=51200 }) = 0 (0x0)
29811: mmap(0x0,51056,PROT_READ,MAP_PRIVATE,3,0x0) = 34372997120 (0x800ca5000)
29811: close(3) = 0 (0x0)
29811: munmap(0x800ca5000,51056) = 0 (0x0)
29811: open("/usr/share/locale/en_US.UTF-8/LC_MONETARY",O_RDONLY|O_CLOEXEC,014335262400) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=534800,size=32,blksize=4096 }) = 0 (0x0)
29811: read(3,"USD \n$\n.\n,\n3\n\n-\n2\n2\n1\n"...,32) = 32 (0x20)
29811: close(3) = 0 (0x0)
29811: open("/usr/share/locale/en_US.UTF-8/LC_NUMERIC",O_RDONLY|O_CLOEXEC,025242400) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=535217,size=6,blksize=4096 }) = 0 (0x0)
29811: read(3,".\n,\n3\n",6) = 6 (0x6)
29811: close(3) = 0 (0x0)
29811: open("/usr/share/locale/en_US.UTF-8/LC_TIME",O_RDONLY|O_CLOEXEC,00) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=535875,size=377,blksize=4096 }) = 0 (0x0)
29811: read(3,"Jan\nFeb\nMar\nApr\nMay\nJun\nJu"...,377) = 377 (0x179)
29811: close(3) = 0 (0x0)
29811: open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES",O_RDONLY|O_CLOEXEC,011320443400) = 3 (0x3)
29811: fstat(3,{ mode=-r--r--r-- ,inode=534801,size=74,blksize=4096 }) = 0 (0x0)
29811: read(3,"^(([yY]([eE][sS])?)|([yY]))\n^(("...,74) = 74 (0x4a)
29811: close(3) = 0 (0x0)
29811: mmap(0x0,139264,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372997120 (0x800ca5000)
29811: getuid() = 1002 (0x3ea)
29811: geteuid() = 1002 (0x3ea)
29811: getgid() = 1002 (0x3ea)
29811: getegid() = 1002 (0x3ea)
29811: openat(AT_FDCWD,"/usr/local/share/locale/en_US.UTF-8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29811: openat(AT_FDCWD,"/usr/local/share/locale/en_US.utf8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29811: openat(AT_FDCWD,"/usr/local/share/locale/en_US/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29811: openat(AT_FDCWD,"/usr/local/share/locale/en.UTF-8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29811: openat(AT_FDCWD,"/usr/local/share/locale/en.utf8/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29811: openat(AT_FDCWD,"/usr/local/share/locale/en/LC_MESSAGES/pulseaudio.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29811: fstat(1,{ mode=p--------- ,inode=72472,size=0,blksize=4096 }) = 0 (0x0)
29811: write(1,"pactl 14.2\nCompiled with libpul"...,69) ERR#32 'Broken pipe'
29815: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29815 (0x7477)
29811: exit(0x0)
29811: process exit, rval = 0
29815: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29809: linux_wait4(0xffffffff,0x7fffffffe0ac,0x0,0x0) ERR#-4 'Interrupted system call'
29809: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29811 uid=1002 status=0
29790: close(25) = 0 (0x0)
29815: linux_rt_sigaction(0x11,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29809: linux_rt_sigreturn(0x11) EJUSTRETURN
29815: linux_rt_sigaction(0x2,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29815: linux_rt_sigaction(0xf,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29809: linux_wait4(0xffffffff,0x7fffffffe0ac,0x0,0x0) = 29811 (0x7473)
29815: linux_rt_sigaction(0x1,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29815: linux_rt_sigaction(0xd,0x829bff2b0,0x829bff350,0x8) = 0 (0x0)
29809: linux_exit_group(0x0)
29809: process exit, rval = 0
29790: linux_wait4(0x7471,0x7fffffffdc5c,0x0,0x0) ERR#-4 'Interrupted system call'
29815: close(24) = 0 (0x0)
29790: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29809 uid=1002 status=0
29815: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29790: linux_waitid(0x0,0x0,0x7fffffffd860,0x1000005,0x0) = 0 (0x0)
29815: dup2(24,0) = 0 (0x0)
29790: linux_rt_sigreturn(0x3) EJUSTRETURN
29815: close(24) = 0 (0x0)
29790: linux_wait4(0x7471,0x7fffffffdc5c,0x0,0x0) = 29809 (0x7471)
29815: dup2(21,1) = 1 (0x1)
29815: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29815: dup2(23,2) = 2 (0x2)
29790: linux_newstat("/etc/localtime",0x7fffffffd910) = 0 (0x0)
29815: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd750) = 0 (0x0)
29815: dup2(25,3) = 3 (0x3)
29790: linux_newstat("/etc/localtime",0x7fffffffd790) = 0 (0x0)
29815: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29790: linux_newstat("/etc/localtime",0x7fffffffd9b0) = 0 (0x0)
29815: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29815: linux_getdents64(0x18,0x829bfe440,0x1000) = 672 (0x2a0)
29815: close(4) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29815: close(5) = 0 (0x0)
29815: close(6) = 0 (0x0)
29815: close(7) = 0 (0x0)
29815: close(8) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29815: close(9) = 0 (0x0)
29790: writev(3,[{"\^B\0\^D\0\a\0@\^B\0\b\0\0\0\0"...,40}],1) = 40 (0x28)
29815: close(10) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29815: close(11) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 36 (0x24)
29815: close(12) = 0 (0x0)
29815: close(13) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffd8f8,0x81,0x1,0x0,0x7fffffffd8d0,0x7fffffffd8f0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd8f8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29815: close(14) = 0 (0x0)
29815: close(15) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd8f0) = 0 (0x0)
29815: close(16) = 0 (0x0)
29815: close(17) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29815: close(18) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/xcbglintegrations/.",F_OK) = 0 (0x0)
29815: close(19) = 0 (0x0)
29815: close(20) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x764e248,0x90800,0x0) = 25 (0x19)
29815: close(21) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffd190) = 0 (0x0)
29815: close(22) = 0 (0x0)
29815: close(23) = 0 (0x0)
29790: linux_getdents64(0x19,0x764e300,0x8000) = 144 (0x90)
29815: close(25) = 0 (0x0)
29815: linux_getdents64(0x18,0x829bfe440,0x1000) = 0 (0x0)
29790: linux_getdents64(0x19,0x764e300,0x8000) = 0 (0x0)
29815: close(24) = 0 (0x0)
29790: close(25) = 0 (0x0)
29815: linux_execve("/home/csgordon/.local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x764e3f0,0x7fffffffd340) = 0 (0x0)
29815: linux_execve("/usr/home/csgordon/.opam/default/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x764e3f0,0x7fffffffd340) = 0 (0x0)
29790: linux_newlstat(0x764e3f0,0x7fffffffd340) = 0 (0x0)
29815: linux_execve("/home/csgordon/.cargo/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x764e3f0,0x7fffffffd340) = 0 (0x0)
29815: linux_execve("/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x764e3f0,0x7fffffffd340) = 0 (0x0)
29815: linux_execve("/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newlstat(0x764e3f0,0x7fffffffd340) = 0 (0x0)
29815: linux_execve("/usr/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x76563b8,0x80000,0x0) = 25 (0x19)
29815: linux_execve("/usr/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(25,0x7fffffffd170) = 0 (0x0)
29815: linux_execve("/usr/local/sbin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29815: linux_execve("/usr/local/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_newfstat(25,0x7fffffffd260) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29815: linux_execve("~/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29815: linux_execve("/home/csgordon/.local/share/coursier/bin/pidof",0x830004290,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.579163 },0x0) = 0 (0x0)
29815: write(3,"\^A\0\0\0",4) = 4 (0x4)
29790: gettimeofday({ 1657909302.579258 },0x0) = 0 (0x0)
29815: write(3,"\^B\0\0\0",4) = 4 (0x4)
29790: read(24,"\^A\0\0\0",8) = 4 (0x4)
29790: linux_mmap2(0x0,0x18880,0x1,0x1,0x19,0x0) = 34504339456 (0x8089e7000)
29790: linux_times(0x81a456d90) = 2461343 (0x258e9f)
29790: read(24,"\^B\0\0\0",4) = 4 (0x4)
29790: close(25) = 0 (0x0)
29790: munmap(0x8089e7000,100480) = 0 (0x0)
29790: linux_newlstat(0x764e690,0x7fffffffd340) = 0 (0x0)
29790: linux_newlstat(0x764e690,0x7fffffffd340) = 0 (0x0)
29790: linux_newlstat(0x764e690,0x7fffffffd340) = 0 (0x0)
29790: linux_newlstat(0x764e690,0x7fffffffd340) = 0 (0x0)
29790: linux_newlstat(0x764e690,0x7fffffffd340) = 0 (0x0)
29790: linux_newlstat(0x764e690,0x7fffffffd340) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x75181e8,0x80000,0x0) = 25 (0x19)
29790: linux_newfstat(25,0x7fffffffd170) = 0 (0x0)
29790: linux_newfstat(25,0x7fffffffd260) = 0 (0x0)
29790: linux_mmap2(0x0,0x18bd8,0x1,0x1,0x19,0x0) = 34504339456 (0x8089e7000)
29790: close(25) = 0 (0x0)
29790: munmap(0x8089e7000,101336) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7518260,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/xcbglintegrations/libqxcb-glx-integration.so.avx2",F_OK) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x764e470,0x80000,0x0) = 25 (0x19)
29790: read(25,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(25,0x7fffffffcc30) = 0 (0x0)
29790: linux_mmap2(0x0,0x210678,0x5,0x802,0x19,0x0) = 35070672896 (0x82a600000)
29790: linux_mprotect(0x82a60f000,0x200000,0x0) = 0 (0x0)
29790: linux_mmap2(0x82a80f000,0x2000,0x3,0x812,0x19,0xf000) = 35072831488 (0x82a80f000)
29790: close(25) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/tls/haswell/x86_64",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/tls/haswell",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/tls/x86_64",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/tls",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/haswell/x86_64",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/haswell",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib/x86_64",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7fffffffc3c0,0x80000,0x0) ERR#-2 'No such file or directory'
29790: linux_newstat("/compat/ubuntu/opt/zoom/xcbglintegrations/../../lib",0x7fffffffc490) ERR#-2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806852b80,0x80000,0x0) = 25 (0x19)
29790: linux_newfstat(25,0x7fffffffc440) = 0 (0x0)
29790: linux_mmap2(0x0,0x8532,0x1,0x2,0x19,0x0) = 34469179392 (0x80685f000)
29815: linux_exit_group(0x1)
29815: process exit, rval = 1
29790: SIGNAL 20 (SIGCHLD) code=CLD_EXITED pid=29815 uid=1002 status=1
29790: linux_wait4(0x7477,0x0,0x0,0x0) = 29815 (0x7477)
29790: close(24) = 0 (0x0)
29790: linux_waitid(0x0,0x0,0x7fffffffc070,0x1000005,0x0) ERR#-10 'No child processes'
29790: linux_rt_sigreturn(0x0) EJUSTRETURN
29790: close(20) = 0 (0x0)
29790: close(25) = 0 (0x0)
29790: close(21) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7643fc0,0x80000,0x0) = 20 (0x14)
29790: close(22) = 0 (0x0)
29790: read(20,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: close(23) = 0 (0x0)
29790: linux_newfstat(20,0x7fffffffc490) = 0 (0x0)
29790: linux_mmap2(0x0,0x1c058,0x1,0x802,0x14,0x0) = 34518253568 (0x80972c000)
29790: linux_mprotect(0x809737000,0xf000,0x0) = 0 (0x0)
29790: linux_mmap2(0x809737000,0x9000,0x5,0x812,0x14,0xb000) = 34518298624 (0x809737000)
29790: linux_mmap2(0x809740000,0x5000,0x1,0x812,0x14,0x14000) = 34518335488 (0x809740000)
29790: linux_mmap2(0x809746000,0x3000,0x3,0x812,0x14,0x19000) = 34518360064 (0x809746000)
29790: close(20) = 0 (0x0)
29790: linux_pipe2(0x829bff700,0x0) = 0 (0x0)
29790: linux_pipe2(0x829bff708,0x80000) = 0 (0x0)
29790: linux_pipe2(0x829bff5f0,0x0) = 0 (0x0)
29816: <new process>
29790: linux_clone(0x1200011,0x0,0x0,0x829c009d0,0x0) = 29816 (0x7478)
29816: linux_set_robust_list(0x829c009e0,0x18) = 0 (0x0)
29790: close(25) = 0 (0x0)
29816: linux_rt_sigaction(0x11,0x829bff310,0x829bff3b0,0x8) = 0 (0x0)
29816: linux_rt_sigaction(0x2,0x829bff310,0x829bff3b0,0x8) = 0 (0x0)
29816: linux_rt_sigaction(0xf,0x829bff310,0x829bff3b0,0x8) = 0 (0x0)
29816: linux_rt_sigaction(0x1,0x829bff310,0x829bff3b0,0x8) = 0 (0x0)
29790: linux_mprotect(0x809746000,0x2000,0x1) = 0 (0x0)
29816: linux_rt_sigaction(0xd,0x829bff310,0x829bff3b0,0x8) = 0 (0x0)
29816: close(24) = 0 (0x0)
29816: linux_openat(0xffffff9c,0x806afdc0f,0x0,0x0) = 24 (0x18)
29790: linux_mprotect(0x82a80f000,0x1000,0x1) = 0 (0x0)
29816: dup2(24,0) = 0 (0x0)
29816: close(24) = 0 (0x0)
29790: munmap(0x80685f000,34098) = 0 (0x0)
29816: dup2(21,1) = 1 (0x1)
29816: linux_fcntl(0x15,0x2,0x1) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: dup2(23,2) = 2 (0x2)
29816: linux_fcntl(0x17,0x2,0x1) = 0 (0x0)
29790: writev(3,[{"b\0\^C\0\^C\0\0\0GLX\0",12}],1) = 12 (0xc)
29816: dup2(25,3) = 3 (0x3)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: linux_fcntl(0x3,0x2,0x1) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29816: linux_openat(0xffffff9c,0x806b537a1,0x10000,0x0) = 24 (0x18)
29790: linux_sys_futex(0x7fffffffd798,0x81,0x1,0x0,0x7fffffffd770,0x7fffffffd790) = 1 (0x1)
29816: linux_getdents64(0x18,0x829bfe4a0,0x1000) = 672 (0x2a0)
29790: linux_sys_futex(0x7fffffffd798,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd790) = 0 (0x0)
29816: close(5) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29816: close(6) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: close(7) = 0 (0x0)
29790: writev(3,[{"\M^X\a\^C\0\^A\0\0\0\^D\0\0\0",12}],1) = 12 (0xc)
29816: close(8) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: close(9) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29816: close(10) = 0 (0x0)
29816: close(11) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffd7c8,0x81,0x1,0x0,0x7fffffffd7a0,0x7fffffffd7c0) = 1 (0x1)
29790: linux_sys_futex(0x7fffffffd7c8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29816: close(12) = 0 (0x0)
29816: close(13) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffd7c0) = 0 (0x0)
29816: close(14) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29816: close(15) = 0 (0x0)
29816: close(16) = 0 (0x0)
29816: close(17) = 0 (0x0)
29790: linux_getpid() = 29790 (0x745e)
29816: close(18) = 0 (0x0)
29790: linux_newuname(0x7fffffffd800) = 0 (0x0)
29816: close(19) = 0 (0x0)
29816: close(20) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: close(21) = 0 (0x0)
29790: writev(3,[{"N\0\^D\0\^E\0@\^C\M-E\a\0\0\M-."...,428}],1) = 428 (0x1ac)
29816: close(22) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: close(23) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: close(25) = 0 (0x0)
29816: linux_getdents64(0x18,0x829bfe4a0,0x1000) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 192 (0xc0)
29816: close(24) = 0 (0x0)
29790: gettimeofday({ 1657909302.590359 },0x0) = 0 (0x0)
29816: linux_execve("/home/csgordon/.local/bin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: gettimeofday({ 1657909302.590461 },0x0) = 0 (0x0)
29816: linux_execve("/usr/home/csgordon/.opam/default/bin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_times(0x81a456d90) = 2461344 (0x258ea0)
29816: linux_execve("/home/csgordon/.cargo/bin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29816: linux_execve("/sbin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100000a0) = 1 (0x1)
29816: linux_execve("/bin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: linux_execve("/usr/sbin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29816: linux_execve("/usr/bin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: linux_execve("/usr/local/sbin/gsettings",0x8300042e0,0x7fffffffe5d0) ERR#-2 'No such file or directory'
29790: writev(3,[{"\^R\0\f\0\b\0@\^C'\0\0\0\^_\0\0"...,48},{0x0,0},{0x80693cb0c,0}],3) = 48 (0x30)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x8100000a0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x8100000a0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100000a0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^R\0\a\0\b\0@\^Cj\^A\0\0!\0\0\0"...,172}],1) = 172 (0xac)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x8100000a0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100000a0) = 0 (0x0)
29790: linux_recvmsg(0x3,0x7fffffffd6b0,0x0) = 128 (0x80)
29790: linux_sys_futex(0x6f10ac8,0x81,0x1,0x0,0x6f10aa0,0x6f10ac0) = 1 (0x1)
29790: linux_sys_futex(0x6f10ac8,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: writev(3,[{"\^B\0\^E\0\^F\0@\^C\0\n\0\0\^A\0"...,52}],1) = 52 (0x34)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: writev(3,[{"\^Y\0\v\0\M-E\a\0\0\0\0\^R\0! \0"...,156}],1) = 156 (0x9c)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29790: linux_recvmsg(0x3,0x7fffffffd610,0x0) = 164 (0xa4)
29790: linux_sys_futex(0x6f10acc,0x81,0x1,0x0,0x6f10aa0,0x6f10ac0) = 1 (0x1)
29790: linux_sys_futex(0x6f10acc,0x80,0x0,0x0,0x0,0x4) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x4) = 0 (0x0)
29816: linux_execve("/usr/local/bin/gsettings",0x8300042e0,0x7fffffffe5d0) EJUSTRETURN
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x4) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29816: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34361995264 (0x800227000)
29790: read(24,0x829bff600,8) = 0 (0x0)
29816: mprotect(0x800224000,4096,PROT_READ) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: issetugid() = 0 (0x0)
29816: sigfastblock(0x1,0x800226930) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: close(24) = 0 (0x0)
29816: open("/etc/libmap.conf",O_RDONLY|O_CLOEXEC,010520030) = 3 (0x3)
29790: linux_clock_nanosleep(0x0,0x0,0x82a400d70,0x0) = 0 (0x0)
29816: fstat(3,{ mode=-rw-r--r-- ,inode=529128,size=47,blksize=4096 }) = 0 (0x0)
29790: close(21) = 0 (0x0)
29816: read(3,"# $FreeBSD$\nincludedir /usr/loc"...,47) = 47 (0x2f)
29790: close(23) = 0 (0x0)
29816: close(3) = 0 (0x0)
29816: open("/usr/local/etc/libmap.d",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,0165) = 3 (0x3)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: fcntl(3,F_ISUNIONSTACK,0x0) = 0 (0x0)
29790: writev(3,[{"\^R\0\^O\0\^F\0@\^C#\0\0\0#\0\0"...,88}],1) = 88 (0x58)
29816: getdirentries(3,"4\M^G\^C\0\0\0\0\0\^A\0\0\0\0\0"...,4096,{ 0x0 }) = 104 (0x68)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_newuname(0x82a4009a0) = 0 (0x0)
29816: open("/usr/local/etc/libmap.d/mesa.conf",O_RDONLY|O_CLOEXEC,0165) = 4 (0x4)
29816: fstat(4,{ mode=-rw-r--r-- ,inode=505824,size=38,blksize=4096 }) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 64 (0x40)
29816: read(4,"libGLX_indirect.so.0 libGLX_mesa"...,38) = 38 (0x26)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x4) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: getdirentries(3,0x80022c008,4096,{ 0x156b2338 }) = 0 (0x0)
29816: close(3) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libgio-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: open("/compat/ubuntu/opt/zoom/cef/libgio-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: linux_newstat("/etc/resolv.conf",0x82a4009e0) = 0 (0x0)
29816: open("/var/run/ld-elf.so.hints",O_RDONLY|O_CLOEXEC,010012267) = 3 (0x3)
29790: writev(3,[{"\^R\0\^F\0\^F\0@\^C'\0\0\0\^_\0"...,28},{0x0,0},{0x80693cb0c,0}],3) = 28 (0x1c)
29816: read(3,"Ehnt\^A\0\0\0\M^@\0\0\0_\^A\0\0"...,128) = 128 (0x80)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x4) ERR#-11 'Resource temporarily unavailable'
29816: fstat(3,{ mode=-r--r--r-- ,inode=690360,size=479,blksize=4096 }) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: pread(3,"/lib:/usr/lib:/usr/lib/compat:/u"...,351,0x80) = 351 (0x15f)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x4) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: open("/lib/libgio-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 64 (0x40)
29816: open("/usr/lib/libgio-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29816: open("/usr/lib/compat/libgio-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x808dbf57f,0x80000,0x0) = 21 (0x15)
29816: open("/usr/local/lib/libgio-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) = 3 (0x3)
29790: linux_sys_futex(0x7fffffffd888,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffd888,0x81,0x1,0x0,0x7fffffffd860,0x7fffffffd880) = 1 (0x1)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=471683,size=1917072,blksize=131072 }) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100066f0) = 1 (0x1)
29790: linux_newfstat(21,0x82a4003c0) = 0 (0x0)
29816: mmap(0x0,1937408,PROT_NONE,MAP_GUARD,-1,0x0) = 34362134528 (0x800249000)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29816: mmap(0x800249000,741376,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34362134528 (0x800249000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: mmap(0x8002fe000,1142784,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xb4000) = 34362875904 (0x8002fe000)
29816: mmap(0x800415000,32768,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1ca000) = 34364018688 (0x800415000)
29790: read(21,"# The "order" line is only used "...,4096) = 92 (0x5c)
29816: mmap(0x80041d000,12288,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d1000) = 34364051456 (0x80041d000)
29790: read(21,0x834000f50,4096) = 0 (0x0)
29816: mmap(0x800420000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34364063744 (0x800420000)
29790: close(21) = 0 (0x0)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: linux_sys_futex(0x808df54a4,0x81,0x7fffffff,0x0,0x0,0x0) = 0 (0x0)
29816: close(3) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libglib-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x808dbf530,0x80000,0x0) = 21 (0x15)
29816: open("/compat/ubuntu/opt/zoom/cef/libglib-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_newfstat(21,0x82a4005d0) = 0 (0x0)
29816: open("/lib/libglib-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: read(21,"# Generated by resolvconf\nsearc"...,4096) = 183 (0xb7)
29816: open("/usr/lib/libglib-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: read(21,0x834000fd0,4096) = 0 (0x0)
29816: open("/usr/lib/compat/libglib-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29816: open("/usr/local/lib/libglib-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29790: close(21) = 0 (0x0)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=471687,size=1287696,blksize=131072 }) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_sys_futex(0x711b990,0x189,0x0,0x81b458d40,0x0,0xffffffff) ERR#-110 'Operation timed out'
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: writev(3,[{"\^R\0\a\0\^F\0@\^C\M-#\^A\0\0\^D"...,72},{"@\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0"...,16392},{0x8069f11f4,0}],3) = 16464 (0x4050)
29816: mmap(0x0,1302528,PROT_NONE,MAP_GUARD,-1,0x0) = 34364071936 (0x800422000)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_socket(0x1,0x80801,0x0) = 21 (0x15)
29816: mmap(0x800422000,675840,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34364071936 (0x800422000)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 64 (0x40)
29816: mmap(0x8004c7000,610304,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xa4000) = 34364747776 (0x8004c7000)
29816: mmap(0x80055c000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x138000) = 34365358080 (0x80055c000)
29790: linux_sys_futex(0x711b940,0x81,0x1,0x0,0x0,0x3) = 0 (0x0)
29816: mmap(0x80055e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x139000) = 34365366272 (0x80055e000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_connect(0x15,0x82a4005e0,0x6e) ERR#-2 'No such file or directory'
29816: mmap(0x80055f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34365370368 (0x80055f000)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: gettimeofday({ 1657909302.599832 },0x0) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: close(21) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libgobject-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_socket(0x1,0x80801,0x0) = 21 (0x15)
29816: open("/compat/ubuntu/opt/zoom/cef/libgobject-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_connect(0x15,0x82a4007d0,0x6e) ERR#-2 'No such file or directory'
29816: open("/lib/libgobject-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: close(21) = 0 (0x0)
29816: open("/usr/lib/libgobject-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29816: open("/usr/lib/compat/libgobject-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x808dbf714,0x80000,0x0) = 21 (0x15)
29816: open("/usr/local/lib/libgobject-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29790: linux_newfstat(21,0x82a400820) = 0 (0x0)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=471695,size=368768,blksize=131072 }) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: read(21,"# /etc/nsswitch.conf\n#\n# Examp"...,4096) = 510 (0x1fe)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: read(21,0x834002020,4096) = 0 (0x0)
29816: mmap(0x0,385024,PROT_NONE,MAP_GUARD,-1,0x0) = 34365374464 (0x800560000)
29790: close(21) = 0 (0x0)
29816: mmap(0x800560000,159744,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34365374464 (0x800560000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x800587000,200704,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x26000) = 34365534208 (0x800587000)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x8005b8000,16384,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x56000) = 34365734912 (0x8005b8000)
29790: writev(3,[{"\^Y\0\v\0\a\0@\^B\0\0\0\0! \0\0"...,72}],1) = 72 (0x48)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: mmap(0x8005bc000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x59000) = 34365751296 (0x8005bc000)
29790: gettimeofday({ 1657909302.601278 },0x0) = 0 (0x0)
29816: mmap(0x8005bd000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34365755392 (0x8005bd000)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x8100066f0) ERR#-11 'Resource temporarily unavailable'
29816: close(3) = 0 (0x0)
29790: gettimeofday({ 1657909302.601429 },0x0) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461345 (0x258ea1)
29816: open("/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29816: open("/usr/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 96 (0x60)
29816: open("/usr/lib/compat/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29816: open("/usr/local/lib/libintl.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100066f0) = 0 (0x0)
29816: fstat(3,{ mode=-rw-r--r-- ,inode=207032,size=56520,blksize=56832 }) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29816: mmap(0x0,57344,PROT_NONE,MAP_GUARD,-1,0x0) = 34365759488 (0x8005be000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mmap(0x8005be000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34365759488 (0x8005be000)
29790: writev(3,[{"\^R\0\^F\0\^F\0@\^C'\0\0\0\^_\0"...,24},{0x0,0},{0x80693cb0c,0}],3) = 24 (0x18)
29816: mmap(0x8005c2000,28672,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x3000) = 34365775872 (0x8005c2000)
29790: linux_openat(0xffffff9c,0x82a3fff00,0x80000,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x8005c9000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34365804544 (0x8005c9000)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: mmap(0x8005ca000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x9000) = 34365808640 (0x8005ca000)
29790: linux_openat(0xffffff9c,0x806852b80,0x80000,0x0) = 21 (0x15)
29816: mmap(0x8005cb000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34365812736 (0x8005cb000)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: linux_newfstat(21,0x82a3fff90) = 0 (0x0)
29816: close(3) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_mmap2(0x0,0x8532,0x1,0x2,0x15,0x0) = 34469179392 (0x80685f000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: open("/compat/ubuntu/opt/zoom/cef/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: close(21) = 0 (0x0)
29816: open("/lib/libc.so.7",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 3 (0x3)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: fstat(3,{ mode=-r--r--r-- ,inode=527311,size=1940232,blksize=131072 }) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 96 (0x60)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_openat(0xffffff9c,0x834001b00,0x80000,0x0) = 21 (0x15)
29816: mmap(0x0,4218880,PROT_NONE,MAP_GUARD,-1,0x0) = 34365816832 (0x8005cc000)
29816: mmap(0x8005cc000,532480,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34365816832 (0x8005cc000)
29790: read(21,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29790: linux_newfstat(21,0x82a3fffe0) = 0 (0x0)
29816: mmap(0x80064e000,1351680,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x81000) = 34366349312 (0x80064e000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mmap(0x800798000,40960,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1ca000) = 34367700992 (0x800798000)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: mmap(0x8007a2000,24576,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d3000) = 34367741952 (0x8007a2000)
29790: writev(3,[{"\^R\0\^F\0\^F\0@\^Cw\^A\0\0i\^A"...,48},{"@\0\0\0@\0\0\0\0\0\0\0\0\0\0\0\0"...,16392},{0x8069f11f4,0}],3) = 16440 (0x4038)
29816: mmap(0x8007a8000,2269184,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34367766528 (0x8007a8000)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x8100066f0) ERR#-11 'Resource temporarily unavailable'
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29816: open("/compat/ubuntu/opt/zoom/libgmodule-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libgmodule-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100066f0) = 0 (0x0)
29816: open("/lib/libgmodule-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_mmap2(0x0,0x13738,0x1,0x802,0x15,0x0) = 34504339456 (0x8089e7000)
29816: open("/usr/lib/libgmodule-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: open("/usr/lib/compat/libgmodule-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_mmap2(0x8089ea000,0x7000,0x5,0x812,0x15,0x3000) = 34504351744 (0x8089ea000)
29816: open("/usr/local/lib/libgmodule-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=471691,size=13320,blksize=13824 }) = 0 (0x0)
29790: linux_mmap2(0x8089f1000,0x2000,0x1,0x812,0x15,0xa000) = 34504380416 (0x8089f1000)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_mmap2(0x8089f3000,0x2000,0x3,0x812,0x15,0xb000) = 34504388608 (0x8089f3000)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34370035712 (0x8009d2000)
29790: linux_mmap2(0x8089f5000,0x5738,0x3,0x32,0xffffffff,0x0) = 34504396800 (0x8089f5000)
29816: mmap(0x8009d2000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370035712 (0x8009d2000)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 64 (0x40)
29816: mmap(0x8009d4000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1000) = 34370043904 (0x8009d4000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: mmap(0x8009d6000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34370052096 (0x8009d6000)
29790: close(21) = 0 (0x0)
29816: mmap(0x8009d7000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x2000) = 34370056192 (0x8009d7000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: munmap(0x800248000,4096) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: linux_mprotect(0x8089f3000,0x1000,0x1) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libz.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,011123055000) ERR#2 'No such file or directory'
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: open("/compat/ubuntu/opt/zoom/cef/libz.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,011123055000) ERR#2 'No such file or directory'
29790: writev(3,[{"b\0\^D\0\^F\0@\^C",8},{"RENDER",6},{"\0\0",2}],3) = 16 (0x10)
29816: open("/lib/libz.so.6",O_RDONLY|O_CLOEXEC|O_VERIFY,011123055000) = 3 (0x3)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: munmap(0x80685f000,34098) = 0 (0x0)
29816: fstat(3,{ mode=-r--r--r-- ,inode=529821,size=105968,blksize=105984 }) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100066f0) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29816: mmap(0x0,118784,PROT_NONE,MAP_GUARD,-1,0x0) = 34370060288 (0x8009d8000)
29816: mmap(0x8009d8000,36864,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370060288 (0x8009d8000)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29816: mmap(0x8009e1000,69632,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x8000) = 34370097152 (0x8009e1000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mmap(0x8009f2000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x18000) = 34370166784 (0x8009f2000)
29790: linux_openat(0xffffff9c,0x8089f1077,0x80000,0x0) = 21 (0x15)
29816: mmap(0x8009f4000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x19000) = 34370174976 (0x8009f4000)
29790: writev(3,[{"\M^K\0\^C\0\0\0\0\0\v\0\0\0\M^K"...,16},{0x0,0},{0x80693cb0c,0}],3) = 16 (0x10)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: munmap(0x800248000,4096) = 0 (0x0)
29816: close(3) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libpcre.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_lseek(21,0,SEEK_CUR) = 0 (0x0)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 32 (0x20)
29816: open("/compat/ubuntu/opt/zoom/cef/libpcre.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29816: open("/lib/libpcre.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_sys_futex(0x7fffffffd798,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffd798,0x81,0x1,0x0,0x7fffffffd770,0x7fffffffd790) = 1 (0x1)
29816: open("/usr/lib/libpcre.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_newfstat(21,0x82a4007d0) = 0 (0x0)
29816: open("/usr/lib/compat/libpcre.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) ERR#-11 'Resource temporarily unavailable'
29816: open("/usr/local/lib/libpcre.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x8100066f0) = 0 (0x0)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=459302,size=631168,blksize=131072 }) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: read(21,"127.0.0.1\tlocalhost\n::1\t\tloc"...,4096) = 109 (0x6d)
29816: mmap(0x0,643072,PROT_NONE,MAP_GUARD,-1,0x0) = 34370179072 (0x8009f5000)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 4096 (0x1000)
29816: mmap(0x8009f5000,126976,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370179072 (0x8009f5000)
29816: mmap(0x800a14000,507904,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x1e000) = 34370306048 (0x800a14000)
29790: linux_lseek(21,0,SEEK_CUR) = 109 (0x6d)
29790: linux_recvfrom(0x3,0x810007f80,0x634,0x0,0x0,0x0) = 1588 (0x634)
29816: mmap(0x800a90000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x99000) = 34370813952 (0x800a90000)
29816: mmap(0x800a91000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x99000) = 34370818048 (0x800a91000)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x0) = 1 (0x1)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: read(21,0x8340024e0,4096) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libiconv.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libiconv.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: close(21) = 0 (0x0)
29816: open("/lib/libiconv.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x82a3fff80,0x80000,0x0) ERR#-2 'No such file or directory'
29816: open("/usr/lib/libiconv.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x806852b80,0x80000,0x0) = 21 (0x15)
29816: open("/usr/lib/compat/libiconv.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) ERR#2 'No such file or directory'
29790: linux_newfstat(21,0x82a400000) = 0 (0x0)
29816: open("/usr/local/lib/libiconv.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,066000) = 3 (0x3)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=223760,size=1083920,blksize=131072 }) = 0 (0x0)
29790: linux_mmap2(0x0,0x8532,0x1,0x2,0x15,0x0) = 34469179392 (0x80685f000)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: close(21) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: linux_openat(0xffffff9c,0x834001cd0,0x80000,0x0) = 21 (0x15)
29816: mmap(0x0,1040384,PROT_NONE,MAP_GUARD,-1,0x0) = 34370822144 (0x800a92000)
29790: read(21,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29816: mmap(0x800a92000,929792,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34370822144 (0x800a92000)
29790: linux_newfstat(21,0x82a400050) = 0 (0x0)
29816: mmap(0x800b75000,98304,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xe2000) = 34371751936 (0x800b75000)
29790: linux_mmap2(0x0,0x80d8,0x1,0x802,0x15,0x0) = 34508599296 (0x808df7000)
29816: mmap(0x800b8d000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xfa000) = 34371850240 (0x800b8d000)
29790: linux_mmap2(0x808df9000,0x4000,0x5,0x812,0x15,0x2000) = 34508607488 (0x808df9000)
29816: mmap(0x800b8f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0xfb000) = 34371858432 (0x800b8f000)
29790: linux_mmap2(0x808dfd000,0x1000,0x1,0x812,0x15,0x6000) = 34508623872 (0x808dfd000)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: linux_mmap2(0x808dfe000,0x2000,0x3,0x812,0x15,0x6000) = 34508627968 (0x808dfe000)
29816: close(3) = 0 (0x0)
29790: close(21) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libutil.so.9",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libutil.so.9",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_mprotect(0x808dfe000,0x1000,0x1) = 0 (0x0)
29816: open("/lib/libutil.so.9",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 3 (0x3)
29790: munmap(0x80685f000,34098) = 0 (0x0)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: fstat(3,{ mode=-r--r--r-- ,inode=529788,size=79064,blksize=79360 }) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_clock_gettime(0x1,0x82a3ff550) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29816: mmap(0x0,98304,PROT_NONE,MAP_GUARD,-1,0x0) = 34371862528 (0x800b90000)
29790: linux_socket(0x2,0x80802,0x0) = 21 (0x15)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x800b90000,32768,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371862528 (0x800b90000)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x800b98000,45056,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x7000) = 34371895296 (0x800b98000)
29790: gettimeofday({ 1657909302.612390 },0x0) = 0 (0x0)
29816: mmap(0x800ba3000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x11000) = 34371940352 (0x800ba3000)
29790: gettimeofday({ 1657909302.612486 },0x0) = 0 (0x0)
29816: mmap(0x800ba5000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x12000) = 34371948544 (0x800ba5000)
29816: mmap(0x800ba6000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34371952640 (0x800ba6000)
29790: linux_times(0x81a456d90) = 2461347 (0x258ea3)
29790: linux_setsockopt(0x15,0x0,0xb,0x82a3ff394,0x4) = 0 (0x0)
29816: munmap(0x800248000,4096) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: linux_connect(0x15,0x82a401dcc,0x10) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) ERR#2 'No such file or directory'
29790: linux_clock_gettime(0x0,0x82a3ff500) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/cef/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) ERR#2 'No such file or directory'
29790: poll({ 21/POLLOUT },1,0) = 1 (0x1)
29816: open("/lib/libthr.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,012320443000) = 3 (0x3)
29790: linux_sendto(0x15,0x82a3ff660,0x2a,0x4000,0x0,0x0) = 42 (0x2a)
29816: fstat(3,{ mode=-r--r--r-- ,inode=527309,size=128224,blksize=128512 }) = 0 (0x0)
29790: linux_newuname(0x7fffffffc760) = 0 (0x0)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: linux_openat(0xffffff9c,0x7fffffffc930,0x0,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x0,188416,PROT_NONE,MAP_GUARD,-1,0x0) = 34371960832 (0x800ba8000)
29790: linux_openat(0xffffff9c,0x7643c10,0x0,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x800ba8000,53248,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34371960832 (0x800ba8000)
29790: linux_openat(0xffffff9c,0x7643280,0x0,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x800bb5000,73728,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0xc000) = 34372014080 (0x800bb5000)
29790: linux_openat(0xffffff9c,0x7645ba0,0x0,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x800bc7000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1d000) = 34372087808 (0x800bc7000)
29790: linux_openat(0xffffff9c,0x76457e0,0x0,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x800bc9000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x1e000) = 34372096000 (0x800bc9000)
29790: linux_openat(0xffffff9c,0x7645850,0x0,0x0) ERR#-2 'No such file or directory'
29816: mmap(0x800bca000,49152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_ANON,-1,0x0) = 34372100096 (0x800bca000)
29790: linux_openat(0xffffff9c,0x7644820,0x0,0x0) ERR#-2 'No such file or directory'
29816: munmap(0x800248000,4096) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x7643b70,0x0,0x0) ERR#-2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/libffi.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,046000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7643b70,0x0,0x0) ERR#-2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libffi.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,046000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7643b70,0x0,0x0) ERR#-2 'No such file or directory'
29816: open("/lib/libffi.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,046000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7644f90,0x0,0x0) ERR#-2 'No such file or directory'
29816: open("/usr/lib/libffi.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,046000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7643b70,0x0,0x0) ERR#-2 'No such file or directory'
29816: open("/usr/lib/compat/libffi.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,046000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x7644f90,0x0,0x0) ERR#-2 'No such file or directory'
29816: open("/usr/local/lib/libffi.so.8",O_RDONLY|O_CLOEXEC|O_VERIFY,046000) = 3 (0x3)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: fstat(3,{ mode=-rwxr-xr-x ,inode=232189,size=33464,blksize=33792 }) = 0 (0x0)
29790: writev(3,[{"-\0\^E\0\^A\0@\^C\^F\0\0\0cursor"...,52},{0x0,0},{0x80693cb0c,0}],3) = 52 (0x34)
29816: fstatfs(3,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,3,0x0) = 34362130432 (0x800248000)
29790: writev(3,[{"\^B\0\^D\0\^F\0@\^C\0@\0\0\t\0@"...,16}],1) = 16 (0x10)
29816: mmap(0x0,45056,PROT_NONE,MAP_GUARD,-1,0x0) = 34372149248 (0x800bd6000)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29816: mmap(0x800bd6000,12288,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x0) = 34372149248 (0x800bd6000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mmap(0x800bd9000,24576,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,3,0x2000) = 34372161536 (0x800bd9000)
29790: writev(3,[{"\^B\0\^D\0\^F\0@\^C\0@\0\0\t\0@"...,16}],1) = 16 (0x10)
29816: mmap(0x800bdf000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372186112 (0x800bdf000)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mmap(0x800be0000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,3,0x7000) = 34372190208 (0x800be0000)
29790: writev(3,[{"\^R\0\^X\0\^F\0@\^C(\0\0\0)\0\0"...,132}],1) = 132 (0x84)
29816: munmap(0x800248000,4096) = 0 (0x0)
29790: poll({ 3/POLLIN },1,-1) = 1 (0x1)
29816: close(3) = 0 (0x0)
29790: poll({ 21/POLLIN },1,5000) = 1 (0x1)
29790: linux_recvmsg(0x3,0x80ea09ba0,0x0) = 64 (0x40)
29816: mprotect(0x800415000,28672,PROT_READ) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffda58,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29790: linux_sys_futex(0x7fffffffda58,0x81,0x1,0x0,0x7fffffffda30,0x7fffffffda50) = 1 (0x1)
29816: mprotect(0x80055c000,4096,PROT_READ) = 0 (0x0)
29790: linux_ioctl(0x15,0x541b,0x82a3ff4fc) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffda50) = 1 (0x1)
29816: mprotect(0x8005b8000,12288,PROT_READ) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x0) = 0 (0x0)
29816: mprotect(0x8005c9000,4096,PROT_READ) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x80,0x2,0x0,0x0,0x7fffffffda50) ERR#-11 'Resource temporarily unavailable'
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x1) = 0 (0x0)
29790: linux_sys_futex(0x6f10a78,0x81,0x1,0x0,0x0,0x7fffffffda50) = 0 (0x0)
29816: mprotect(0x800798000,36864,PROT_READ) = 0 (0x0)
29790: poll({ 3/POLLIN|POLLOUT },1,-1) = 1 (0x1)
29816: mprotect(0x8009f2000,4096,PROT_READ) = 0 (0x0)
29790: write(5,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: writev(3,[{"\^S\0\^C\0\^F\0@\^C{\^A\0\0",12}],1) = 12 (0xc)
29816: mprotect(0x800b8d000,8192,PROT_READ) = 0 (0x0)
29790: linux_recvfrom(0x15,0x82a400160,0x400,0x0,0x82a3ff540,0x82a3ff520) = 58 (0x3a)
29816: mprotect(0x800ba3000,4096,PROT_READ) = 0 (0x0)
29790: close(21) = 0 (0x0)
29816: mprotect(0x800bc7000,4096,PROT_READ) = 0 (0x0)
29790: linux_clock_gettime(0x2,0x82a400c30) = 0 (0x0)
29816: mprotect(0x800798000,36864,PROT_READ|PROT_WRITE) = 0 (0x0)
29816: mprotect(0x800798000,36864,PROT_READ) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/accessible/.",F_OK) ERR#-2 'No such file or directory'
29790: linux_newstat("/etc/resolv.conf",0x82a4008d0) = 0 (0x0)
29816: readlink("/etc/malloc.conf",0x7fffffffcfb0,1024) ERR#2 'No such file or directory'
29816: issetugid() = 0 (0x0)
29790: linux_newstat("/etc/resolv.conf",0x82a4008d0) = 0 (0x0)
29816: __sysctl("vm.overcommit",2,0x7fffffffb53c,0x7fffffffb530,0x0,0) = 0 (0x0)
29790: linux_newstat("/etc/resolv.conf",0x82a4008d0) = 0 (0x0)
29816: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34372321280 (0x800c00000)
29790: linux_socket(0x2,0x2,0x11) = 21 (0x15)
29816: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(12),-1,0x0) = 34374418432 (0x800e00000)
29790: linux_bind(0x15,0x82a400c30,0x10) = 0 (0x0)
29816: mmap(0x0,4194304,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34376515584 (0x801000000)
29790: linux_getcwd(0x7fffffffcc60,0x1000) = 24 (0x18)
29816: __sysctl("kern.usrstack",2,0x800bc9c88,0x7fffffffd438,0x0,0) = 0 (0x0)
29790: linux_newuname(0x7fffffffd800) = 0 (0x0)
29816: getrlimit(RLIMIT_STACK,{ cur=8388608,max=536870912 }) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 23 (0x17)
29816: thr_self(0x800e12000) = 0 (0x0)
29790: linux_newfstat(23,0x7fffffffd6e0) = 0 (0x0)
29816: mmap(0x7fffff7fe000,4096,PROT_NONE,MAP_ANON,-1,0x0) = 34362130432 (0x800248000)
29790: read(23,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29816: rtprio_thread(RTP_LOOKUP,100346,0x7fffffffd3f8) = 0 (0x0)
29790: close(23) = 0 (0x0)
29816: sigaction(SIGTHR,{ 0x800bc1b50 SA_SIGINFO ss_t },0x0) = 0 (0x0)
29816: sigprocmask(SIG_UNBLOCK,{ },0x0) = 0 (0x0)
29816: _umtx_op(0x7fffffffd3f0,UMTX_OP_WAKE,0x1,0x0,0x0) = 0 (0x0)
29790: write(8,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: poll({ 8/POLLIN },1,-1) = 1 (0x1)
29816: mprotect(0x0,0,PROT_NONE) = 0 (0x0)
29816: getpid() = 29816 (0x7478)
29790: read(8,"\^A\0\0\0\0\0\0\0",16) = 8 (0x8)
29816: getpid() = 29816 (0x7478)
29816: sigprocmask(SIG_BLOCK,{ SIGHUP|SIGINT|SIGQUIT|SIGILL|SIGTRAP|SIGABRT|SIGEMT|SIGFPE|SIGKILL|SIGBUS|SIGSEGV|SIGSYS|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2 },{ }) = 0 (0x0)
29816: sigfastblock(0x3,0x0) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick.2.12",0x80f60b2d0) ERR#-2 'No such file or directory'
29816: sigprocmask(SIG_SETMASK,{ },0x0) = 0 (0x0)
29816: sigfastblock(0x1,0x800e12038) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick.2",0x80f60b2d0) = 0 (0x0)
29816: getcontext(0x7fffffffcde0) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick.2/qmldir",F_OK) = 0 (0x0)
29816: sysarch(AMD64_GET_XFPUSTATE,0x7fffffffcda8) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x814003618,0x80000,0x0) = 23 (0x17)
29816: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34380709888 (0x801400000)
29790: linux_newfstat(23,0x80f60aff0) = 0 (0x0)
29790: linux_newfstat(23,0x80f60b0a0) = 0 (0x0)
29790: linux_newfstat(23,0x80f60b090) = 0 (0x0)
29790: read(23,"module QtQuick\nplugin qtquick2p"...,16384) = 106 (0x6a)
29816: open("/usr/share/locale/en_US.UTF-8/LC_COLLATE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29790: read(23,0x81400bfe2,16278) = 0 (0x0)
29816: fstat(3,{ mode=-r--r--r-- ,inode=535218,size=79692,blksize=79872 }) = 0 (0x0)
29790: close(23) = 0 (0x0)
29816: mmap(0x0,79692,PROT_READ,MAP_PRIVATE,3,0x0) = 34372194304 (0x800be1000)
29816: close(3) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick.2/libqtquick2plugin.so",F_OK) = 0 (0x0)
29816: open("/usr/share/locale/en_US.UTF-8/LC_CTYPE",O_RDONLY|O_CLOEXEC,013720646057) = 3 (0x3)
29816: fstat(3,{ mode=-r--r--r-- ,inode=536347,size=51056,blksize=51200 }) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick.2/libqtquick2plugin.so",0x80f60add0) = 0 (0x0)
29816: mmap(0x0,51056,PROT_READ,MAP_PRIVATE,3,0x0) = 34380845056 (0x801421000)
29790: linux_newlstat(0x81400c1f0,0x80f60ace0) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: linux_newlstat(0x81400c1f0,0x80f60ace0) = 0 (0x0)
29790: linux_newlstat(0x81400c1f0,0x80f60ace0) = 0 (0x0)
29816: munmap(0x801421000,51056) = 0 (0x0)
29790: linux_newlstat(0x81400c1f0,0x80f60ace0) = 0 (0x0)
29816: open("/usr/share/locale/en_US.UTF-8/LC_MONETARY",O_RDONLY|O_CLOEXEC,014335262400) = 3 (0x3)
29790: linux_newlstat(0x81400c1f0,0x80f60ace0) = 0 (0x0)
29816: fstat(3,{ mode=-r--r--r-- ,inode=534800,size=32,blksize=4096 }) = 0 (0x0)
29790: linux_newlstat(0x81400c1f0,0x80f60ace0) = 0 (0x0)
29816: read(3,"USD \n$\n.\n,\n3\n\n-\n2\n2\n1\n"...,32) = 32 (0x20)
29790: linux_openat(0xffffff9c,0x81400c368,0x80000,0x0) = 23 (0x17)
29816: close(3) = 0 (0x0)
29790: linux_newfstat(23,0x80f60acc0) = 0 (0x0)
29816: open("/usr/share/locale/en_US.UTF-8/LC_NUMERIC",O_RDONLY|O_CLOEXEC,025242400) = 3 (0x3)
29790: linux_newfstat(23,0x80f60adb0) = 0 (0x0)
29816: fstat(3,{ mode=-r--r--r-- ,inode=535217,size=6,blksize=4096 }) = 0 (0x0)
29790: linux_mmap2(0x0,0x3ce8,0x1,0x1,0x17,0x0) = 34469179392 (0x80685f000)
29816: read(3,".\n,\n3\n",6) = 6 (0x6)
29790: close(23) = 0 (0x0)
29816: close(3) = 0 (0x0)
29790: munmap(0x80685f000,15592) = 0 (0x0)
29816: open("/usr/share/locale/en_US.UTF-8/LC_TIME",O_RDONLY|O_CLOEXEC,00) = 3 (0x3)
29790: linux_openat(0xffffff9c,0x81400c960,0x80000,0x0) ERR#-2 'No such file or directory'
29816: fstat(3,{ mode=-r--r--r-- ,inode=535875,size=377,blksize=4096 }) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick.2/libqtquick2plugin.so.avx2",F_OK) ERR#-2 'No such file or directory'
29816: read(3,"Jan\nFeb\nMar\nApr\nMay\nJun\nJu"...,377) = 377 (0x179)
29790: linux_openat(0xffffff9c,0x81400cbc0,0x80000,0x0) = 23 (0x17)
29816: close(3) = 0 (0x0)
29790: read(23,"\^?ELF\^B\^A\^A\0\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29816: open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES",O_RDONLY|O_CLOEXEC,011320443400) = 3 (0x3)
29790: linux_newfstat(23,0x80f60a540) = 0 (0x0)
29816: fstat(3,{ mode=-r--r--r-- ,inode=534801,size=74,blksize=4096 }) = 0 (0x0)
29816: read(3,"^(([yY]([eE][sS])?)|([yY]))\n^(("...,74) = 74 (0x4a)
29790: linux_mmap2(0x0,0x2020c8,0x5,0x802,0x17,0x0) = 35074867200 (0x82aa00000)
29816: close(3) = 0 (0x0)
29790: linux_mprotect(0x82aa02000,0x1ff000,0x0) = 0 (0x0)
29816: issetugid() = 0 (0x0)
29790: linux_mmap2(0x82ac01000,0x2000,0x3,0x812,0x17,0x1000) = 35076968448 (0x82ac01000)
29816: openat(AT_FDCWD,"/usr/share/glib-2.0/schemas/gschemas.compiled",O_RDONLY,00) ERR#2 'No such file or directory'
29790: close(23) = 0 (0x0)
29816: getuid() = 1002 (0x3ea)
29816: geteuid() = 1002 (0x3ea)
29816: getgid() = 1002 (0x3ea)
29816: getegid() = 1002 (0x3ea)
29790: linux_mprotect(0x82ac01000,0x1000,0x1) = 0 (0x0)
29816: openat(AT_FDCWD,"/usr/local/share/locale/en_US.UTF-8/LC_MESSAGES/glib20.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29816: openat(AT_FDCWD,"/usr/local/share/locale/en_US.utf8/LC_MESSAGES/glib20.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29816: openat(AT_FDCWD,"/usr/local/share/locale/en_US/LC_MESSAGES/glib20.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29816: openat(AT_FDCWD,"/usr/local/share/locale/en.UTF-8/LC_MESSAGES/glib20.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29816: openat(AT_FDCWD,"/usr/local/share/locale/en.utf8/LC_MESSAGES/glib20.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29816: openat(AT_FDCWD,"/usr/local/share/locale/en/LC_MESSAGES/glib20.mo",O_RDONLY,00) ERR#2 'No such file or directory'
29816: fstatat(AT_FDCWD,"/usr/share/nls/en_US.UTF-8/libc.cat",0x7fffffffdce0,0x0) ERR#2 'No such file or directory'
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/share/nls/libc/en_US.UTF-8",0x7fffffffdce0,0x0) ERR#2 'No such file or directory'
29790: linux_mprotect(0x814021000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/share/nls/en_US.UTF-8/libc.cat",0x7fffffffdce0,0x0) ERR#2 'No such file or directory'
29790: linux_mprotect(0x814022000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/share/nls/libc/en_US.UTF-8",0x7fffffffdce0,0x0) ERR#2 'No such file or directory'
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: openat(AT_FDCWD,"/usr/local/share/glib-2.0/schemas/gschemas.compiled",O_RDONLY,00) = 3 (0x3)
29790: gettimeofday({ 1657909302.623064 },0x0) = 0 (0x0)
29816: fstat(3,{ mode=-rw-r--r-- ,inode=75807,size=228093,blksize=131072 }) = 0 (0x0)
29790: gettimeofday({ 1657909302.623144 },0x0) = 0 (0x0)
29816: mmap(0x0,228093,PROT_READ,MAP_PRIVATE,3,0x0) = 34380845056 (0x801421000)
29816: close(3) = 0 (0x0)
29790: linux_times(0x81a456d90) = 2461348 (0x258ea4)
29816: openat(AT_FDCWD,"/home/csgordon/.local/share/glib-2.0/schemas/gschemas.compiled",O_RDONLY,00) ERR#2 'No such file or directory'
29790: linux_mprotect(0x814023000,0x1000,0x3) = 0 (0x0)
29816: __specialfd(0x1,0x7fffffffddf8,0x8) = 3 (0x3)
29790: linux_mprotect(0x814024000,0x1000,0x3) = 0 (0x0)
29816: write(3,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_mprotect(0x814025000,0x1000,0x3) = 0 (0x0)
29816: issetugid() = 0 (0x0)
29790: linux_mprotect(0x814026000,0x1000,0x3) = 0 (0x0)
29816: issetugid() = 0 (0x0)
29790: linux_mprotect(0x814027000,0x1000,0x3) = 0 (0x0)
29816: open("/usr/local/lib/gio/modules",O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC,00) = 4 (0x4)
29816: fcntl(4,F_ISUNIONSTACK,0x0) = 0 (0x0)
29790: linux_mprotect(0x814028000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/giomodule.cache",{ mode=-rw-r--r-- ,inode=605130,size=363,blksize=4096 },0x0) = 0 (0x0)
29816: openat(AT_FDCWD,"/usr/local/lib/gio/modules/giomodule.cache",O_RDONLY,00) = 5 (0x5)
29790: linux_mprotect(0x814029000,0x1000,0x3) = 0 (0x0)
29816: fstat(5,{ mode=-rw-r--r-- ,inode=605130,size=363,blksize=4096 }) = 0 (0x0)
29790: linux_mprotect(0x81402a000,0x1000,0x3) = 0 (0x0)
29816: read(5,"libdconfsettings.so: gsettings-b"...,363) = 363 (0x16b)
29816: close(5) = 0 (0x0)
29790: linux_mprotect(0x81402b000,0x1000,0x3) = 0 (0x0)
29790: linux_mprotect(0x81402c000,0x1000,0x3) = 0 (0x0)
29816: getdirentries(4,"\M-V)\^C\0\0\0\0\0\^A\0\0\0\0\0"...,4096,{ 0x0 }) = 552 (0x228)
29790: linux_mprotect(0x81402d000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libdconfsettings.so",{ mode=-rwxr-xr-x ,inode=480496,size=65464,blksize=65536 },0x0) = 0 (0x0)
29790: linux_mprotect(0x81402e000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgiognutls.so",{ mode=-rwxr-xr-x ,inode=481118,size=138352,blksize=131072 },0x0) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgsettingsgconfbackend.so",{ mode=-rwxr-xr-x ,inode=526630,size=24704,blksize=25088 },0x0) = 0 (0x0)
29790: linux_mprotect(0x81402f000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgioenvironmentproxy.so",{ mode=-rwxr-xr-x ,inode=481116,size=10120,blksize=10240 },0x0) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgvfsdbus.so",{ mode=-rwxr-xr-x ,inode=531455,size=219112,blksize=131072 },0x0) = 0 (0x0)
29790: linux_mprotect(0x814030000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgiolibproxy.so",{ mode=-rwxr-xr-x ,inode=481119,size=12504,blksize=12800 },0x0) = 0 (0x0)
29790: linux_mprotect(0x814031000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgiognomeproxy.so",{ mode=-rwxr-xr-x ,inode=481117,size=16968,blksize=17408 },0x0) = 0 (0x0)
29790: linux_mprotect(0x814032000,0x1000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgioremote-volume-monitor.so",{ mode=-rwxr-xr-x ,inode=531454,size=126000,blksize=126464 },0x0) = 0 (0x0)
29816: getdirentries(4,0x800e48000,4096,{ 0x1efdde40 }) = 0 (0x0)
29790: linux_mprotect(0x814033000,0x1000,0x3) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_mprotect(0x814034000,0x1000,0x3) = 0 (0x0)
29816: access("/.flatpak-info",F_OK) ERR#2 'No such file or directory'
29790: linux_mprotect(0x814035000,0x10000,0x3) = 0 (0x0)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libgsettingsgconfbackend.so",{ mode=-rwxr-xr-x ,inode=526630,size=24704,blksize=25088 },0x0) = 0 (0x0)
29816: __sysctl("kern.ostype",2,0x80022628a,0x7fffffffc430,0x0,0) = 0 (0x0)
29816: __sysctl("kern.hostname",2,0x80022638a,0x7fffffffc430,0x0,0) = 0 (0x0)
29816: __sysctl("kern.osrelease",2,0x80022648a,0x7fffffffc430,0x0,0) = 0 (0x0)
29790: linux_mprotect(0x814045000,0x1000,0x3) = 0 (0x0)
29816: __sysctl("kern.version",2,0x80022658a,0x7fffffffc430,0x0,0) = 0 (0x0)
29790: linux_mprotect(0x814046000,0x1000,0x3) = 0 (0x0)
29816: __sysctl("hw.machine",2,0x80022668a,0x7fffffffc430,0x0,0) = 0 (0x0)
29790: linux_mprotect(0x814047000,0x1000,0x3) = 0 (0x0)
29816: open("/usr/local/lib/gio/modules/libgsettingsgconfbackend.so",O_RDONLY|O_CLOEXEC|O_VERIFY,015135072145) = 4 (0x4)
29816: fstat(4,{ mode=-rwxr-xr-x ,inode=526630,size=24704,blksize=25088 }) = 0 (0x0)
29790: linux_mprotect(0x814048000,0x1000,0x3) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_mprotect(0x814049000,0x1000,0x3) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_mprotect(0x81404a000,0x1000,0x3) = 0 (0x0)
29816: mmap(0x0,36864,PROT_NONE,MAP_GUARD,-1,0x0) = 34372280320 (0x800bf6000)
29816: mmap(0x800bf6000,16384,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34372280320 (0x800bf6000)
29790: linux_mprotect(0x81404b000,0x1000,0x3) = 0 (0x0)
29816: mmap(0x800bfa000,12288,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x3000) = 34372296704 (0x800bfa000)
29790: linux_mprotect(0x81404c000,0x1000,0x3) = 0 (0x0)
29816: mmap(0x800bfd000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x5000) = 34372308992 (0x800bfd000)
29790: linux_mprotect(0x81404d000,0x1000,0x3) = 0 (0x0)
29816: mmap(0x800bfe000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x5000) = 34372313088 (0x800bfe000)
29790: linux_sys_futex(0x6f5c614,0x81,0x1,0x0,0x6f5c5e8,0x6f5c608) = 1 (0x1)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29790: linux_sys_futex(0x6f5c614,0x80,0x0,0x0,0x0,0x4) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_sys_futex(0x6f5c5c0,0x81,0x1,0x0,0x0,0x6f5c608) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libgconf-2.so.4",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_sys_futex(0x6f5c5c0,0x80,0x2,0x0,0x0,0x4) ERR#-11 'Resource temporarily unavailable'
29816: open("/compat/ubuntu/opt/zoom/cef/libgconf-2.so.4",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_sys_futex(0x6f5c5c0,0x81,0x1,0x0,0x0,0x4) = 0 (0x0)
29816: open("/usr/local/lib/libgconf-2.so.4",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 4 (0x4)
29816: fstat(4,{ mode=-rwxr-xr-x ,inode=526634,size=198048,blksize=131072 }) = 0 (0x0)
29790: linux_sys_futex(0x6f5c610,0x81,0x1,0x0,0x6f5c5e8,0x6f5c608) = 1 (0x1)
29790: linux_sys_futex(0x6f5c610,0x80,0x0,0x0,0x0,0x0) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_sys_futex(0x6f5c5c0,0x81,0x1,0x0,0x0,0x0) = 0 (0x0)
29816: mmap(0x0,208896,PROT_NONE,MAP_GUARD,-1,0x0) = 34381074432 (0x801459000)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2.12",0x80f60b2d0) ERR#-2 'No such file or directory'
29816: mmap(0x801459000,86016,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381074432 (0x801459000)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick.2.12/Controls",0x80f60b2d0) ERR#-2 'No such file or directory'
29816: mmap(0x80146e000,110592,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x14000) = 34381160448 (0x80146e000)
29790: linux_mprotect(0x81404e000,0x1000,0x3) = 0 (0x0)
29816: mmap(0x801489000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x2e000) = 34381271040 (0x801489000)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2",0x80f60b2d0) = 0 (0x0)
29816: mmap(0x80148b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x2f000) = 34381279232 (0x80148b000)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/qmldir",F_OK) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x81404e1e8,0x80000,0x0) = 23 (0x17)
29816: open("/compat/ubuntu/opt/zoom/libgthread-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_newfstat(23,0x80f60aff0) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/cef/libgthread-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_newfstat(23,0x80f60b0a0) = 0 (0x0)
29816: open("/usr/local/lib/libgthread-2.0.so.0",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 4 (0x4)
29790: linux_newfstat(23,0x80f60b090) = 0 (0x0)
29816: fstat(4,{ mode=-rwxr-xr-x ,inode=471699,size=4912,blksize=5120 }) = 0 (0x0)
29790: linux_mprotect(0x81404f000,0x4000,0x3) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: read(23,"module QtQuick.Controls\nplugin "...,16384) = 135 (0x87)
29816: mmap(0x0,16384,PROT_NONE,MAP_GUARD,-1,0x0) = 34381283328 (0x80148c000)
29790: read(23,0x81404e3df,16249) = 0 (0x0)
29816: mmap(0x80148c000,4096,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381283328 (0x80148c000)
29816: mmap(0x80148d000,4096,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381287424 (0x80148d000)
29790: close(23) = 0 (0x0)
29816: mmap(0x80148e000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x0) = 34381291520 (0x80148e000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/libqtquickcontrols2plugin.so",F_OK) = 0 (0x0)
29816: mmap(0x80148f000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x0) = 34381295616 (0x80148f000)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/libqtquickcontrols2plugin.so",0x80f60add0) = 0 (0x0)
29816: mmap(0x0,135168,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34381299712 (0x801490000)
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libdbus-glib-1.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/cef/libdbus-glib-1.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: open("/usr/local/lib/libdbus-glib-1.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 4 (0x4)
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: fstat(4,{ mode=-rwxr-xr-x ,inode=225104,size=162696,blksize=131072 }) = 0 (0x0)
29790: linux_newlstat(0x81404e5e0,0x80f60ace0) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x81404e678,0x80000,0x0) = 23 (0x17)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_newfstat(23,0x80f60acc0) = 0 (0x0)
29816: mmap(0x0,176128,PROT_NONE,MAP_GUARD,-1,0x0) = 34381434880 (0x8014b1000)
29790: linux_newfstat(23,0x80f60adb0) = 0 (0x0)
29816: mmap(0x8014b1000,69632,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381434880 (0x8014b1000)
29816: mmap(0x8014c2000,90112,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x10000) = 34381504512 (0x8014c2000)
29790: linux_mmap2(0x0,0x94f38,0x1,0x1,0x17,0x0) = 34518372352 (0x809749000)
29816: mmap(0x8014d8000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x25000) = 34381594624 (0x8014d8000)
29790: close(23) = 0 (0x0)
29816: mmap(0x8014da000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x26000) = 34381602816 (0x8014da000)
29790: munmap(0x809749000,610104) = 0 (0x0)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x81404eb70,0x80000,0x0) ERR#-2 'No such file or directory'
29816: close(4) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/libqtquickcontrols2plugin.so.avx2",F_OK) ERR#-2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: linux_openat(0xffffff9c,0x814052580,0x80000,0x0) = 23 (0x17)
29816: open("/compat/ubuntu/opt/zoom/cef/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) ERR#2 'No such file or directory'
29790: read(23,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29816: open("/usr/local/lib/libdbus-1.so.3",O_RDONLY|O_CLOEXEC|O_VERIFY,014232266000) = 4 (0x4)
29790: linux_newfstat(23,0x80f60a540) = 0 (0x0)
29816: fstat(4,{ mode=-rwxr-xr-x ,inode=472579,size=355424,blksize=131072 }) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_mmap2(0x0,0x27c678,0x5,0x802,0x17,0x0) = 35079061504 (0x82ae00000)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_mprotect(0x82ae79000,0x200000,0x0) = 0 (0x0)
29816: mmap(0x0,368640,PROT_NONE,MAP_GUARD,-1,0x0) = 34381611008 (0x8014dc000)
29790: linux_mmap2(0x82b079000,0x4000,0x3,0x812,0x17,0x79000) = 35081654272 (0x82b079000)
29816: mmap(0x8014dc000,139264,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381611008 (0x8014dc000)
29790: close(23) = 0 (0x0)
29816: mmap(0x8014fe000,212992,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x21000) = 34381750272 (0x8014fe000)
29790: linux_openat(0xffffff9c,0x80f609d00,0x80000,0x0) = 23 (0x17)
29816: mmap(0x801532000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x54000) = 34381963264 (0x801532000)
29790: read(23,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29816: mmap(0x801534000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x55000) = 34381971456 (0x801534000)
29790: linux_newfstat(23,0x80f609de0) = 0 (0x0)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_mmap2(0x0,0x3533e0,0x5,0x802,0x17,0x0) = 35083255808 (0x82b200000)
29816: open("/compat/ubuntu/opt/zoom/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_mprotect(0x82b341000,0x1ff000,0x0) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/cef/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: linux_mmap2(0x82b540000,0x14000,0x3,0x812,0x17,0x140000) = 35086663680 (0x82b540000)
29816: open("/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,00) ERR#2 'No such file or directory'
29790: close(23) = 0 (0x0)
29816: open("/usr/lib/libexecinfo.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,00) = 4 (0x4)
29816: fstat(4,{ mode=-r--r--r-- ,inode=529430,size=11840,blksize=12288 }) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80f609ce0,0x80000,0x0) = 23 (0x17)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: read(23,"\^?ELF\^B\^A\^A\^C\0\0\0\0\0\0\0"...,832) = 832 (0x340)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_newfstat(23,0x80f609dc0) = 0 (0x0)
29816: mmap(0x0,24576,PROT_NONE,MAP_GUARD,-1,0x0) = 34381979648 (0x801536000)
29790: poll({ 14/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x801536000,8192,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381979648 (0x801536000)
29790: linux_mmap2(0x0,0x230bd0,0x5,0x802,0x17,0x0) = 35087450112 (0x82b600000)
29816: mmap(0x801538000,8192,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x1000) = 34381987840 (0x801538000)
29790: linux_mprotect(0x82b62e000,0x1ff000,0x0) = 0 (0x0)
29816: mmap(0x80153a000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x2000) = 34381996032 (0x80153a000)
29790: linux_mmap2(0x82b82d000,0x4000,0x3,0x812,0x17,0x2d000) = 35089731584 (0x82b82d000)
29816: mmap(0x80153b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x2000) = 34382000128 (0x80153b000)
29790: close(23) = 0 (0x0)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29816: close(4) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) ERR#2 'No such file or directory'
29816: open("/lib/libelf.so.2",O_RDONLY|O_CLOEXEC|O_VERIFY,05614251000) = 4 (0x4)
29816: fstat(4,{ mode=-r--r--r-- ,inode=529809,size=93640,blksize=93696 }) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: poll({ 12/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: poll({ 16/POLLIN|POLLPRI },1,10) = 0 (0x0)
29816: mmap(0x0,102400,PROT_NONE,MAP_GUARD,-1,0x0) = 34382004224 (0x80153c000)
29790: gettimeofday({ 1657909302.634012 },0x0) = 0 (0x0)
29816: mmap(0x80153c000,24576,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34382004224 (0x80153c000)
29790: gettimeofday({ 1657909302.634110 },0x0) = 0 (0x0)
29816: mmap(0x801542000,69632,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x5000) = 34382028800 (0x801542000)
29790: linux_times(0x81a456d90) = 2461350 (0x258ea6)
29816: mmap(0x801553000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x15000) = 34382098432 (0x801553000)
29816: mmap(0x801554000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x15000) = 34382102528 (0x801554000)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29816: close(4) = 0 (0x0)
29816: open("/compat/ubuntu/opt/zoom/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29816: open("/compat/ubuntu/opt/zoom/cef/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) ERR#2 'No such file or directory'
29816: open("/lib/libgcc_s.so.1",O_RDONLY|O_CLOEXEC|O_VERIFY,020643400) = 4 (0x4)
29816: fstat(4,{ mode=-r--r--r-- ,inode=529773,size=76944,blksize=77312 }) = 0 (0x0)
29790: linux_mprotect(0x82b540000,0x12000,0x1) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29816: mmap(0x0,90112,PROT_NONE,MAP_GUARD,-1,0x0) = 34382106624 (0x801555000)
29790: linux_mprotect(0x82b82d000,0x3000,0x1) = 0 (0x0)
29816: mmap(0x801555000,28672,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34382106624 (0x801555000)
29816: mmap(0x80155c000,49152,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x6000) = 34382135296 (0x80155c000)
29816: mmap(0x801568000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x11000) = 34382184448 (0x801568000)
29790: linux_mprotect(0x82b079000,0x3000,0x1) = 0 (0x0)
29816: mmap(0x80156a000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0x12000) = 34382192640 (0x80156a000)
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29816: close(4) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2",0x80f60abe0) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x81404dcb8,0x90800,0x0) = 23 (0x17)
29816: mprotect(0x801489000,4096,PROT_READ) = 0 (0x0)
29790: linux_newfstat(23,0x80f60a950) = 0 (0x0)
29816: mprotect(0x8014d8000,4096,PROT_READ) = 0 (0x0)
29790: linux_mprotect(0x814053000,0x8000,0x3) = 0 (0x0)
29816: mprotect(0x801532000,4096,PROT_READ) = 0 (0x0)
29790: linux_getdents64(0x17,0x814052640,0x8000) = 2296 (0x8f8)
29816: mprotect(0x801568000,4096,PROT_READ) = 0 (0x0)
29790: linux_getdents64(0x17,0x814052640,0x8000) = 0 (0x0)
29790: close(23) = 0 (0x0)
29816: munmap(0x800bf6000,36864) = 0 (0x0)
29816: munmap(0x801459000,208896) = 0 (0x0)
29790: linux_newstat("/opt/zoom/qml/QtQuick/Controls.2",0x80f60aa90) ERR#-2 'No such file or directory'
29816: munmap(0x8014b1000,176128) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2",0x80f60aa90) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/qmldir",F_OK) ERR#-2 'No such file or directory'
29816: munmap(0x8014dc000,368640) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2//qmldir",F_OK) = 0 (0x0)
29790: linux_newuname(0x80f60a900) = 0 (0x0)
29816: munmap(0x801536000,24576) = 0 (0x0)
29790: linux_openat(0xffffff9c,0x80ab98fb6,0x80000,0x0) = 23 (0x17)
29816: munmap(0x80153c000,102400) = 0 (0x0)
29790: linux_newfstat(23,0x80f60a7e0) = 0 (0x0)
29816: munmap(0x801555000,90112) = 0 (0x0)
29790: read(23,"NAME="Ubuntu"\nVERSION="20.04 LT"...,378) = 378 (0x17a)
29816: fstatat(AT_FDCWD,"/usr/local/lib/gio/modules/libdconfsettings.so",{ mode=-rwxr-xr-x ,inode=480496,size=65464,blksize=65536 },0x0) = 0 (0x0)
29790: close(23) = 0 (0x0)
29816: open("/usr/local/lib/gio/modules/libdconfsettings.so",O_RDONLY|O_CLOEXEC|O_VERIFY,016331467157) = 4 (0x4)
29816: fstat(4,{ mode=-rwxr-xr-x ,inode=480496,size=65464,blksize=65536 }) = 0 (0x0)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: fstatfs(4,{ fstypename=zfs,mntonname=/,mntfromname=zroot/ROOT/default,fsid= }) = 0 (0x0)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: mmap(0x0,4096,PROT_READ,MAP_PRIVATE|MAP_PREFAULT_READ,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: mmap(0x0,77824,PROT_NONE,MAP_GUARD,-1,0x0) = 34381074432 (0x801459000)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: mmap(0x801459000,28672,PROT_READ,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x0) = 34381074432 (0x801459000)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: mmap(0x801460000,36864,PROT_READ|PROT_EXEC,MAP_PRIVATE|MAP_FIXED|MAP_NOCORE|MAP_PREFAULT_READ,4,0x6000) = 34381103104 (0x801460000)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: mmap(0x801469000,8192,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0xe000) = 34381139968 (0x801469000)
29790: linux_newlstat(0x8140533a0,0x80f60a920) = 0 (0x0)
29816: mmap(0x80146b000,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_FIXED|MAP_PREFAULT_READ,4,0xf000) = 34381148160 (0x80146b000)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/+unix",0x80f60a960) ERR#-2 'No such file or directory'
29816: munmap(0x800bf5000,4096) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/+linux",0x80f60a960) ERR#-2 'No such file or directory'
29816: close(4) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/+ubuntu",0x80f60a960) ERR#-2 'No such file or directory'
29816: mprotect(0x801469000,4096,PROT_READ) = 0 (0x0)
29790: linux_newstat("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/+en_US",0x80f60a960) ERR#-2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/qmldir",F_OK) = 0 (0x0)
29816: getuid() = 1002 (0x3ea)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/qmldir",F_OK) = 0 (0x0)
29816: open("/run/dconf/user/1002",O_RDONLY,0666) ERR#2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/AbstractButton.qml",F_OK) ERR#-2 'No such file or directory'
29816: open("/var/run/user/1002/dconf/profile",O_RDONLY,0666) ERR#2 'No such file or directory'
29816: open("/usr/local/etc/dconf/profile/user",O_RDONLY,0666) ERR#2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/ApplicationWindow.qml",F_OK) ERR#-2 'No such file or directory'
29816: open("/usr/local/share/dconf/profile/user",O_RDONLY,0666) ERR#2 'No such file or directory'
29816: open("/usr/share/dconf/profile/user",O_RDONLY,0666) ERR#2 'No such file or directory'
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/BusyIndicator.qml",F_OK) ERR#-2 'No such file or directory'
29816: mkdir("/var/run/user/1002/dconf",0700) ERR#17 'File exists'
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Button.qml",F_OK) ERR#-2 'No such file or directory'
29816: fstatat(AT_FDCWD,"/var/run/user/1002/dconf",{ mode=drwx------ ,inode=688899,size=3,blksize=131072 },0x0) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/ButtonGroup.qml",F_OK) ERR#-2 'No such file or directory'
29816: openat(AT_FDCWD,"/var/run/user/1002/dconf/user",O_RDWR|O_CREAT,0600) = 4 (0x4)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/CheckBox.qml",F_OK) ERR#-2 'No such file or directory'
29816: pwrite(4,"\0",1,0x1) = 1 (0x1)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/CheckDelegate.qml",F_OK) ERR#-2 'No such file or directory'
29816: mmap(0x0,1,PROT_READ,MAP_SHARED,4,0x0) = 34372276224 (0x800bf5000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/ComboBox.qml",F_OK) ERR#-2 'No such file or directory'
29816: close(4) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Container.qml",F_OK) ERR#-2 'No such file or directory'
29816: openat(AT_FDCWD,"/home/csgordon/.config/dconf/user",O_RDONLY,00) = 4 (0x4)
29816: fstat(4,{ mode=-rw-r--r-- ,inode=125470,size=9515,blksize=9728 }) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Control.qml",F_OK) ERR#-2 'No such file or directory'
29816: mmap(0x0,9515,PROT_READ,MAP_PRIVATE,4,0x0) = 34372280320 (0x800bf6000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Dial.qml",F_OK) ERR#-2 'No such file or directory'
29816: close(4) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Drawer.qml",F_OK) ERR#-2 'No such file or directory'
29816: mmap(0x0,4096,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON,-1,0x0) = 34372292608 (0x800bf9000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Frame.qml",F_OK) ERR#-2 'No such file or directory'
29816: mmap(0x7fffff5fd000,2101248,PROT_READ|PROT_WRITE,MAP_STACK,-1,0x0) = 34381434880 (0x8014b1000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/GroupBox.qml",F_OK) ERR#-2 'No such file or directory'
29816: mprotect(0x8014b1000,4096,PROT_NONE) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/ItemDelegate.qml",F_OK) ERR#-2 'No such file or directory'
29816: thr_new(0x7fffffffdbb0,0x68) = 0 (0x0)
29816: <new thread 120479>
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Label.qml",F_OK) ERR#-2 'No such file or directory'
29816: sigfastblock(0x1,0x800e12738) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Menu.qml",F_OK) ERR#-2 'No such file or directory'
29816: sigprocmask(SIG_SETMASK,{ SIGHUP|SIGINT|SIGQUIT|SIGILL|SIGTRAP|SIGABRT|SIGEMT|SIGFPE|SIGKILL|SIGBUS|SIGSEGV|SIGSYS|SIGPIPE|SIGALRM|SIGTERM|SIGURG|SIGSTOP|SIGTSTP|SIGCONT|SIGCHLD|SIGTTIN|SIGTTOU|SIGIO|SIGXCPU|SIGXFSZ|SIGVTALRM|SIGPROF|SIGWINCH|SIGINFO|SIGUSR1|SIGUSR2 },{ }) = 0 (0x0)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/MenuItem.qml",F_OK) ERR#-2 'No such file or directory'
29816: __specialfd(0x1,0x7fffffffdcd8,0x8) = 4 (0x4)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Page.qml",F_OK) ERR#-2 'No such file or directory'
29816: write(4,"\^A\0\0\0\0\0\0\0",8) = 8 (0x8)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/PageIndicator.qml",F_OK) ERR#-2 'No such file or directory'
29816: mmap(0x0,2097152,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANON|MAP_ALIGNED(21),-1,0x0) = 34384904192 (0x801800000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Pane.qml",F_OK) ERR#-2 'No such file or directory'
29816: mmap(0x7fffff3fc000,2101248,PROT_READ|PROT_WRITE,MAP_STACK,-1,0x0) = 34387001344 (0x801a00000)
29790: linux_access("/compat/ubuntu/opt/zoom/QtQuick/Controls.2/Default/Popup.qml",F_OK) ERR#-2 'No such file or directory'
29816: mprotect(0x801a00000,40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment