All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ioemu: Cleanup the code of PCI passthrough.
@ 2009-02-17  9:20 Yuji Shimada
  2009-02-19 17:13 ` Ian Jackson
  0 siblings, 1 reply; 36+ messages in thread
From: Yuji Shimada @ 2009-02-17  9:20 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel

This patch cleanups the code of PCI passthrough.

- Use LIST_FOREACH(). Don't use lh_first, le_next directly.
- Use pci_{read, write}_block instead of "switch(len) case [124]
  pci_{read, write}_{byte, word, long}();".
- Eliminate duplicate codes using PT_MEARGE_VALUE macro.
- Define PCI_ERR_* macro in pass-through.h if libpci is old.
- Remove the unreasonable loop from pt_aer_reg_{save,restore}.
- Enable pt_aer_reg_{save,restore}, even if libpci is old.
- Fix ro_mask and remove unnecessary pt_xxx_reg_write functions.
- Add "Error:" or "Warning:" to messages.
- Remove verbose messages.

Thanks,
--
Yuji Shimada.


Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.j>

diff --git a/hw/pass-through.c b/hw/pass-through.c
index c2a6ec1..1de0162 100644
--- a/hw/pass-through.c
+++ b/hw/pass-through.c
@@ -126,18 +126,6 @@ static int pt_exp_rom_bar_reg_write(struct pt_dev *ptdev,
 static int pt_pmcsr_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
     uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_devctrl_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_linkctrl_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_devctrl2_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_linkctrl2_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
 static int pt_msgctrl_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
     uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
@@ -413,7 +401,7 @@ static struct pt_reg_info_tbl pt_emu_reg_pm_tbl[] = {
         .offset     = PCI_PM_CTRL,
         .size       = 2,
         .init_val   = 0x0008,
-        .ro_mask    = 0x60FC,
+        .ro_mask    = 0xE1FC,
         .emu_mask   = 0x8100,
         .init       = pt_pmcsr_reg_init,
         .u.w.read   = pt_word_reg_read,
@@ -494,11 +482,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = PCI_EXP_DEVCTL,
         .size       = 2,
         .init_val   = 0x2810,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0x8400,
         .emu_mask   = 0xFFFF,
         .init       = pt_common_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_devctrl_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Link Control reg */
@@ -506,11 +494,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = PCI_EXP_LNKCTL,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xFC34,
         .emu_mask   = 0xFFFF,
         .init       = pt_linkctrl_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_linkctrl_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Device Control 2 reg */
@@ -518,11 +506,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = 0x28,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xFFE0,
         .emu_mask   = 0xFFFF,
         .init       = pt_devctrl2_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_devctrl2_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Link Control 2 reg */
@@ -530,11 +518,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = 0x30,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xE040,
         .emu_mask   = 0xFFFF,
         .init       = pt_linkctrl2_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_linkctrl2_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     {
@@ -1051,8 +1039,7 @@ struct pt_reg_grp_tbl* pt_find_reg_grp(
     struct pt_reg_grp_tbl* reg_grp_entry = NULL;
 
     /* find register group entry */
-    for (reg_grp_entry = ptdev->reg_grp_tbl_head.lh_first; reg_grp_entry;
-        reg_grp_entry = reg_grp_entry->entries.le_next)
+    LIST_FOREACH(reg_grp_entry, &ptdev->reg_grp_tbl_head, entries)
     {
         /* check address */
         if ((reg_grp_entry->base_offset <= address) &&
@@ -1075,8 +1062,7 @@ struct pt_reg_tbl* pt_find_reg(
     uint32_t real_offset = 0;
 
     /* find register entry */
-    for (reg_entry = reg_grp->reg_tbl_head.lh_first; reg_entry;
-        reg_entry = reg_entry->entries.le_next)
+    LIST_FOREACH(reg_entry, &reg_grp->reg_tbl_head, entries)
     {
         reg = reg_entry->reg;
         real_offset = (reg_grp->base_offset + reg->offset);
@@ -1140,7 +1126,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check offset range */
     if (address >= 0xFF)
     {
-        PT_LOG("Failed to write register with offset exceeding FFh. "
+        PT_LOG("Error: Failed to write register with offset exceeding FFh. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1150,7 +1136,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check write size */
     if ((len != 1) && (len != 2) && (len != 4))
     {
-        PT_LOG("Failed to write register with invalid access length. "
+        PT_LOG("Error: Failed to write register with invalid access length. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1160,8 +1146,8 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check offset alignment */
     if (address & (len-1))
     {
-        PT_LOG("Failed to write register with invalid access size alignment. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Error: Failed to write register with invalid access size "
+            "alignment. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
         goto exit;
@@ -1172,8 +1158,8 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     if ((index >= 0) && (val > 0 && val < PT_BAR_ALLF) &&
         (assigned_device->bases[index].bar_flag == PT_BAR_FLAG_UNUSED))
     {
-        PT_LOG("Guest attempt to set address to unused Base Address Register. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Warning: Guest attempt to set address to unused Base Address "
+            "Register. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), 
             (d->devfn & 0x7), address, len);
     }
@@ -1194,7 +1180,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
         if (reg_grp->grp_type == GRP_TYPE_HARDWIRED)
         {
             /* ignore silently */
-            PT_LOG("Access to 0 Hardwired register. "
+            PT_LOG("Warning: Access to 0 Hardwired register. "
                 "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
                 pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), 
                 (d->devfn & 0x7), address, len);
@@ -1203,28 +1189,14 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     }
 
     /* read I/O device register value */
-    switch (len) {
-    case 1:
-        read_val = pci_read_byte(pci_dev, address);
-        break;
-    case 2:
-        read_val = pci_read_word(pci_dev, address);
-        break;
-    case 4:
-        read_val = pci_read_long(pci_dev, address);
-        break;
-    }
+    ret = pci_read_block(pci_dev, address, (uint8_t *)&read_val, len);
 
-    /* check libpci result */
-    valid_mask = (0xFFFFFFFF >> ((4 - len) << 3));
-    if ((read_val & valid_mask) == valid_mask)
+    if (!ret)
     {
-        PT_LOG("Warning: Return ALL F from libpci read. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
-            pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
-            address, len);
+        PT_LOG("Error: pci_read_block failed. return value[%d].\n", ret);
+        memset((uint8_t *)&read_val, 0xff, len);
     }
-    
+
     /* pass directly to libpci for passthrough type register group */
     if (reg_grp_entry == NULL)
         goto out;
@@ -1303,17 +1277,10 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     val >>= ((address & 3) << 3);
 
 out:
-    switch (len){
-    case 1:
-        pci_write_byte(pci_dev, address, val);
-        break;
-    case 2:
-        pci_write_word(pci_dev, address, val);
-        break;
-    case 4:
-        pci_write_long(pci_dev, address, val);
-        break;
-    }
+    ret = pci_write_block(pci_dev, address, (uint8_t *)&val, len);
+
+    if (!ret)
+        PT_LOG("Error: pci_write_block failed. return value[%d].\n", ret);
 
     if (pm_state->flags & PT_FLAG_TRANSITING)
         /* set QEMUTimer */
@@ -1329,7 +1298,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     struct pt_dev *assigned_device = (struct pt_dev *)d;
     struct pci_dev *pci_dev = assigned_device->pci_dev;
     struct pt_pm_info *pm_state = assigned_device->pm_state;
-    uint32_t val = 0xFFFFFFFF;
+    uint32_t val = 0;
     struct pt_reg_grp_tbl *reg_grp_entry = NULL;
     struct pt_reg_grp_info_tbl *reg_grp = NULL;
     struct pt_reg_tbl *reg_entry = NULL;
@@ -1344,7 +1313,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check offset range */
     if (address >= 0xFF)
     {
-        PT_LOG("Failed to read register with offset exceeding FFh. "
+        PT_LOG("Error: Failed to read register with offset exceeding FFh. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1354,7 +1323,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check read size */
     if ((len != 1) && (len != 2) && (len != 4))
     {
-        PT_LOG("Failed to read register with invalid access length. "
+        PT_LOG("Error: Failed to read register with invalid access length. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1364,8 +1333,8 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check offset alignment */
     if (address & (len-1))
     {
-        PT_LOG("Failed to read register with invalid access size alignment. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Error: Failed to read register with invalid access size "
+            "alignment. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
         goto exit;
@@ -1393,26 +1362,12 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     }
 
     /* read I/O device register value */
-    switch (len) {
-    case 1:
-        val = pci_read_byte(pci_dev, address);
-        break;
-    case 2:
-        val = pci_read_word(pci_dev, address);
-        break;
-    case 4:
-        val = pci_read_long(pci_dev, address);
-        break;
-    }
+    ret = pci_read_block(pci_dev, address, (uint8_t *)&val, len);
 
-    /* check libpci result */
-    valid_mask = (0xFFFFFFFF >> ((4 - len) << 3));
-    if ((val & valid_mask) == valid_mask)
+    if (!ret)
     {
-        PT_LOG("Warning: Return ALL F from libpci read. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
-            pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
-            address, len);
+        PT_LOG("Error: pci_read_block failed. return value[%d].\n", ret);
+        memset((uint8_t *)&val, 0xff, len);
     }
 
     /* just return the I/O device register value for 
@@ -1514,7 +1471,7 @@ static void pt_libpci_fixup(struct pci_dev *dev)
     fp = fopen(path, "r");
     if ( !fp )
     {
-        PT_LOG("Can't open %s: %s\n", path, strerror(errno));
+        PT_LOG("Error: Can't open %s: %s\n", path, strerror(errno));
         return;
     }
 
@@ -1522,7 +1479,7 @@ static void pt_libpci_fixup(struct pci_dev *dev)
     {
         if ( fscanf(fp, "%llx %llx %llx", &start, &end, &flags) != 3 )
         {
-            PT_LOG("Syntax error in %s\n", path);
+            PT_LOG("Error: Syntax error in %s\n", path);
             break;
         }
 
@@ -1800,8 +1757,8 @@ static void pt_bar_mapping(struct pt_dev *ptdev, int io_enable, int mem_enable)
         /* check overlapped address */
         ret = pt_chk_bar_overlap(dev->bus, dev->devfn, r_addr, r_size);
         if (ret > 0)
-            PT_LOG("ptdev[%02x:%02x.%x][Region:%d][Address:%08xh][Size:%08xh] "
-                "is overlapped.\n", pci_bus_num(dev->bus), 
+            PT_LOG("Warning: ptdev[%02x:%02x.%x][Region:%d][Address:%08xh]"
+                "[Size:%08xh] is overlapped.\n", pci_bus_num(dev->bus), 
                 (dev->devfn >> 3) & 0x1F, (dev->devfn & 0x7),
                 i, r_addr, r_size);
 
@@ -1841,68 +1798,51 @@ int check_power_state(struct pt_dev *ptdev)
     return 0;
 }
 
-/* save AER register */
-static void pt_aer_reg_save(struct pt_dev *ptdev)
+/* save AER one register */
+static void aer_save_one_register(struct pt_dev *ptdev, int offset)
 {
     PCIDevice *d = &ptdev->dev;
     uint32_t aer_base = ptdev->pm_state->aer_base;
-    int i = 0;
-    /* Root Port and Root Complex Event Collector need size expansion */
-    int aer_size = 0x2c;
 
-#ifdef PCI_ERR_UNCOR_MASK
-    for (i=0; i < aer_size; i+=4)
-    {
-        switch (i) {
-        /* after reset, following register values should be restored.
-         * So, save them.
-         */
-        case PCI_ERR_UNCOR_MASK:
-        case PCI_ERR_UNCOR_SEVER:
-        case PCI_ERR_COR_MASK:
-        case PCI_ERR_CAP:
-            *(uint32_t*)(d->config + (aer_base + i))
-                 = pci_read_long(ptdev->pci_dev, (aer_base + i));
-            break;
-        default:
-            break;
-        }
-    }
-#endif
+    *(uint32_t*)(d->config + (aer_base + offset))
+        = pci_read_long(ptdev->pci_dev, (aer_base + offset));
 }
 
-/* restore AER register */
-static void pt_aer_reg_restore(struct pt_dev *ptdev)
+/* save AER registers */
+static void pt_aer_reg_save(struct pt_dev *ptdev)
+{
+    /* after reset, following register values should be restored.
+     * So, save them.
+     */
+    aer_save_one_register(ptdev, PCI_ERR_UNCOR_MASK);
+    aer_save_one_register(ptdev, PCI_ERR_UNCOR_SEVER);
+    aer_save_one_register(ptdev, PCI_ERR_COR_MASK);
+    aer_save_one_register(ptdev, PCI_ERR_CAP);
+}
+
+/* restore AER one register */
+static void aer_restore_one_register(struct pt_dev *ptdev, int offset)
 {
     PCIDevice *d = &ptdev->dev;
     uint32_t aer_base = ptdev->pm_state->aer_base;
-    int i = 0;
     uint32_t config = 0;
-    /* Root Port and Root Complex Event Collector need size expansion */
-    int aer_size = 0x2c;
 
-#ifdef PCI_ERR_UNCOR_MASK
-    for (i=0; i < aer_size; i+=4)
-    {
-        switch (i) {
-        /* the following registers should be reconfigured to correct values
-         * after reset. restore them.
-         */
-        case PCI_ERR_UNCOR_MASK:
-        case PCI_ERR_UNCOR_SEVER:
-        case PCI_ERR_COR_MASK:
-        case PCI_ERR_CAP:
-            config = *(uint32_t*)(d->config + (aer_base + i));
-            pci_write_long(ptdev->pci_dev, (aer_base + i), config);
-            break;
-        /* other registers should not be reconfigured after reset 
-         * if there is no reason
-         */
-        default:
-            break;
-        }
-    }
-#endif
+    config = *(uint32_t*)(d->config + (aer_base + offset));
+    pci_write_long(ptdev->pci_dev, (aer_base + offset), config);
+}
+
+/* restore AER registers */
+static void pt_aer_reg_restore(struct pt_dev *ptdev)
+{
+    /* the following registers should be reconfigured to correct values
+     * after reset. restore them.
+     * other registers should not be reconfigured after reset
+     * if there is no reason
+     */
+    aer_restore_one_register(ptdev, PCI_ERR_UNCOR_MASK);
+    aer_restore_one_register(ptdev, PCI_ERR_UNCOR_SEVER);
+    aer_restore_one_register(ptdev, PCI_ERR_COR_MASK);
+    aer_restore_one_register(ptdev, PCI_ERR_CAP);
 }
 
 /* reset Interrupt and I/O resource  */
@@ -2115,7 +2055,7 @@ static int pt_config_reg_init(struct pt_dev *ptdev,
     reg_entry = qemu_mallocz(sizeof(struct pt_reg_tbl));
     if (reg_entry == NULL)
     {
-        PT_LOG("Failed to allocate memory.\n");
+        PT_LOG("Error: Failed to allocate memory.\n");
         err = -1;
         goto out;
     }
@@ -2171,7 +2111,7 @@ static int pt_config_init(struct pt_dev *ptdev)
         reg_grp_entry = qemu_mallocz(sizeof(struct pt_reg_grp_tbl));
         if (reg_grp_entry == NULL)
         {
-            PT_LOG("Failed to allocate memory.\n");
+            PT_LOG("Error: Failed to allocate memory.\n");
             err = -1;
             goto out;
         }
@@ -2239,10 +2179,10 @@ static void pt_config_delete(struct pt_dev *ptdev)
     }
 
     /* free all register group entry */
-    while ((reg_grp_entry = ptdev->reg_grp_tbl_head.lh_first) != NULL)
+    while((reg_grp_entry = LIST_FIRST(&ptdev->reg_grp_tbl_head)) != NULL)
     {
         /* free all register entry */
-        while ((reg_entry = reg_grp_entry->reg_tbl_head.lh_first) != NULL)
+        while((reg_entry = LIST_FIRST(&reg_grp_entry->reg_tbl_head)) != NULL)
         {
             LIST_REMOVE(reg_entry, entries);
             qemu_free(reg_entry);
@@ -2624,7 +2564,7 @@ static uint8_t pt_msi_size_init(struct pt_dev *ptdev,
     if ( !ptdev->msi )
     {
         /* exit I/O emulator */
-        PT_LOG("error allocation pt_msi_info. I/O emulator exit.\n");
+        PT_LOG("Error: Allocating pt_msi_info failed. I/O emulator exit.\n");
         exit(1);
     }
     memset(ptdev->msi, 0, sizeof(struct pt_msi_info));
@@ -2754,8 +2694,7 @@ static int pt_byte_reg_read(struct pt_dev *ptdev,
 
     /* emulate byte register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
     return 0;
 }
@@ -2770,8 +2709,7 @@ static int pt_word_reg_read(struct pt_dev *ptdev,
 
     /* emulate word register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
     return 0;
 }
@@ -2786,8 +2724,7 @@ static int pt_long_reg_read(struct pt_dev *ptdev,
 
     /* emulate long register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
    return 0;
 }
@@ -2833,8 +2770,7 @@ static int pt_bar_reg_read(struct pt_dev *ptdev,
 
     /* emulate BAR */
     valid_emu_mask = bar_emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
    return 0;
 }
@@ -2850,13 +2786,11 @@ static int pt_byte_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2872,13 +2806,11 @@ static int pt_word_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2894,13 +2826,11 @@ static int pt_long_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2917,12 +2847,11 @@ static int pt_cmd_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* mapping BAR */
     pt_bar_mapping(ptdev, wr_value & PCI_COMMAND_IO, 
@@ -2988,8 +2917,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = bar_emu_mask & ~bar_ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* check whether we need to update the virtual region address or not */
     switch (ptdev->bases[index].bar_flag)
@@ -3007,7 +2935,8 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
             if ((last_addr >= 0x10000) &&
                 (cfg_entry->data != (PT_BAR_ALLF & ~bar_ro_mask)))
             {
-                PT_LOG("Guest attempt to set Base Address over the 64KB. "
+                PT_LOG("Warning: Guest attempt to set Base Address "
+                    "over the 64KB. "
                     "[%02x:%02x.%x][Offset:%02xh][Address:%08xh][Size:%08xh]\n",
                     pci_bus_num(d->bus), 
                     ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
@@ -3023,7 +2952,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
         {
             if (cfg_entry->data != (PT_BAR_ALLF & ~bar_ro_mask))
             {
-                PT_LOG("Guest attempt to set high MMIO Base Address. "
+                PT_LOG("Warning: Guest attempt to set high MMIO Base Address. "
                     "Ignore mapping. "
                     "[%02x:%02x.%x][Offset:%02xh][High Address:%08xh]\n",
                     pci_bus_num(d->bus), 
@@ -3066,8 +2995,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
 exit:
     /* create value for writing to I/O device register */
     throughable_mask = ~bar_emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -3099,16 +3027,14 @@ static int pt_exp_rom_bar_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = bar_emu_mask & ~bar_ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* update the corresponding virtual region address */
     r->addr = cfg_entry->data;
     
     /* create value for writing to I/O device register */
     throughable_mask = ~bar_emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -3122,22 +3048,16 @@ static int pt_pmcsr_reg_write(struct pt_dev *ptdev,
     PCIDevice *d = &ptdev->dev;
     uint16_t writable_mask = 0;
     uint16_t throughable_mask = 0;
-    uint16_t pmcsr_mask = (PCI_PM_CTRL_PME_ENABLE | 
-                           PCI_PM_CTRL_DATA_SEL_MASK |
-                           PCI_PM_CTRL_PME_STATUS);
     struct pt_pm_info *pm_state = ptdev->pm_state;
     uint16_t read_val = 0;
 
     /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~pmcsr_mask;
-
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* set I/O device power state */
     pm_state->cur_state = (dev_value & PCI_PM_CTRL_STATE_MASK);
@@ -3236,101 +3156,6 @@ static int pt_pmcsr_reg_write(struct pt_dev *ptdev,
     return 0;
 }
 
-/* write Device Control register */
-static int pt_devctrl_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t devctrl_mask = (PCI_EXP_DEVCTL_AUX_PME | 0x8000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~devctrl_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Link Control register */
-static int pt_linkctrl_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t linkctrl_mask = (0x04 | PCI_EXP_LNKCTL_DISABLE |
-                              PCI_EXP_LNKCTL_RETRAIN | 
-                              0x0400 | 0x0800 | 0xF000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~linkctrl_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Device Control2 register */
-static int pt_devctrl2_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t devctrl2_mask = 0xFFE0;
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~devctrl2_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Link Control2 register */
-static int pt_linkctrl2_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t linkctrl2_mask = (0x0040 | 0xE000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & 
-                    ~linkctrl2_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
 /* write Message Control register */
 static int pt_msgctrl_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
@@ -3346,22 +3171,19 @@ static int pt_msgctrl_reg_write(struct pt_dev *ptdev,
 
     /* Currently no support for multi-vector */
     if ((*value & PCI_MSI_FLAGS_QSIZE) != 0x0)
-        PT_LOG("try to set more than 1 vector ctrl %x\n", *value);
+        PT_LOG("Warning: try to set more than 1 vector ctrl %x\n", *value);
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->flags |= cfg_entry->data & 
         ~(MSI_FLAG_UNINIT | PT_MSI_MAPPED | PCI_MSI_FLAGS_ENABLE);
 
-    PT_LOG("old_ctrl:%04xh new_ctrl:%04xh\n", old_ctrl, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     val = *value;
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (val & PCI_MSI_FLAGS_ENABLE)
@@ -3420,16 +3242,13 @@ static int pt_msgaddr32_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->addr_lo = cfg_entry->data;
     
-    PT_LOG("old_addr_lo:%08xh new_addr_lo:%08xh\n", old_addr, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_addr)
@@ -3455,22 +3274,19 @@ static int pt_msgaddr64_reg_write(struct pt_dev *ptdev,
     if (!(ptdev->msi->flags & PCI_MSI_FLAGS_64BIT))
     {
         /* exit I/O emulator */
-        PT_LOG("why comes to Upper Address without 64 bit support??\n");
+        PT_LOG("Error: why comes to Upper Address without 64 bit support??\n");
         return -1;
     }
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->addr_hi = cfg_entry->data;
     
-    PT_LOG("old_addr_hi:%08xh new_addr_hi:%08xh\n", old_addr, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_addr)
@@ -3506,16 +3322,13 @@ static int pt_msgdata_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->data = cfg_entry->data;
 
-    PT_LOG("old_data:%04xh new_data:%04xh\n", old_data, cfg_entry->data);
-
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_data)
@@ -3539,14 +3352,11 @@ static int pt_msixctrl_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
-    PT_LOG("old_ctrl:%04xh new_ctrl:%04xh\n", old_ctrl, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI-X */
     if ((*value & PCI_MSIX_ENABLE) && !(*value & PCI_MSIX_MASK))
@@ -3979,7 +3789,7 @@ int pt_init(PCIBus *e_bus, const char *direct_pci)
     pci_access = pci_alloc();
     if ( pci_access == NULL )
     {
-        PT_LOG("pci_access is NULL\n");
+        PT_LOG("Error: pci_access is NULL\n");
         return -1;
     }
     pci_init(pci_access);
diff --git a/hw/pass-through.h b/hw/pass-through.h
index b44b9d7..2b2dbd2 100644
--- a/hw/pass-through.h
+++ b/hw/pass-through.h
@@ -86,6 +86,26 @@
 #define PCI_EXP_TYPE_ROOT_EC     0xa
 #endif
 
+#ifndef PCI_ERR_UNCOR_MASK
+/* Uncorrectable Error Mask */
+#define PCI_ERR_UNCOR_MASK      8
+#endif
+
+#ifndef PCI_ERR_UNCOR_SEVER
+/* Uncorrectable Error Severity */
+#define PCI_ERR_UNCOR_SEVER     12
+#endif
+
+#ifndef PCI_ERR_COR_MASK
+/* Correctable Error Mask */
+#define PCI_ERR_COR_MASK        20
+#endif
+
+#ifndef PCI_ERR_CAP
+/* Advanced Error Capabilities */
+#define PCI_ERR_CAP             24
+#endif
+
 #ifndef PCI_EXT_CAP_ID
 /* Extended Capabilities (PCI-X 2.0 and PCI Express) */
 #define PCI_EXT_CAP_ID(header)   (header & 0x0000ffff)
diff --git a/hw/pt-msi.c b/hw/pt-msi.c
index bdd1b38..6b0aaa1 100644
--- a/hw/pt-msi.c
+++ b/hw/pt-msi.c
@@ -68,7 +68,7 @@ int pt_msi_setup(struct pt_dev *dev)
 
     if ( !(dev->msi->flags & MSI_FLAG_UNINIT) )
     {
-        PT_LOG("setup physical after initialized?? \n");
+        PT_LOG("Error: setup physical after initialized?? \n");
         return -1;
     }
 
@@ -76,13 +76,13 @@ int pt_msi_setup(struct pt_dev *dev)
                                  dev->pci_dev->dev << 3 | dev->pci_dev->func,
                                  dev->pci_dev->bus, 0, 0) )
     {
-        PT_LOG("error map msi\n");
+        PT_LOG("Error: Mapping of MSI failed.\n");
         return -1;
     }
 
     if ( pirq < 0 )
     {
-        PT_LOG("invalid pirq number\n");
+        PT_LOG("Error: Invalid pirq number\n");
         return -1;
     }
 
@@ -125,7 +125,7 @@ int pt_msi_update(struct pt_dev *d)
     addr = (uint64_t)d->msi->addr_hi << 32 | d->msi->addr_lo;
     gflags = __get_msi_gflags(d->msi->data, addr);
     
-    PT_LOG("now update msi with pirq %x gvec %x\n", d->msi->pirq, gvec);
+    PT_LOG("Update msi with pirq %x gvec %x\n", d->msi->pirq, gvec);
     return xc_domain_update_msi_irq(xc_handle, domid, gvec,
                                      d->msi->pirq, gflags);
 }
@@ -295,19 +295,19 @@ static int pt_msix_update_one(struct pt_dev *dev, int entry_nr)
                                 dev->msix->table_base);
         if ( ret )
         {
-            PT_LOG("error map msix entry %x\n", entry_nr);
+            PT_LOG("Error: Mapping msix entry %x\n", entry_nr);
             return ret;
         }
         entry->pirq = pirq;
     }
 
-    PT_LOG("now update msix entry %x with pirq %x gvec %x\n",
+    PT_LOG("Update msix entry %x with pirq %x gvec %x\n",
             entry_nr, pirq, gvec);
 
     ret = xc_domain_update_msi_irq(xc_handle, domid, gvec, pirq, gflags);
     if ( ret )
     {
-        PT_LOG("error update msix irq info for entry %d\n", entry_nr);
+        PT_LOG("Error: Updating msix irq info for entry %d\n", entry_nr);
         return ret;
     }
 
@@ -378,7 +378,7 @@ void pt_msix_disable(struct pt_dev *dev)
 static void pci_msix_invalid_write(void *opaque, target_phys_addr_t addr,
                                    uint32_t val)
 {
-    PT_LOG("invalid write to MSI-X table, \
+    PT_LOG("Error: Invalid write to MSI-X table, \
             only dword access is allowed.\n");
 }
 
@@ -391,8 +391,8 @@ static void pci_msix_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
 
     if ( addr % 4 )
     {
-        PT_LOG("unaligned dword access to MSI-X table, addr %016"PRIx64"\n",
-                addr);
+        PT_LOG("Error: Unaligned dword access to MSI-X table, \
+                addr %016"PRIx64"\n", addr);
         return;
     }
 
@@ -402,8 +402,8 @@ static void pci_msix_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
 
     if ( offset != 3 && msix->enabled && !(entry->io_mem[3] & 0x1) )
     {
-        PT_LOG("can not update msix entry %d since MSI-X is already \
-                function now.\n", entry_nr);
+        PT_LOG("Error: Can't update msix entry %d since MSI-X is already \
+                function.\n", entry_nr);
         return;
     }
 
@@ -427,7 +427,7 @@ static CPUWriteMemoryFunc *pci_msix_write[] = {
 
 static uint32_t pci_msix_invalid_read(void *opaque, target_phys_addr_t addr)
 {
-    PT_LOG("invalid read to MSI-X table, \
+    PT_LOG("Error: Invalid read to MSI-X table, \
             only dword access is allowed.\n");
     return 0;
 }
@@ -440,8 +440,8 @@ static uint32_t pci_msix_readl(void *opaque, target_phys_addr_t addr)
 
     if ( addr % 4 )
     {
-        PT_LOG("unaligned dword access to MSI-X table, addr %016"PRIx64"\n",
-                addr);
+        PT_LOG("Error: Unaligned dword access to MSI-X table, \
+                addr %016"PRIx64"\n", addr);
         return 0;
     }
 
@@ -504,7 +504,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
 
     if ( id != PCI_CAP_ID_MSIX )
     {
-        PT_LOG("error id %x pos %x\n", id, pos);
+        PT_LOG("Error: Invalid id %x pos %x\n", id, pos);
         return -1;
     }
 
@@ -516,7 +516,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
                        + total_entries*sizeof(struct msix_entry_info));
     if ( !dev->msix )
     {
-        PT_LOG("error allocation pt_msix_info\n");
+        PT_LOG("Error: Allocating pt_msix_info failed.\n");
         return -1;
     }
     memset(dev->msix, 0, sizeof(struct pt_msix_info)
@@ -538,7 +538,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
     fd = open("/dev/mem", O_RDWR);
     if ( fd == -1 )
     {
-        PT_LOG("Can't open /dev/mem: %s\n", strerror(errno));
+        PT_LOG("Error: Can't open /dev/mem: %s\n", strerror(errno));
         goto error_out;
     }
     dev->msix->phys_iomem_base = mmap(0, total_entries * 16,
@@ -546,7 +546,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
                           fd, dev->msix->table_base + table_off);
     if ( dev->msix->phys_iomem_base == MAP_FAILED )
     {
-        PT_LOG("Can't map physical MSI-X table: %s\n", strerror(errno));
+        PT_LOG("Error: Can't map physical MSI-X table: %s\n", strerror(errno));
         close(fd);
         goto error_out;
     }

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-17  9:20 [PATCH] ioemu: Cleanup the code of PCI passthrough Yuji Shimada
@ 2009-02-19 17:13 ` Ian Jackson
  2009-02-20  4:55   ` Yuji Shimada
  0 siblings, 1 reply; 36+ messages in thread
From: Ian Jackson @ 2009-02-19 17:13 UTC (permalink / raw)
  To: Yuji Shimada; +Cc: xen-devel@lists.xensource.com

Yuji Shimada writes ("[PATCH] ioemu: Cleanup the code of PCI passthrough."):
> This patch cleanups the code of PCI passthrough.

Thanks but this doesn't apply to the current qemu-xen-unstable head
(commit 200a4ece52fa37d6b884b52c47e3d56b9c1c7563)

Some of these changes, for example this one:
> - Use LIST_FOREACH(). Don't use lh_first, le_next directly.
seem to have been applied already for example in
8c771eb6294afc5b3754a9e3de51568d4e5986c2

Can you refresh and resend the patch, please ?

Thanks,
Ian.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-19 17:13 ` Ian Jackson
@ 2009-02-20  4:55   ` Yuji Shimada
  2009-02-23  1:40     ` Yuji Shimada
  0 siblings, 1 reply; 36+ messages in thread
From: Yuji Shimada @ 2009-02-20  4:55 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel@lists.xensource.com

On Thu, 19 Feb 2009 17:13:42 +0000
Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:

> Yuji Shimada writes ("[PATCH] ioemu: Cleanup the code of PCI passthrough."):
> > This patch cleanups the code of PCI passthrough.
> 
> Thanks but this doesn't apply to the current qemu-xen-unstable head
> (commit 200a4ece52fa37d6b884b52c47e3d56b9c1c7563)
>
> Some of these changes, for example this one:
> > - Use LIST_FOREACH(). Don't use lh_first, le_next directly.
> seem to have been applied already for example in
> 8c771eb6294afc5b3754a9e3de51568d4e5986c2
> 
> Can you refresh and resend the patch, please ?

My patch was created for commit 200a4ece52fa37d6b884b52c47e3d56b9c1c7563.
But I found the patch has a trailing whitespace. This might prevent
the patch from applying. I removed a trailing whitespace from the
patch and attach it to this mail.

If the patch doesn't apply to the current qemu-xen-unstable head,
Could you send error messages?


The patch cleanups the code of PCI passthrough.

- Use LIST_FOREACH(). Don't use lh_first, le_next directly.
- Use pci_{read, write}_block instead of "switch(len) case [124]
  pci_{read, write}_{byte, word, long}();".
- Eliminate duplicate codes using PT_MEARGE_VALUE macro.
- Define PCI_ERR_* macro in pass-through.h if libpci is old.
- Remove the unreasonable loop from pt_aer_reg_{save,restore}.
- Enable pt_aer_reg_{save,restore}, even if libpci is old.
- Fix ro_mask and remove unnecessary pt_xxx_reg_write functions.
- Add "Error:" or "Warning:" to messages.
- Remove verbose messages.

Thanks,
--
Yuji Shimada.


Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.j>

diff --git a/hw/pass-through.c b/hw/pass-through.c
index c2a6ec1..1de0162 100644
--- a/hw/pass-through.c
+++ b/hw/pass-through.c
@@ -126,18 +126,6 @@ static int pt_exp_rom_bar_reg_write(struct pt_dev *ptdev,
 static int pt_pmcsr_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
     uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_devctrl_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_linkctrl_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_devctrl2_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_linkctrl2_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
 static int pt_msgctrl_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
     uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
@@ -413,7 +401,7 @@ static struct pt_reg_info_tbl pt_emu_reg_pm_tbl[] = {
         .offset     = PCI_PM_CTRL,
         .size       = 2,
         .init_val   = 0x0008,
-        .ro_mask    = 0x60FC,
+        .ro_mask    = 0xE1FC,
         .emu_mask   = 0x8100,
         .init       = pt_pmcsr_reg_init,
         .u.w.read   = pt_word_reg_read,
@@ -494,11 +482,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = PCI_EXP_DEVCTL,
         .size       = 2,
         .init_val   = 0x2810,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0x8400,
         .emu_mask   = 0xFFFF,
         .init       = pt_common_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_devctrl_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Link Control reg */
@@ -506,11 +494,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = PCI_EXP_LNKCTL,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xFC34,
         .emu_mask   = 0xFFFF,
         .init       = pt_linkctrl_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_linkctrl_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Device Control 2 reg */
@@ -518,11 +506,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = 0x28,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xFFE0,
         .emu_mask   = 0xFFFF,
         .init       = pt_devctrl2_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_devctrl2_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Link Control 2 reg */
@@ -530,11 +518,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = 0x30,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xE040,
         .emu_mask   = 0xFFFF,
         .init       = pt_linkctrl2_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_linkctrl2_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     {
@@ -1051,8 +1039,7 @@ struct pt_reg_grp_tbl* pt_find_reg_grp(
     struct pt_reg_grp_tbl* reg_grp_entry = NULL;
 
     /* find register group entry */
-    for (reg_grp_entry = ptdev->reg_grp_tbl_head.lh_first; reg_grp_entry;
-        reg_grp_entry = reg_grp_entry->entries.le_next)
+    LIST_FOREACH(reg_grp_entry, &ptdev->reg_grp_tbl_head, entries)
     {
         /* check address */
         if ((reg_grp_entry->base_offset <= address) &&
@@ -1075,8 +1062,7 @@ struct pt_reg_tbl* pt_find_reg(
     uint32_t real_offset = 0;
 
     /* find register entry */
-    for (reg_entry = reg_grp->reg_tbl_head.lh_first; reg_entry;
-        reg_entry = reg_entry->entries.le_next)
+    LIST_FOREACH(reg_entry, &reg_grp->reg_tbl_head, entries)
     {
         reg = reg_entry->reg;
         real_offset = (reg_grp->base_offset + reg->offset);
@@ -1140,7 +1126,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check offset range */
     if (address >= 0xFF)
     {
-        PT_LOG("Failed to write register with offset exceeding FFh. "
+        PT_LOG("Error: Failed to write register with offset exceeding FFh. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1150,7 +1136,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check write size */
     if ((len != 1) && (len != 2) && (len != 4))
     {
-        PT_LOG("Failed to write register with invalid access length. "
+        PT_LOG("Error: Failed to write register with invalid access length. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1160,8 +1146,8 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check offset alignment */
     if (address & (len-1))
     {
-        PT_LOG("Failed to write register with invalid access size alignment. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Error: Failed to write register with invalid access size "
+            "alignment. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
         goto exit;
@@ -1172,8 +1158,8 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     if ((index >= 0) && (val > 0 && val < PT_BAR_ALLF) &&
         (assigned_device->bases[index].bar_flag == PT_BAR_FLAG_UNUSED))
     {
-        PT_LOG("Guest attempt to set address to unused Base Address Register. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Warning: Guest attempt to set address to unused Base Address "
+            "Register. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), 
             (d->devfn & 0x7), address, len);
     }
@@ -1194,7 +1180,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
         if (reg_grp->grp_type == GRP_TYPE_HARDWIRED)
         {
             /* ignore silently */
-            PT_LOG("Access to 0 Hardwired register. "
+            PT_LOG("Warning: Access to 0 Hardwired register. "
                 "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
                 pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), 
                 (d->devfn & 0x7), address, len);
@@ -1203,28 +1189,14 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     }
 
     /* read I/O device register value */
-    switch (len) {
-    case 1:
-        read_val = pci_read_byte(pci_dev, address);
-        break;
-    case 2:
-        read_val = pci_read_word(pci_dev, address);
-        break;
-    case 4:
-        read_val = pci_read_long(pci_dev, address);
-        break;
-    }
+    ret = pci_read_block(pci_dev, address, (uint8_t *)&read_val, len);
 
-    /* check libpci result */
-    valid_mask = (0xFFFFFFFF >> ((4 - len) << 3));
-    if ((read_val & valid_mask) == valid_mask)
+    if (!ret)
     {
-        PT_LOG("Warning: Return ALL F from libpci read. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
-            pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
-            address, len);
+        PT_LOG("Error: pci_read_block failed. return value[%d].\n", ret);
+        memset((uint8_t *)&read_val, 0xff, len);
     }
-    
+
     /* pass directly to libpci for passthrough type register group */
     if (reg_grp_entry == NULL)
         goto out;
@@ -1303,17 +1277,10 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     val >>= ((address & 3) << 3);
 
 out:
-    switch (len){
-    case 1:
-        pci_write_byte(pci_dev, address, val);
-        break;
-    case 2:
-        pci_write_word(pci_dev, address, val);
-        break;
-    case 4:
-        pci_write_long(pci_dev, address, val);
-        break;
-    }
+    ret = pci_write_block(pci_dev, address, (uint8_t *)&val, len);
+
+    if (!ret)
+        PT_LOG("Error: pci_write_block failed. return value[%d].\n", ret);
 
     if (pm_state->flags & PT_FLAG_TRANSITING)
         /* set QEMUTimer */
@@ -1329,7 +1298,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     struct pt_dev *assigned_device = (struct pt_dev *)d;
     struct pci_dev *pci_dev = assigned_device->pci_dev;
     struct pt_pm_info *pm_state = assigned_device->pm_state;
-    uint32_t val = 0xFFFFFFFF;
+    uint32_t val = 0;
     struct pt_reg_grp_tbl *reg_grp_entry = NULL;
     struct pt_reg_grp_info_tbl *reg_grp = NULL;
     struct pt_reg_tbl *reg_entry = NULL;
@@ -1344,7 +1313,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check offset range */
     if (address >= 0xFF)
     {
-        PT_LOG("Failed to read register with offset exceeding FFh. "
+        PT_LOG("Error: Failed to read register with offset exceeding FFh. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1354,7 +1323,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check read size */
     if ((len != 1) && (len != 2) && (len != 4))
     {
-        PT_LOG("Failed to read register with invalid access length. "
+        PT_LOG("Error: Failed to read register with invalid access length. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1364,8 +1333,8 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check offset alignment */
     if (address & (len-1))
     {
-        PT_LOG("Failed to read register with invalid access size alignment. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Error: Failed to read register with invalid access size "
+            "alignment. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
         goto exit;
@@ -1393,26 +1362,12 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     }
 
     /* read I/O device register value */
-    switch (len) {
-    case 1:
-        val = pci_read_byte(pci_dev, address);
-        break;
-    case 2:
-        val = pci_read_word(pci_dev, address);
-        break;
-    case 4:
-        val = pci_read_long(pci_dev, address);
-        break;
-    }
+    ret = pci_read_block(pci_dev, address, (uint8_t *)&val, len);
 
-    /* check libpci result */
-    valid_mask = (0xFFFFFFFF >> ((4 - len) << 3));
-    if ((val & valid_mask) == valid_mask)
+    if (!ret)
     {
-        PT_LOG("Warning: Return ALL F from libpci read. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
-            pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
-            address, len);
+        PT_LOG("Error: pci_read_block failed. return value[%d].\n", ret);
+        memset((uint8_t *)&val, 0xff, len);
     }
 
     /* just return the I/O device register value for 
@@ -1514,7 +1471,7 @@ static void pt_libpci_fixup(struct pci_dev *dev)
     fp = fopen(path, "r");
     if ( !fp )
     {
-        PT_LOG("Can't open %s: %s\n", path, strerror(errno));
+        PT_LOG("Error: Can't open %s: %s\n", path, strerror(errno));
         return;
     }
 
@@ -1522,7 +1479,7 @@ static void pt_libpci_fixup(struct pci_dev *dev)
     {
         if ( fscanf(fp, "%llx %llx %llx", &start, &end, &flags) != 3 )
         {
-            PT_LOG("Syntax error in %s\n", path);
+            PT_LOG("Error: Syntax error in %s\n", path);
             break;
         }
 
@@ -1800,8 +1757,8 @@ static void pt_bar_mapping(struct pt_dev *ptdev, int io_enable, int mem_enable)
         /* check overlapped address */
         ret = pt_chk_bar_overlap(dev->bus, dev->devfn, r_addr, r_size);
         if (ret > 0)
-            PT_LOG("ptdev[%02x:%02x.%x][Region:%d][Address:%08xh][Size:%08xh] "
-                "is overlapped.\n", pci_bus_num(dev->bus), 
+            PT_LOG("Warning: ptdev[%02x:%02x.%x][Region:%d][Address:%08xh]"
+                "[Size:%08xh] is overlapped.\n", pci_bus_num(dev->bus),
                 (dev->devfn >> 3) & 0x1F, (dev->devfn & 0x7),
                 i, r_addr, r_size);
 
@@ -1841,68 +1798,51 @@ int check_power_state(struct pt_dev *ptdev)
     return 0;
 }
 
-/* save AER register */
-static void pt_aer_reg_save(struct pt_dev *ptdev)
+/* save AER one register */
+static void aer_save_one_register(struct pt_dev *ptdev, int offset)
 {
     PCIDevice *d = &ptdev->dev;
     uint32_t aer_base = ptdev->pm_state->aer_base;
-    int i = 0;
-    /* Root Port and Root Complex Event Collector need size expansion */
-    int aer_size = 0x2c;
 
-#ifdef PCI_ERR_UNCOR_MASK
-    for (i=0; i < aer_size; i+=4)
-    {
-        switch (i) {
-        /* after reset, following register values should be restored.
-         * So, save them.
-         */
-        case PCI_ERR_UNCOR_MASK:
-        case PCI_ERR_UNCOR_SEVER:
-        case PCI_ERR_COR_MASK:
-        case PCI_ERR_CAP:
-            *(uint32_t*)(d->config + (aer_base + i))
-                 = pci_read_long(ptdev->pci_dev, (aer_base + i));
-            break;
-        default:
-            break;
-        }
-    }
-#endif
+    *(uint32_t*)(d->config + (aer_base + offset))
+        = pci_read_long(ptdev->pci_dev, (aer_base + offset));
 }
 
-/* restore AER register */
-static void pt_aer_reg_restore(struct pt_dev *ptdev)
+/* save AER registers */
+static void pt_aer_reg_save(struct pt_dev *ptdev)
+{
+    /* after reset, following register values should be restored.
+     * So, save them.
+     */
+    aer_save_one_register(ptdev, PCI_ERR_UNCOR_MASK);
+    aer_save_one_register(ptdev, PCI_ERR_UNCOR_SEVER);
+    aer_save_one_register(ptdev, PCI_ERR_COR_MASK);
+    aer_save_one_register(ptdev, PCI_ERR_CAP);
+}
+
+/* restore AER one register */
+static void aer_restore_one_register(struct pt_dev *ptdev, int offset)
 {
     PCIDevice *d = &ptdev->dev;
     uint32_t aer_base = ptdev->pm_state->aer_base;
-    int i = 0;
     uint32_t config = 0;
-    /* Root Port and Root Complex Event Collector need size expansion */
-    int aer_size = 0x2c;
 
-#ifdef PCI_ERR_UNCOR_MASK
-    for (i=0; i < aer_size; i+=4)
-    {
-        switch (i) {
-        /* the following registers should be reconfigured to correct values
-         * after reset. restore them.
-         */
-        case PCI_ERR_UNCOR_MASK:
-        case PCI_ERR_UNCOR_SEVER:
-        case PCI_ERR_COR_MASK:
-        case PCI_ERR_CAP:
-            config = *(uint32_t*)(d->config + (aer_base + i));
-            pci_write_long(ptdev->pci_dev, (aer_base + i), config);
-            break;
-        /* other registers should not be reconfigured after reset 
-         * if there is no reason
-         */
-        default:
-            break;
-        }
-    }
-#endif
+    config = *(uint32_t*)(d->config + (aer_base + offset));
+    pci_write_long(ptdev->pci_dev, (aer_base + offset), config);
+}
+
+/* restore AER registers */
+static void pt_aer_reg_restore(struct pt_dev *ptdev)
+{
+    /* the following registers should be reconfigured to correct values
+     * after reset. restore them.
+     * other registers should not be reconfigured after reset
+     * if there is no reason
+     */
+    aer_restore_one_register(ptdev, PCI_ERR_UNCOR_MASK);
+    aer_restore_one_register(ptdev, PCI_ERR_UNCOR_SEVER);
+    aer_restore_one_register(ptdev, PCI_ERR_COR_MASK);
+    aer_restore_one_register(ptdev, PCI_ERR_CAP);
 }
 
 /* reset Interrupt and I/O resource  */
@@ -2115,7 +2055,7 @@ static int pt_config_reg_init(struct pt_dev *ptdev,
     reg_entry = qemu_mallocz(sizeof(struct pt_reg_tbl));
     if (reg_entry == NULL)
     {
-        PT_LOG("Failed to allocate memory.\n");
+        PT_LOG("Error: Failed to allocate memory.\n");
         err = -1;
         goto out;
     }
@@ -2171,7 +2111,7 @@ static int pt_config_init(struct pt_dev *ptdev)
         reg_grp_entry = qemu_mallocz(sizeof(struct pt_reg_grp_tbl));
         if (reg_grp_entry == NULL)
         {
-            PT_LOG("Failed to allocate memory.\n");
+            PT_LOG("Error: Failed to allocate memory.\n");
             err = -1;
             goto out;
         }
@@ -2239,10 +2179,10 @@ static void pt_config_delete(struct pt_dev *ptdev)
     }
 
     /* free all register group entry */
-    while ((reg_grp_entry = ptdev->reg_grp_tbl_head.lh_first) != NULL)
+    while((reg_grp_entry = LIST_FIRST(&ptdev->reg_grp_tbl_head)) != NULL)
     {
         /* free all register entry */
-        while ((reg_entry = reg_grp_entry->reg_tbl_head.lh_first) != NULL)
+        while((reg_entry = LIST_FIRST(&reg_grp_entry->reg_tbl_head)) != NULL)
         {
             LIST_REMOVE(reg_entry, entries);
             qemu_free(reg_entry);
@@ -2624,7 +2564,7 @@ static uint8_t pt_msi_size_init(struct pt_dev *ptdev,
     if ( !ptdev->msi )
     {
         /* exit I/O emulator */
-        PT_LOG("error allocation pt_msi_info. I/O emulator exit.\n");
+        PT_LOG("Error: Allocating pt_msi_info failed. I/O emulator exit.\n");
         exit(1);
     }
     memset(ptdev->msi, 0, sizeof(struct pt_msi_info));
@@ -2754,8 +2694,7 @@ static int pt_byte_reg_read(struct pt_dev *ptdev,
 
     /* emulate byte register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
     return 0;
 }
@@ -2770,8 +2709,7 @@ static int pt_word_reg_read(struct pt_dev *ptdev,
 
     /* emulate word register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
     return 0;
 }
@@ -2786,8 +2724,7 @@ static int pt_long_reg_read(struct pt_dev *ptdev,
 
     /* emulate long register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
    return 0;
 }
@@ -2833,8 +2770,7 @@ static int pt_bar_reg_read(struct pt_dev *ptdev,
 
     /* emulate BAR */
     valid_emu_mask = bar_emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
    return 0;
 }
@@ -2850,13 +2786,11 @@ static int pt_byte_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2872,13 +2806,11 @@ static int pt_word_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2894,13 +2826,11 @@ static int pt_long_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2917,12 +2847,11 @@ static int pt_cmd_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* mapping BAR */
     pt_bar_mapping(ptdev, wr_value & PCI_COMMAND_IO, 
@@ -2988,8 +2917,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = bar_emu_mask & ~bar_ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* check whether we need to update the virtual region address or not */
     switch (ptdev->bases[index].bar_flag)
@@ -3007,7 +2935,8 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
             if ((last_addr >= 0x10000) &&
                 (cfg_entry->data != (PT_BAR_ALLF & ~bar_ro_mask)))
             {
-                PT_LOG("Guest attempt to set Base Address over the 64KB. "
+                PT_LOG("Warning: Guest attempt to set Base Address "
+                    "over the 64KB. "
                     "[%02x:%02x.%x][Offset:%02xh][Address:%08xh][Size:%08xh]\n",
                     pci_bus_num(d->bus), 
                     ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
@@ -3023,7 +2952,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
         {
             if (cfg_entry->data != (PT_BAR_ALLF & ~bar_ro_mask))
             {
-                PT_LOG("Guest attempt to set high MMIO Base Address. "
+                PT_LOG("Warning: Guest attempt to set high MMIO Base Address. "
                     "Ignore mapping. "
                     "[%02x:%02x.%x][Offset:%02xh][High Address:%08xh]\n",
                     pci_bus_num(d->bus), 
@@ -3066,8 +2995,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
 exit:
     /* create value for writing to I/O device register */
     throughable_mask = ~bar_emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -3099,16 +3027,14 @@ static int pt_exp_rom_bar_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = bar_emu_mask & ~bar_ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* update the corresponding virtual region address */
     r->addr = cfg_entry->data;
     
     /* create value for writing to I/O device register */
     throughable_mask = ~bar_emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -3122,22 +3048,16 @@ static int pt_pmcsr_reg_write(struct pt_dev *ptdev,
     PCIDevice *d = &ptdev->dev;
     uint16_t writable_mask = 0;
     uint16_t throughable_mask = 0;
-    uint16_t pmcsr_mask = (PCI_PM_CTRL_PME_ENABLE | 
-                           PCI_PM_CTRL_DATA_SEL_MASK |
-                           PCI_PM_CTRL_PME_STATUS);
     struct pt_pm_info *pm_state = ptdev->pm_state;
     uint16_t read_val = 0;
 
     /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~pmcsr_mask;
-
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* set I/O device power state */
     pm_state->cur_state = (dev_value & PCI_PM_CTRL_STATE_MASK);
@@ -3236,101 +3156,6 @@ static int pt_pmcsr_reg_write(struct pt_dev *ptdev,
     return 0;
 }
 
-/* write Device Control register */
-static int pt_devctrl_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t devctrl_mask = (PCI_EXP_DEVCTL_AUX_PME | 0x8000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~devctrl_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Link Control register */
-static int pt_linkctrl_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t linkctrl_mask = (0x04 | PCI_EXP_LNKCTL_DISABLE |
-                              PCI_EXP_LNKCTL_RETRAIN | 
-                              0x0400 | 0x0800 | 0xF000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~linkctrl_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Device Control2 register */
-static int pt_devctrl2_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t devctrl2_mask = 0xFFE0;
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~devctrl2_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Link Control2 register */
-static int pt_linkctrl2_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t linkctrl2_mask = (0x0040 | 0xE000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & 
-                    ~linkctrl2_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
 /* write Message Control register */
 static int pt_msgctrl_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
@@ -3346,22 +3171,19 @@ static int pt_msgctrl_reg_write(struct pt_dev *ptdev,
 
     /* Currently no support for multi-vector */
     if ((*value & PCI_MSI_FLAGS_QSIZE) != 0x0)
-        PT_LOG("try to set more than 1 vector ctrl %x\n", *value);
+        PT_LOG("Warning: try to set more than 1 vector ctrl %x\n", *value);
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->flags |= cfg_entry->data & 
         ~(MSI_FLAG_UNINIT | PT_MSI_MAPPED | PCI_MSI_FLAGS_ENABLE);
 
-    PT_LOG("old_ctrl:%04xh new_ctrl:%04xh\n", old_ctrl, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     val = *value;
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (val & PCI_MSI_FLAGS_ENABLE)
@@ -3420,16 +3242,13 @@ static int pt_msgaddr32_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->addr_lo = cfg_entry->data;
     
-    PT_LOG("old_addr_lo:%08xh new_addr_lo:%08xh\n", old_addr, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_addr)
@@ -3455,22 +3274,19 @@ static int pt_msgaddr64_reg_write(struct pt_dev *ptdev,
     if (!(ptdev->msi->flags & PCI_MSI_FLAGS_64BIT))
     {
         /* exit I/O emulator */
-        PT_LOG("why comes to Upper Address without 64 bit support??\n");
+        PT_LOG("Error: why comes to Upper Address without 64 bit support??\n");
         return -1;
     }
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->addr_hi = cfg_entry->data;
     
-    PT_LOG("old_addr_hi:%08xh new_addr_hi:%08xh\n", old_addr, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_addr)
@@ -3506,16 +3322,13 @@ static int pt_msgdata_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->data = cfg_entry->data;
 
-    PT_LOG("old_data:%04xh new_data:%04xh\n", old_data, cfg_entry->data);
-
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_data)
@@ -3539,14 +3352,11 @@ static int pt_msixctrl_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
-    PT_LOG("old_ctrl:%04xh new_ctrl:%04xh\n", old_ctrl, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI-X */
     if ((*value & PCI_MSIX_ENABLE) && !(*value & PCI_MSIX_MASK))
@@ -3979,7 +3789,7 @@ int pt_init(PCIBus *e_bus, const char *direct_pci)
     pci_access = pci_alloc();
     if ( pci_access == NULL )
     {
-        PT_LOG("pci_access is NULL\n");
+        PT_LOG("Error: pci_access is NULL\n");
         return -1;
     }
     pci_init(pci_access);
diff --git a/hw/pass-through.h b/hw/pass-through.h
index b44b9d7..2b2dbd2 100644
--- a/hw/pass-through.h
+++ b/hw/pass-through.h
@@ -86,6 +86,26 @@
 #define PCI_EXP_TYPE_ROOT_EC     0xa
 #endif
 
+#ifndef PCI_ERR_UNCOR_MASK
+/* Uncorrectable Error Mask */
+#define PCI_ERR_UNCOR_MASK      8
+#endif
+
+#ifndef PCI_ERR_UNCOR_SEVER
+/* Uncorrectable Error Severity */
+#define PCI_ERR_UNCOR_SEVER     12
+#endif
+
+#ifndef PCI_ERR_COR_MASK
+/* Correctable Error Mask */
+#define PCI_ERR_COR_MASK        20
+#endif
+
+#ifndef PCI_ERR_CAP
+/* Advanced Error Capabilities */
+#define PCI_ERR_CAP             24
+#endif
+
 #ifndef PCI_EXT_CAP_ID
 /* Extended Capabilities (PCI-X 2.0 and PCI Express) */
 #define PCI_EXT_CAP_ID(header)   (header & 0x0000ffff)
diff --git a/hw/pt-msi.c b/hw/pt-msi.c
index bdd1b38..6b0aaa1 100644
--- a/hw/pt-msi.c
+++ b/hw/pt-msi.c
@@ -68,7 +68,7 @@ int pt_msi_setup(struct pt_dev *dev)
 
     if ( !(dev->msi->flags & MSI_FLAG_UNINIT) )
     {
-        PT_LOG("setup physical after initialized?? \n");
+        PT_LOG("Error: setup physical after initialized?? \n");
         return -1;
     }
 
@@ -76,13 +76,13 @@ int pt_msi_setup(struct pt_dev *dev)
                                  dev->pci_dev->dev << 3 | dev->pci_dev->func,
                                  dev->pci_dev->bus, 0, 0) )
     {
-        PT_LOG("error map msi\n");
+        PT_LOG("Error: Mapping of MSI failed.\n");
         return -1;
     }
 
     if ( pirq < 0 )
     {
-        PT_LOG("invalid pirq number\n");
+        PT_LOG("Error: Invalid pirq number\n");
         return -1;
     }
 
@@ -125,7 +125,7 @@ int pt_msi_update(struct pt_dev *d)
     addr = (uint64_t)d->msi->addr_hi << 32 | d->msi->addr_lo;
     gflags = __get_msi_gflags(d->msi->data, addr);
     
-    PT_LOG("now update msi with pirq %x gvec %x\n", d->msi->pirq, gvec);
+    PT_LOG("Update msi with pirq %x gvec %x\n", d->msi->pirq, gvec);
     return xc_domain_update_msi_irq(xc_handle, domid, gvec,
                                      d->msi->pirq, gflags);
 }
@@ -295,19 +295,19 @@ static int pt_msix_update_one(struct pt_dev *dev, int entry_nr)
                                 dev->msix->table_base);
         if ( ret )
         {
-            PT_LOG("error map msix entry %x\n", entry_nr);
+            PT_LOG("Error: Mapping msix entry %x\n", entry_nr);
             return ret;
         }
         entry->pirq = pirq;
     }
 
-    PT_LOG("now update msix entry %x with pirq %x gvec %x\n",
+    PT_LOG("Update msix entry %x with pirq %x gvec %x\n",
             entry_nr, pirq, gvec);
 
     ret = xc_domain_update_msi_irq(xc_handle, domid, gvec, pirq, gflags);
     if ( ret )
     {
-        PT_LOG("error update msix irq info for entry %d\n", entry_nr);
+        PT_LOG("Error: Updating msix irq info for entry %d\n", entry_nr);
         return ret;
     }
 
@@ -378,7 +378,7 @@ void pt_msix_disable(struct pt_dev *dev)
 static void pci_msix_invalid_write(void *opaque, target_phys_addr_t addr,
                                    uint32_t val)
 {
-    PT_LOG("invalid write to MSI-X table, \
+    PT_LOG("Error: Invalid write to MSI-X table, \
             only dword access is allowed.\n");
 }
 
@@ -391,8 +391,8 @@ static void pci_msix_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
 
     if ( addr % 4 )
     {
-        PT_LOG("unaligned dword access to MSI-X table, addr %016"PRIx64"\n",
-                addr);
+        PT_LOG("Error: Unaligned dword access to MSI-X table, \
+                addr %016"PRIx64"\n", addr);
         return;
     }
 
@@ -402,8 +402,8 @@ static void pci_msix_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
 
     if ( offset != 3 && msix->enabled && !(entry->io_mem[3] & 0x1) )
     {
-        PT_LOG("can not update msix entry %d since MSI-X is already \
-                function now.\n", entry_nr);
+        PT_LOG("Error: Can't update msix entry %d since MSI-X is already \
+                function.\n", entry_nr);
         return;
     }
 
@@ -427,7 +427,7 @@ static CPUWriteMemoryFunc *pci_msix_write[] = {
 
 static uint32_t pci_msix_invalid_read(void *opaque, target_phys_addr_t addr)
 {
-    PT_LOG("invalid read to MSI-X table, \
+    PT_LOG("Error: Invalid read to MSI-X table, \
             only dword access is allowed.\n");
     return 0;
 }
@@ -440,8 +440,8 @@ static uint32_t pci_msix_readl(void *opaque, target_phys_addr_t addr)
 
     if ( addr % 4 )
     {
-        PT_LOG("unaligned dword access to MSI-X table, addr %016"PRIx64"\n",
-                addr);
+        PT_LOG("Error: Unaligned dword access to MSI-X table, \
+                addr %016"PRIx64"\n", addr);
         return 0;
     }
 
@@ -504,7 +504,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
 
     if ( id != PCI_CAP_ID_MSIX )
     {
-        PT_LOG("error id %x pos %x\n", id, pos);
+        PT_LOG("Error: Invalid id %x pos %x\n", id, pos);
         return -1;
     }
 
@@ -516,7 +516,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
                        + total_entries*sizeof(struct msix_entry_info));
     if ( !dev->msix )
     {
-        PT_LOG("error allocation pt_msix_info\n");
+        PT_LOG("Error: Allocating pt_msix_info failed.\n");
         return -1;
     }
     memset(dev->msix, 0, sizeof(struct pt_msix_info)
@@ -538,7 +538,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
     fd = open("/dev/mem", O_RDWR);
     if ( fd == -1 )
     {
-        PT_LOG("Can't open /dev/mem: %s\n", strerror(errno));
+        PT_LOG("Error: Can't open /dev/mem: %s\n", strerror(errno));
         goto error_out;
     }
     dev->msix->phys_iomem_base = mmap(0, total_entries * 16,
@@ -546,7 +546,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
                           fd, dev->msix->table_base + table_off);
     if ( dev->msix->phys_iomem_base == MAP_FAILED )
     {
-        PT_LOG("Can't map physical MSI-X table: %s\n", strerror(errno));
+        PT_LOG("Error: Can't map physical MSI-X table: %s\n", strerror(errno));
         close(fd);
         goto error_out;
     }

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-20  4:55   ` Yuji Shimada
@ 2009-02-23  1:40     ` Yuji Shimada
  2009-02-23  5:56       ` Simon Horman
  0 siblings, 1 reply; 36+ messages in thread
From: Yuji Shimada @ 2009-02-23  1:40 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel@lists.xensource.com

On Fri, 20 Feb 2009 13:55:06 +0900
Yuji Shimada <shimada-yxb@necst.nec.co.jp> wrote:

> On Thu, 19 Feb 2009 17:13:42 +0000
> Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
> 
> > Yuji Shimada writes ("[PATCH] ioemu: Cleanup the code of PCI passthrough."):
> > > This patch cleanups the code of PCI passthrough.
> > 
> > Thanks but this doesn't apply to the current qemu-xen-unstable head
> > (commit 200a4ece52fa37d6b884b52c47e3d56b9c1c7563)
> >
> > Some of these changes, for example this one:
> > > - Use LIST_FOREACH(). Don't use lh_first, le_next directly.
> > seem to have been applied already for example in
> > 8c771eb6294afc5b3754a9e3de51568d4e5986c2
> > 
> > Can you refresh and resend the patch, please ?
> 
> My patch was created for commit 200a4ece52fa37d6b884b52c47e3d56b9c1c7563.
> But I found the patch has a trailing whitespace. This might prevent
> the patch from applying. I removed a trailing whitespace from the
> patch and attach it to this mail.
> 
> If the patch doesn't apply to the current qemu-xen-unstable head,
> Could you send error messages?

I found "git apply" command did not apply my patch, while "patch"
command applied it. I re-created my patch, and I tested that "git apply"
command applied it. I attach it to this mail. Could you try to apply
it?


The patch cleanups the code of PCI passthrough.

- Use LIST_FOREACH(). Don't use lh_first, le_next directly.
- Use pci_{read, write}_block instead of "switch(len) case [124]
  pci_{read, write}_{byte, word, long}();".
- Eliminate duplicate codes using PT_MEARGE_VALUE macro.
- Define PCI_ERR_* macro in pass-through.h if libpci is old.
- Remove the unreasonable loop from pt_aer_reg_{save,restore}.
- Enable pt_aer_reg_{save,restore}, even if libpci is old.
- Fix ro_mask and remove unnecessary pt_xxx_reg_write functions.
- Add "Error:" or "Warning:" to messages.
- Remove verbose messages.

Thanks,
--
Yuji Shimada.


Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp>

diff --git a/hw/pass-through.c b/hw/pass-through.c
index c2a6ec1..855f69c 100644
--- a/hw/pass-through.c
+++ b/hw/pass-through.c
@@ -126,18 +126,6 @@ static int pt_exp_rom_bar_reg_write(struct pt_dev *ptdev,
 static int pt_pmcsr_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
     uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_devctrl_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_linkctrl_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_devctrl2_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
-static int pt_linkctrl2_reg_write(struct pt_dev *ptdev, 
-    struct pt_reg_tbl *cfg_entry, 
-    uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
 static int pt_msgctrl_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
     uint16_t *value, uint16_t dev_value, uint16_t valid_mask);
@@ -413,7 +401,7 @@ static struct pt_reg_info_tbl pt_emu_reg_pm_tbl[] = {
         .offset     = PCI_PM_CTRL,
         .size       = 2,
         .init_val   = 0x0008,
-        .ro_mask    = 0x60FC,
+        .ro_mask    = 0xE1FC,
         .emu_mask   = 0x8100,
         .init       = pt_pmcsr_reg_init,
         .u.w.read   = pt_word_reg_read,
@@ -494,11 +482,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = PCI_EXP_DEVCTL,
         .size       = 2,
         .init_val   = 0x2810,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0x8400,
         .emu_mask   = 0xFFFF,
         .init       = pt_common_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_devctrl_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Link Control reg */
@@ -506,11 +494,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = PCI_EXP_LNKCTL,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xFC34,
         .emu_mask   = 0xFFFF,
         .init       = pt_linkctrl_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_linkctrl_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Device Control 2 reg */
@@ -518,11 +506,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = 0x28,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xFFE0,
         .emu_mask   = 0xFFFF,
         .init       = pt_devctrl2_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_devctrl2_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     /* Link Control 2 reg */
@@ -530,11 +518,11 @@ static struct pt_reg_info_tbl pt_emu_reg_pcie_tbl[] = {
         .offset     = 0x30,
         .size       = 2,
         .init_val   = 0x0000,
-        .ro_mask    = 0x0000,
+        .ro_mask    = 0xE040,
         .emu_mask   = 0xFFFF,
         .init       = pt_linkctrl2_reg_init,
         .u.w.read   = pt_word_reg_read,
-        .u.w.write  = pt_linkctrl2_reg_write,
+        .u.w.write  = pt_word_reg_write,
         .u.w.restore  = pt_word_reg_restore,
     },
     {
@@ -1051,8 +1039,7 @@ struct pt_reg_grp_tbl* pt_find_reg_grp(
     struct pt_reg_grp_tbl* reg_grp_entry = NULL;
 
     /* find register group entry */
-    for (reg_grp_entry = ptdev->reg_grp_tbl_head.lh_first; reg_grp_entry;
-        reg_grp_entry = reg_grp_entry->entries.le_next)
+    LIST_FOREACH(reg_grp_entry, &ptdev->reg_grp_tbl_head, entries)
     {
         /* check address */
         if ((reg_grp_entry->base_offset <= address) &&
@@ -1075,8 +1062,7 @@ struct pt_reg_tbl* pt_find_reg(
     uint32_t real_offset = 0;
 
     /* find register entry */
-    for (reg_entry = reg_grp->reg_tbl_head.lh_first; reg_entry;
-        reg_entry = reg_entry->entries.le_next)
+    LIST_FOREACH(reg_entry, &reg_grp->reg_tbl_head, entries)
     {
         reg = reg_entry->reg;
         real_offset = (reg_grp->base_offset + reg->offset);
@@ -1140,7 +1126,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check offset range */
     if (address >= 0xFF)
     {
-        PT_LOG("Failed to write register with offset exceeding FFh. "
+        PT_LOG("Error: Failed to write register with offset exceeding FFh. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1150,7 +1136,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check write size */
     if ((len != 1) && (len != 2) && (len != 4))
     {
-        PT_LOG("Failed to write register with invalid access length. "
+        PT_LOG("Error: Failed to write register with invalid access length. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1160,8 +1146,8 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     /* check offset alignment */
     if (address & (len-1))
     {
-        PT_LOG("Failed to write register with invalid access size alignment. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Error: Failed to write register with invalid access size "
+            "alignment. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
         goto exit;
@@ -1172,8 +1158,8 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     if ((index >= 0) && (val > 0 && val < PT_BAR_ALLF) &&
         (assigned_device->bases[index].bar_flag == PT_BAR_FLAG_UNUSED))
     {
-        PT_LOG("Guest attempt to set address to unused Base Address Register. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Warning: Guest attempt to set address to unused Base Address "
+            "Register. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), 
             (d->devfn & 0x7), address, len);
     }
@@ -1194,7 +1180,7 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
         if (reg_grp->grp_type == GRP_TYPE_HARDWIRED)
         {
             /* ignore silently */
-            PT_LOG("Access to 0 Hardwired register. "
+            PT_LOG("Warning: Access to 0 Hardwired register. "
                 "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
                 pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), 
                 (d->devfn & 0x7), address, len);
@@ -1203,28 +1189,14 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     }
 
     /* read I/O device register value */
-    switch (len) {
-    case 1:
-        read_val = pci_read_byte(pci_dev, address);
-        break;
-    case 2:
-        read_val = pci_read_word(pci_dev, address);
-        break;
-    case 4:
-        read_val = pci_read_long(pci_dev, address);
-        break;
-    }
+    ret = pci_read_block(pci_dev, address, (uint8_t *)&read_val, len);
 
-    /* check libpci result */
-    valid_mask = (0xFFFFFFFF >> ((4 - len) << 3));
-    if ((read_val & valid_mask) == valid_mask)
+    if (!ret)
     {
-        PT_LOG("Warning: Return ALL F from libpci read. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
-            pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
-            address, len);
+        PT_LOG("Error: pci_read_block failed. return value[%d].\n", ret);
+        memset((uint8_t *)&read_val, 0xff, len);
     }
-    
+
     /* pass directly to libpci for passthrough type register group */
     if (reg_grp_entry == NULL)
         goto out;
@@ -1303,17 +1275,10 @@ static void pt_pci_write_config(PCIDevice *d, uint32_t address, uint32_t val,
     val >>= ((address & 3) << 3);
 
 out:
-    switch (len){
-    case 1:
-        pci_write_byte(pci_dev, address, val);
-        break;
-    case 2:
-        pci_write_word(pci_dev, address, val);
-        break;
-    case 4:
-        pci_write_long(pci_dev, address, val);
-        break;
-    }
+    ret = pci_write_block(pci_dev, address, (uint8_t *)&val, len);
+
+    if (!ret)
+        PT_LOG("Error: pci_write_block failed. return value[%d].\n", ret);
 
     if (pm_state->flags & PT_FLAG_TRANSITING)
         /* set QEMUTimer */
@@ -1329,7 +1294,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     struct pt_dev *assigned_device = (struct pt_dev *)d;
     struct pci_dev *pci_dev = assigned_device->pci_dev;
     struct pt_pm_info *pm_state = assigned_device->pm_state;
-    uint32_t val = 0xFFFFFFFF;
+    uint32_t val = 0;
     struct pt_reg_grp_tbl *reg_grp_entry = NULL;
     struct pt_reg_grp_info_tbl *reg_grp = NULL;
     struct pt_reg_tbl *reg_entry = NULL;
@@ -1344,7 +1309,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check offset range */
     if (address >= 0xFF)
     {
-        PT_LOG("Failed to read register with offset exceeding FFh. "
+        PT_LOG("Error: Failed to read register with offset exceeding FFh. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1354,7 +1319,7 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check read size */
     if ((len != 1) && (len != 2) && (len != 4))
     {
-        PT_LOG("Failed to read register with invalid access length. "
+        PT_LOG("Error: Failed to read register with invalid access length. "
             "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
@@ -1364,8 +1329,8 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     /* check offset alignment */
     if (address & (len-1))
     {
-        PT_LOG("Failed to read register with invalid access size alignment. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
+        PT_LOG("Error: Failed to read register with invalid access size "
+            "alignment. [%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
             pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
             address, len);
         goto exit;
@@ -1393,26 +1358,12 @@ static uint32_t pt_pci_read_config(PCIDevice *d, uint32_t address, int len)
     }
 
     /* read I/O device register value */
-    switch (len) {
-    case 1:
-        val = pci_read_byte(pci_dev, address);
-        break;
-    case 2:
-        val = pci_read_word(pci_dev, address);
-        break;
-    case 4:
-        val = pci_read_long(pci_dev, address);
-        break;
-    }
+    ret = pci_read_block(pci_dev, address, (uint8_t *)&val, len);
 
-    /* check libpci result */
-    valid_mask = (0xFFFFFFFF >> ((4 - len) << 3));
-    if ((val & valid_mask) == valid_mask)
+    if (!ret)
     {
-        PT_LOG("Warning: Return ALL F from libpci read. "
-            "[%02x:%02x.%x][Offset:%02xh][Length:%d]\n",
-            pci_bus_num(d->bus), ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
-            address, len);
+        PT_LOG("Error: pci_read_block failed. return value[%d].\n", ret);
+        memset((uint8_t *)&val, 0xff, len);
     }
 
     /* just return the I/O device register value for 
@@ -1514,7 +1465,7 @@ static void pt_libpci_fixup(struct pci_dev *dev)
     fp = fopen(path, "r");
     if ( !fp )
     {
-        PT_LOG("Can't open %s: %s\n", path, strerror(errno));
+        PT_LOG("Error: Can't open %s: %s\n", path, strerror(errno));
         return;
     }
 
@@ -1522,7 +1473,7 @@ static void pt_libpci_fixup(struct pci_dev *dev)
     {
         if ( fscanf(fp, "%llx %llx %llx", &start, &end, &flags) != 3 )
         {
-            PT_LOG("Syntax error in %s\n", path);
+            PT_LOG("Error: Syntax error in %s\n", path);
             break;
         }
 
@@ -1800,8 +1751,8 @@ static void pt_bar_mapping(struct pt_dev *ptdev, int io_enable, int mem_enable)
         /* check overlapped address */
         ret = pt_chk_bar_overlap(dev->bus, dev->devfn, r_addr, r_size);
         if (ret > 0)
-            PT_LOG("ptdev[%02x:%02x.%x][Region:%d][Address:%08xh][Size:%08xh] "
-                "is overlapped.\n", pci_bus_num(dev->bus), 
+            PT_LOG("Warning: ptdev[%02x:%02x.%x][Region:%d][Address:%08xh]"
+                "[Size:%08xh] is overlapped.\n", pci_bus_num(dev->bus),
                 (dev->devfn >> 3) & 0x1F, (dev->devfn & 0x7),
                 i, r_addr, r_size);
 
@@ -1841,68 +1792,51 @@ int check_power_state(struct pt_dev *ptdev)
     return 0;
 }
 
-/* save AER register */
-static void pt_aer_reg_save(struct pt_dev *ptdev)
+/* save AER one register */
+static void aer_save_one_register(struct pt_dev *ptdev, int offset)
 {
     PCIDevice *d = &ptdev->dev;
     uint32_t aer_base = ptdev->pm_state->aer_base;
-    int i = 0;
-    /* Root Port and Root Complex Event Collector need size expansion */
-    int aer_size = 0x2c;
 
-#ifdef PCI_ERR_UNCOR_MASK
-    for (i=0; i < aer_size; i+=4)
-    {
-        switch (i) {
-        /* after reset, following register values should be restored.
-         * So, save them.
-         */
-        case PCI_ERR_UNCOR_MASK:
-        case PCI_ERR_UNCOR_SEVER:
-        case PCI_ERR_COR_MASK:
-        case PCI_ERR_CAP:
-            *(uint32_t*)(d->config + (aer_base + i))
-                 = pci_read_long(ptdev->pci_dev, (aer_base + i));
-            break;
-        default:
-            break;
-        }
-    }
-#endif
+    *(uint32_t*)(d->config + (aer_base + offset))
+        = pci_read_long(ptdev->pci_dev, (aer_base + offset));
 }
 
-/* restore AER register */
-static void pt_aer_reg_restore(struct pt_dev *ptdev)
+/* save AER registers */
+static void pt_aer_reg_save(struct pt_dev *ptdev)
+{
+    /* after reset, following register values should be restored.
+     * So, save them.
+     */
+    aer_save_one_register(ptdev, PCI_ERR_UNCOR_MASK);
+    aer_save_one_register(ptdev, PCI_ERR_UNCOR_SEVER);
+    aer_save_one_register(ptdev, PCI_ERR_COR_MASK);
+    aer_save_one_register(ptdev, PCI_ERR_CAP);
+}
+
+/* restore AER one register */
+static void aer_restore_one_register(struct pt_dev *ptdev, int offset)
 {
     PCIDevice *d = &ptdev->dev;
     uint32_t aer_base = ptdev->pm_state->aer_base;
-    int i = 0;
     uint32_t config = 0;
-    /* Root Port and Root Complex Event Collector need size expansion */
-    int aer_size = 0x2c;
 
-#ifdef PCI_ERR_UNCOR_MASK
-    for (i=0; i < aer_size; i+=4)
-    {
-        switch (i) {
-        /* the following registers should be reconfigured to correct values
-         * after reset. restore them.
-         */
-        case PCI_ERR_UNCOR_MASK:
-        case PCI_ERR_UNCOR_SEVER:
-        case PCI_ERR_COR_MASK:
-        case PCI_ERR_CAP:
-            config = *(uint32_t*)(d->config + (aer_base + i));
-            pci_write_long(ptdev->pci_dev, (aer_base + i), config);
-            break;
-        /* other registers should not be reconfigured after reset 
-         * if there is no reason
-         */
-        default:
-            break;
-        }
-    }
-#endif
+    config = *(uint32_t*)(d->config + (aer_base + offset));
+    pci_write_long(ptdev->pci_dev, (aer_base + offset), config);
+}
+
+/* restore AER registers */
+static void pt_aer_reg_restore(struct pt_dev *ptdev)
+{
+    /* the following registers should be reconfigured to correct values
+     * after reset. restore them.
+     * other registers should not be reconfigured after reset
+     * if there is no reason
+     */
+    aer_restore_one_register(ptdev, PCI_ERR_UNCOR_MASK);
+    aer_restore_one_register(ptdev, PCI_ERR_UNCOR_SEVER);
+    aer_restore_one_register(ptdev, PCI_ERR_COR_MASK);
+    aer_restore_one_register(ptdev, PCI_ERR_CAP);
 }
 
 /* reset Interrupt and I/O resource  */
@@ -2115,7 +2049,7 @@ static int pt_config_reg_init(struct pt_dev *ptdev,
     reg_entry = qemu_mallocz(sizeof(struct pt_reg_tbl));
     if (reg_entry == NULL)
     {
-        PT_LOG("Failed to allocate memory.\n");
+        PT_LOG("Error: Failed to allocate memory.\n");
         err = -1;
         goto out;
     }
@@ -2171,7 +2105,7 @@ static int pt_config_init(struct pt_dev *ptdev)
         reg_grp_entry = qemu_mallocz(sizeof(struct pt_reg_grp_tbl));
         if (reg_grp_entry == NULL)
         {
-            PT_LOG("Failed to allocate memory.\n");
+            PT_LOG("Error: Failed to allocate memory.\n");
             err = -1;
             goto out;
         }
@@ -2239,10 +2173,10 @@ static void pt_config_delete(struct pt_dev *ptdev)
     }
 
     /* free all register group entry */
-    while ((reg_grp_entry = ptdev->reg_grp_tbl_head.lh_first) != NULL)
+    while((reg_grp_entry = LIST_FIRST(&ptdev->reg_grp_tbl_head)) != NULL)
     {
         /* free all register entry */
-        while ((reg_entry = reg_grp_entry->reg_tbl_head.lh_first) != NULL)
+        while((reg_entry = LIST_FIRST(&reg_grp_entry->reg_tbl_head)) != NULL)
         {
             LIST_REMOVE(reg_entry, entries);
             qemu_free(reg_entry);
@@ -2624,7 +2558,7 @@ static uint8_t pt_msi_size_init(struct pt_dev *ptdev,
     if ( !ptdev->msi )
     {
         /* exit I/O emulator */
-        PT_LOG("error allocation pt_msi_info. I/O emulator exit.\n");
+        PT_LOG("Error: Allocating pt_msi_info failed. I/O emulator exit.\n");
         exit(1);
     }
     memset(ptdev->msi, 0, sizeof(struct pt_msi_info));
@@ -2754,8 +2688,7 @@ static int pt_byte_reg_read(struct pt_dev *ptdev,
 
     /* emulate byte register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
     return 0;
 }
@@ -2770,8 +2703,7 @@ static int pt_word_reg_read(struct pt_dev *ptdev,
 
     /* emulate word register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
     return 0;
 }
@@ -2786,8 +2718,7 @@ static int pt_long_reg_read(struct pt_dev *ptdev,
 
     /* emulate long register */
     valid_emu_mask = reg->emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
    return 0;
 }
@@ -2833,8 +2764,7 @@ static int pt_bar_reg_read(struct pt_dev *ptdev,
 
     /* emulate BAR */
     valid_emu_mask = bar_emu_mask & valid_mask;
-    *value = ((*value & ~valid_emu_mask) | 
-              (cfg_entry->data & valid_emu_mask));
+    *value = PT_MERGE_VALUE(*value, cfg_entry->data, ~valid_emu_mask);
 
    return 0;
 }
@@ -2850,13 +2780,11 @@ static int pt_byte_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2872,13 +2800,11 @@ static int pt_word_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2894,13 +2820,11 @@ static int pt_long_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -2917,12 +2841,11 @@ static int pt_cmd_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* mapping BAR */
     pt_bar_mapping(ptdev, wr_value & PCI_COMMAND_IO, 
@@ -2988,8 +2911,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = bar_emu_mask & ~bar_ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* check whether we need to update the virtual region address or not */
     switch (ptdev->bases[index].bar_flag)
@@ -3007,7 +2929,8 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
             if ((last_addr >= 0x10000) &&
                 (cfg_entry->data != (PT_BAR_ALLF & ~bar_ro_mask)))
             {
-                PT_LOG("Guest attempt to set Base Address over the 64KB. "
+                PT_LOG("Warning: Guest attempt to set Base Address "
+                    "over the 64KB. "
                     "[%02x:%02x.%x][Offset:%02xh][Address:%08xh][Size:%08xh]\n",
                     pci_bus_num(d->bus), 
                     ((d->devfn >> 3) & 0x1F), (d->devfn & 0x7),
@@ -3023,7 +2946,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
         {
             if (cfg_entry->data != (PT_BAR_ALLF & ~bar_ro_mask))
             {
-                PT_LOG("Guest attempt to set high MMIO Base Address. "
+                PT_LOG("Warning: Guest attempt to set high MMIO Base Address. "
                     "Ignore mapping. "
                     "[%02x:%02x.%x][Offset:%02xh][High Address:%08xh]\n",
                     pci_bus_num(d->bus), 
@@ -3066,8 +2989,7 @@ static int pt_bar_reg_write(struct pt_dev *ptdev,
 exit:
     /* create value for writing to I/O device register */
     throughable_mask = ~bar_emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -3099,16 +3021,14 @@ static int pt_exp_rom_bar_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = bar_emu_mask & ~bar_ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* update the corresponding virtual region address */
     r->addr = cfg_entry->data;
     
     /* create value for writing to I/O device register */
     throughable_mask = ~bar_emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     return 0;
 }
@@ -3122,22 +3042,16 @@ static int pt_pmcsr_reg_write(struct pt_dev *ptdev,
     PCIDevice *d = &ptdev->dev;
     uint16_t writable_mask = 0;
     uint16_t throughable_mask = 0;
-    uint16_t pmcsr_mask = (PCI_PM_CTRL_PME_ENABLE | 
-                           PCI_PM_CTRL_DATA_SEL_MASK |
-                           PCI_PM_CTRL_PME_STATUS);
     struct pt_pm_info *pm_state = ptdev->pm_state;
     uint16_t read_val = 0;
 
     /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~pmcsr_mask;
-
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* set I/O device power state */
     pm_state->cur_state = (dev_value & PCI_PM_CTRL_STATE_MASK);
@@ -3236,101 +3150,6 @@ static int pt_pmcsr_reg_write(struct pt_dev *ptdev,
     return 0;
 }
 
-/* write Device Control register */
-static int pt_devctrl_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t devctrl_mask = (PCI_EXP_DEVCTL_AUX_PME | 0x8000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~devctrl_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Link Control register */
-static int pt_linkctrl_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t linkctrl_mask = (0x04 | PCI_EXP_LNKCTL_DISABLE |
-                              PCI_EXP_LNKCTL_RETRAIN | 
-                              0x0400 | 0x0800 | 0xF000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~linkctrl_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Device Control2 register */
-static int pt_devctrl2_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t devctrl2_mask = 0xFFE0;
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & ~devctrl2_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
-/* write Link Control2 register */
-static int pt_linkctrl2_reg_write(struct pt_dev *ptdev, 
-        struct pt_reg_tbl *cfg_entry, 
-        uint16_t *value, uint16_t dev_value, uint16_t valid_mask)
-{
-    struct pt_reg_info_tbl *reg = cfg_entry->reg;
-    uint16_t writable_mask = 0;
-    uint16_t throughable_mask = 0;
-    uint16_t linkctrl2_mask = (0x0040 | 0xE000);
-
-    /* modify emulate register */
-    writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask & 
-                    ~linkctrl2_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
-
-    /* create value for writing to I/O device register */
-    throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) |
-              (dev_value & ~throughable_mask));
-
-    return 0;
-}
-
 /* write Message Control register */
 static int pt_msgctrl_reg_write(struct pt_dev *ptdev, 
     struct pt_reg_tbl *cfg_entry, 
@@ -3346,22 +3165,19 @@ static int pt_msgctrl_reg_write(struct pt_dev *ptdev,
 
     /* Currently no support for multi-vector */
     if ((*value & PCI_MSI_FLAGS_QSIZE) != 0x0)
-        PT_LOG("try to set more than 1 vector ctrl %x\n", *value);
+        PT_LOG("Warning: try to set more than 1 vector ctrl %x\n", *value);
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->flags |= cfg_entry->data & 
         ~(MSI_FLAG_UNINIT | PT_MSI_MAPPED | PCI_MSI_FLAGS_ENABLE);
 
-    PT_LOG("old_ctrl:%04xh new_ctrl:%04xh\n", old_ctrl, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     val = *value;
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (val & PCI_MSI_FLAGS_ENABLE)
@@ -3420,16 +3236,13 @@ static int pt_msgaddr32_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->addr_lo = cfg_entry->data;
     
-    PT_LOG("old_addr_lo:%08xh new_addr_lo:%08xh\n", old_addr, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_addr)
@@ -3455,22 +3268,19 @@ static int pt_msgaddr64_reg_write(struct pt_dev *ptdev,
     if (!(ptdev->msi->flags & PCI_MSI_FLAGS_64BIT))
     {
         /* exit I/O emulator */
-        PT_LOG("why comes to Upper Address without 64 bit support??\n");
+        PT_LOG("Error: why comes to Upper Address without 64 bit support??\n");
         return -1;
     }
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->addr_hi = cfg_entry->data;
     
-    PT_LOG("old_addr_hi:%08xh new_addr_hi:%08xh\n", old_addr, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_addr)
@@ -3506,16 +3316,13 @@ static int pt_msgdata_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
     /* update the msi_info too */
     ptdev->msi->data = cfg_entry->data;
 
-    PT_LOG("old_data:%04xh new_data:%04xh\n", old_data, cfg_entry->data);
-
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI */
     if (cfg_entry->data != old_data)
@@ -3539,14 +3346,11 @@ static int pt_msixctrl_reg_write(struct pt_dev *ptdev,
 
     /* modify emulate register */
     writable_mask = reg->emu_mask & ~reg->ro_mask & valid_mask;
-    cfg_entry->data = ((*value & writable_mask) |
-                       (cfg_entry->data & ~writable_mask));
+    cfg_entry->data = PT_MERGE_VALUE(*value, cfg_entry->data, writable_mask);
 
-    PT_LOG("old_ctrl:%04xh new_ctrl:%04xh\n", old_ctrl, cfg_entry->data);
-    
     /* create value for writing to I/O device register */
     throughable_mask = ~reg->emu_mask & valid_mask;
-    *value = ((*value & throughable_mask) | (dev_value & ~throughable_mask));
+    *value = PT_MERGE_VALUE(*value, dev_value, throughable_mask);
 
     /* update MSI-X */
     if ((*value & PCI_MSIX_ENABLE) && !(*value & PCI_MSIX_MASK))
@@ -3979,7 +3783,7 @@ int pt_init(PCIBus *e_bus, const char *direct_pci)
     pci_access = pci_alloc();
     if ( pci_access == NULL )
     {
-        PT_LOG("pci_access is NULL\n");
+        PT_LOG("Error: pci_access is NULL\n");
         return -1;
     }
     pci_init(pci_access);
diff --git a/hw/pass-through.h b/hw/pass-through.h
index b44b9d7..2b2dbd2 100644
--- a/hw/pass-through.h
+++ b/hw/pass-through.h
@@ -86,6 +86,26 @@
 #define PCI_EXP_TYPE_ROOT_EC     0xa
 #endif
 
+#ifndef PCI_ERR_UNCOR_MASK
+/* Uncorrectable Error Mask */
+#define PCI_ERR_UNCOR_MASK      8
+#endif
+
+#ifndef PCI_ERR_UNCOR_SEVER
+/* Uncorrectable Error Severity */
+#define PCI_ERR_UNCOR_SEVER     12
+#endif
+
+#ifndef PCI_ERR_COR_MASK
+/* Correctable Error Mask */
+#define PCI_ERR_COR_MASK        20
+#endif
+
+#ifndef PCI_ERR_CAP
+/* Advanced Error Capabilities */
+#define PCI_ERR_CAP             24
+#endif
+
 #ifndef PCI_EXT_CAP_ID
 /* Extended Capabilities (PCI-X 2.0 and PCI Express) */
 #define PCI_EXT_CAP_ID(header)   (header & 0x0000ffff)
diff --git a/hw/pt-msi.c b/hw/pt-msi.c
index bdd1b38..6b0aaa1 100644
--- a/hw/pt-msi.c
+++ b/hw/pt-msi.c
@@ -68,7 +68,7 @@ int pt_msi_setup(struct pt_dev *dev)
 
     if ( !(dev->msi->flags & MSI_FLAG_UNINIT) )
     {
-        PT_LOG("setup physical after initialized?? \n");
+        PT_LOG("Error: setup physical after initialized?? \n");
         return -1;
     }
 
@@ -76,13 +76,13 @@ int pt_msi_setup(struct pt_dev *dev)
                                  dev->pci_dev->dev << 3 | dev->pci_dev->func,
                                  dev->pci_dev->bus, 0, 0) )
     {
-        PT_LOG("error map msi\n");
+        PT_LOG("Error: Mapping of MSI failed.\n");
         return -1;
     }
 
     if ( pirq < 0 )
     {
-        PT_LOG("invalid pirq number\n");
+        PT_LOG("Error: Invalid pirq number\n");
         return -1;
     }
 
@@ -125,7 +125,7 @@ int pt_msi_update(struct pt_dev *d)
     addr = (uint64_t)d->msi->addr_hi << 32 | d->msi->addr_lo;
     gflags = __get_msi_gflags(d->msi->data, addr);
     
-    PT_LOG("now update msi with pirq %x gvec %x\n", d->msi->pirq, gvec);
+    PT_LOG("Update msi with pirq %x gvec %x\n", d->msi->pirq, gvec);
     return xc_domain_update_msi_irq(xc_handle, domid, gvec,
                                      d->msi->pirq, gflags);
 }
@@ -295,19 +295,19 @@ static int pt_msix_update_one(struct pt_dev *dev, int entry_nr)
                                 dev->msix->table_base);
         if ( ret )
         {
-            PT_LOG("error map msix entry %x\n", entry_nr);
+            PT_LOG("Error: Mapping msix entry %x\n", entry_nr);
             return ret;
         }
         entry->pirq = pirq;
     }
 
-    PT_LOG("now update msix entry %x with pirq %x gvec %x\n",
+    PT_LOG("Update msix entry %x with pirq %x gvec %x\n",
             entry_nr, pirq, gvec);
 
     ret = xc_domain_update_msi_irq(xc_handle, domid, gvec, pirq, gflags);
     if ( ret )
     {
-        PT_LOG("error update msix irq info for entry %d\n", entry_nr);
+        PT_LOG("Error: Updating msix irq info for entry %d\n", entry_nr);
         return ret;
     }
 
@@ -378,7 +378,7 @@ void pt_msix_disable(struct pt_dev *dev)
 static void pci_msix_invalid_write(void *opaque, target_phys_addr_t addr,
                                    uint32_t val)
 {
-    PT_LOG("invalid write to MSI-X table, \
+    PT_LOG("Error: Invalid write to MSI-X table, \
             only dword access is allowed.\n");
 }
 
@@ -391,8 +391,8 @@ static void pci_msix_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
 
     if ( addr % 4 )
     {
-        PT_LOG("unaligned dword access to MSI-X table, addr %016"PRIx64"\n",
-                addr);
+        PT_LOG("Error: Unaligned dword access to MSI-X table, \
+                addr %016"PRIx64"\n", addr);
         return;
     }
 
@@ -402,8 +402,8 @@ static void pci_msix_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
 
     if ( offset != 3 && msix->enabled && !(entry->io_mem[3] & 0x1) )
     {
-        PT_LOG("can not update msix entry %d since MSI-X is already \
-                function now.\n", entry_nr);
+        PT_LOG("Error: Can't update msix entry %d since MSI-X is already \
+                function.\n", entry_nr);
         return;
     }
 
@@ -427,7 +427,7 @@ static CPUWriteMemoryFunc *pci_msix_write[] = {
 
 static uint32_t pci_msix_invalid_read(void *opaque, target_phys_addr_t addr)
 {
-    PT_LOG("invalid read to MSI-X table, \
+    PT_LOG("Error: Invalid read to MSI-X table, \
             only dword access is allowed.\n");
     return 0;
 }
@@ -440,8 +440,8 @@ static uint32_t pci_msix_readl(void *opaque, target_phys_addr_t addr)
 
     if ( addr % 4 )
     {
-        PT_LOG("unaligned dword access to MSI-X table, addr %016"PRIx64"\n",
-                addr);
+        PT_LOG("Error: Unaligned dword access to MSI-X table, \
+                addr %016"PRIx64"\n", addr);
         return 0;
     }
 
@@ -504,7 +504,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
 
     if ( id != PCI_CAP_ID_MSIX )
     {
-        PT_LOG("error id %x pos %x\n", id, pos);
+        PT_LOG("Error: Invalid id %x pos %x\n", id, pos);
         return -1;
     }
 
@@ -516,7 +516,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
                        + total_entries*sizeof(struct msix_entry_info));
     if ( !dev->msix )
     {
-        PT_LOG("error allocation pt_msix_info\n");
+        PT_LOG("Error: Allocating pt_msix_info failed.\n");
         return -1;
     }
     memset(dev->msix, 0, sizeof(struct pt_msix_info)
@@ -538,7 +538,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
     fd = open("/dev/mem", O_RDWR);
     if ( fd == -1 )
     {
-        PT_LOG("Can't open /dev/mem: %s\n", strerror(errno));
+        PT_LOG("Error: Can't open /dev/mem: %s\n", strerror(errno));
         goto error_out;
     }
     dev->msix->phys_iomem_base = mmap(0, total_entries * 16,
@@ -546,7 +546,7 @@ int pt_msix_init(struct pt_dev *dev, int pos)
                           fd, dev->msix->table_base + table_off);
     if ( dev->msix->phys_iomem_base == MAP_FAILED )
     {
-        PT_LOG("Can't map physical MSI-X table: %s\n", strerror(errno));
+        PT_LOG("Error: Can't map physical MSI-X table: %s\n", strerror(errno));
         close(fd);
         goto error_out;
     }

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-23  1:40     ` Yuji Shimada
@ 2009-02-23  5:56       ` Simon Horman
  2009-02-23 11:36         ` Ian Jackson
  0 siblings, 1 reply; 36+ messages in thread
From: Simon Horman @ 2009-02-23  5:56 UTC (permalink / raw)
  To: Yuji Shimada; +Cc: xen-devel@lists.xensource.com, Ian Jackson

On Mon, Feb 23, 2009 at 10:40:22AM +0900, Yuji Shimada wrote:
> 
> The patch cleanups the code of PCI passthrough.
> 
> - Use LIST_FOREACH(). Don't use lh_first, le_next directly.
> - Use pci_{read, write}_block instead of "switch(len) case [124]
>   pci_{read, write}_{byte, word, long}();".
> - Eliminate duplicate codes using PT_MEARGE_VALUE macro.
> - Define PCI_ERR_* macro in pass-through.h if libpci is old.
> - Remove the unreasonable loop from pt_aer_reg_{save,restore}.
> - Enable pt_aer_reg_{save,restore}, even if libpci is old.
> - Fix ro_mask and remove unnecessary pt_xxx_reg_write functions.
> - Add "Error:" or "Warning:" to messages.
> - Remove verbose messages.
> 
> Thanks,
> --
> Yuji Shimada.
> 
> 
> Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp>

Tested-by: Simon Horman <horms@verge.net.au>

-- 
Simon Horman
  VA Linux Systems Japan K.K., Sydney, Australia Satellite Office
  H: www.vergenet.net/~horms/             W: www.valinux.co.jp/en

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-23  5:56       ` Simon Horman
@ 2009-02-23 11:36         ` Ian Jackson
  2009-02-23 14:23           ` Boris Derzhavets
  2009-02-23 22:30           ` Simon Horman
  0 siblings, 2 replies; 36+ messages in thread
From: Ian Jackson @ 2009-02-23 11:36 UTC (permalink / raw)
  To: Simon Horman; +Cc: Yuji Shimada, xen-devel@lists.xensource.com

Simon Horman writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code of PCI passthrough."):
> On Mon, Feb 23, 2009 at 10:40:22AM +0900, Yuji Shimada wrote:
> > Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp>
> 
> Tested-by: Simon Horman <horms@verge.net.au>

Thanks, I have applied this.

The problem causing it to be rejected was that hw/passthrough.[ch] and
hw/pt-msi.[ch] were full of trailing whitespace, which Yuji Shimada's
mailer evidently removes.  I think the mailer was right and the code
was wrong.

So I have removed all of that trailing whitespace with a trivial perl
one-liner and then committed the cleanup patch on top.  I haven't
tested the pass-through but the tree does build.

Ian.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-23 11:36         ` Ian Jackson
@ 2009-02-23 14:23           ` Boris Derzhavets
  2009-02-23 14:53             ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Ian Jackson
  2009-02-23 15:04             ` Re: [PATCH] ioemu: Cleanup the code of PCI passthrough Andrew Lyon
  2009-02-23 22:30           ` Simon Horman
  1 sibling, 2 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-23 14:23 UTC (permalink / raw)
  To: Simon Horman, Ian Jackson; +Cc: Yuji Shimada, xen-devel@lists.xensource.com


[-- Attachment #1.1: Type: text/plain, Size: 4549 bytes --]

 I was under impression, that mentioned patch is supposed to support
loading HVM DomU (?).  If answer is "yes" , then my question:-
When http://xenbits.xensource.com/xen-unstable.hg will get this update?
Looks like "make tools" is using http://xenbits.xensource.com/git-http/qemu-xen-unstable.git when building xen-unstable.hg/tools/ioemu-remote.
If answer is "no", i am sorry for misunderstanding.

  Fresh Xen-Unstable Dom0 install (along with the most recent build
2.6.29-rc5) still shows during attempt to start HVM DomU:-

# xm dmesg
. . . . . . 
(XEN) HVM1: HVM Loader
(XEN) HVM1: Detected Xen v3.4-unstable
(XEN) HVM1: CPU speed is 3006 MHz
(XEN) irq.c:235: Dom1 PCI link 0 changed 0 -> 5
(XEN) HVM1: PCI-ISA link 0 routed to IRQ5
(XEN) irq.c:235: Dom1 PCI link 1 changed 0 -> 10
(XEN) HVM1: PCI-ISA link 1 routed to IRQ10
(XEN) irq.c:235: Dom1 PCI link 2 changed 0 -> 11
(XEN) HVM1: PCI-ISA link 2 routed to IRQ11
(XEN) irq.c:235: Dom1 PCI link 3 changed 0 -> 5
(XEN) HVM1: PCI-ISA link 3 routed to IRQ5
(XEN) HVM1: pci dev 01:2 INTD->IRQ5
(XEN) HVM1: pci dev 01:3 INTA->IRQ10
(XEN) HVM1: pci dev 03:0 INTA->IRQ5
(XEN) HVM1: pci dev 04:0 INTA->IRQ5
(XEN) HVM1: pci dev 02:0 bar 10 size 02000000: f0000008
(XEN) HVM1: pci dev 03:0 bar 14 size 01000000: f2000008
(XEN) HVM1: pci dev 02:0 bar 14 size 00001000: f3000000
(XEN) HVM1: pci dev 03:0 bar 10 size 00000100: 0000c001
(XEN) HVM1: pci dev 04:0 bar 10 size 00000100: 0000c101
(XEN) HVM1: pci dev 04:0 bar 14 size 00000100: f3001000
(XEN) HVM1: pci dev 01:2 bar 20 size 00000020: 0000c201
(XEN) HVM1: pci dev 01:1 bar 20 size 00000010: 0000c221
(XEN) HVM1: Multiprocessor initialisation:
(XEN) HVM1:  - CPU0 ... 36-bit phys ... fixed MTRRs ... var MTRRs [2/8] ... done.
(XEN) HVM1: Testing HVM environment:
(XEN) HVM1:  - REP INSB across page boundaries ... passed
(XEN) HVM1: Passed 1/1 tests
(XEN) HVM1: Writing SMBIOS tables ...
(XEN) HVM1: Loading ROMBIOS ...
(XEN) HVM1: 9788 bytes of ROMBIOS high-memory extensions:
(XEN) HVM1:   Relocating to 0xfc000000-0xfc00263c ... done
(XEN) HVM1: Creating MP tables ...
(XEN) HVM1: Loading Cirrus VGABIOS ...
(XEN) HVM1: Loading PCI Option ROM ...
(XEN) HVM1:  - Manufacturer: http://etherboot.org
(XEN) HVM1:  - Product name: gPXE
(XEN) HVM1: Loading ACPI ...


********************************
Logfile under /var/log/xen :-
********************************

domid: 1
qemu: the number of cpus is 1
config qemu network with xen bridge for  tap1.0 eth0
Watching /local/domain/0/device-model/1/logdirty/next-active
Watching /local/domain/0/device-model/1/command
xs_read(): vncpasswd get error. /vm/1388b5b0-3888-5c75-b701-3e82249a379e/vncpasswd.
qemu_map_cache_init nr_buckets = 10000 size 3145728
shared page at pfn feffd
buffered io page at pfn feffb
Guest uuid = 1388b5b0-3888-5c75-b701-3e82249a379e
Time offset set 0
populating video RAM at ff000000
mapping video RAM from ff000000
Register xen platform.
Done register platform.
xs_read(/local/domain/0/device-model/1/xen_extended_power_mgmt): read error
medium change watch on `hdc' (index: 0): /dev/loop0
I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0
cirrus vga map change while on lfb mode


 

--- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
From: Ian Jackson <Ian.Jackson@eu.citrix.com>
Subject: Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
To: "Simon Horman" <horms@verge.net.au>
Cc: "Yuji Shimada" <shimada-yxb@necst.nec.co.jp>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Monday, February 23, 2009, 6:36 AM

Simon Horman writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code
of PCI passthrough."):
> On Mon, Feb 23, 2009 at 10:40:22AM +0900, Yuji Shimada wrote:
> > Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp>
> 
> Tested-by: Simon Horman <horms@verge.net.au>

Thanks, I have applied this.

The problem causing it to be rejected was that hw/passthrough.[ch] and
hw/pt-msi.[ch] were full of trailing whitespace, which Yuji Shimada's
mailer evidently removes.  I think the mailer was right and the code
was wrong.

So I have removed all of that trailing whitespace with a trivial perl
one-liner and then committed the cleanup patch on top.  I haven't
tested the pass-through but the tree does build.

Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 5311 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
  2009-02-23 14:23           ` Boris Derzhavets
@ 2009-02-23 14:53             ` Ian Jackson
  2009-02-23 15:09               ` Andrew Lyon
  2009-02-23 15:36               ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Boris Derzhavets
  2009-02-23 15:04             ` Re: [PATCH] ioemu: Cleanup the code of PCI passthrough Andrew Lyon
  1 sibling, 2 replies; 36+ messages in thread
From: Ian Jackson @ 2009-02-23 14:53 UTC (permalink / raw)
  To: bderzhavets@yahoo.com
  Cc: Yuji Shimada, Simon Horman, xen-devel@lists.xensource.com

Boris Derzhavets writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code of PCI passthrough."):
>  I was under impression, that mentioned patch is supposed to support
> loading HVM DomU (?).

No, it's just code cleanup for PCI passthrough, which is for passing
PCI devices through to guests.  If you are not doing PCI passthrough -
ie, most ordinary HVM guests - then these changes will not affect you.

>  If answer is "yes" , then my question:-
> When http://xenbits.xensource.com/xen-unstable.hg will get this update?

In this case, just now.  All changes that we make to xen-unstable,
including the qemu-xen-unstable subsidiary tree, go through an
automated build-and-test.  Only versions which pass the (fairly
rudimentary) tests make it through to the main trees.

The pre-testing trees (called `staging') are also available and
published but not the `usual' case.

> Looks like "make tools" is using
> http://xenbits.xensource.com/git-http/qemu-xen-unstable.git when
> building xen-unstable.hg/tools/ioemu-remote.

Yes.  You can change this by setting the CONFIG_QEMU make variable, eg
in a file `.config' in the xen-unstable.hg top level.

> If answer is "no", i am sorry for misunderstanding.
> 
>   Fresh Xen-Unstable Dom0 install (along with the most recent build
> 2.6.29-rc5) still shows during attempt to start HVM DomU:-

These messages are not very surprising.  Is it working ?

Ian.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-23 14:23           ` Boris Derzhavets
  2009-02-23 14:53             ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Ian Jackson
@ 2009-02-23 15:04             ` Andrew Lyon
  1 sibling, 0 replies; 36+ messages in thread
From: Andrew Lyon @ 2009-02-23 15:04 UTC (permalink / raw)
  To: bderzhavets, xen-devel@lists.xensource.com

On Mon, Feb 23, 2009 at 2:23 PM, Boris Derzhavets <bderzhavets@yahoo.com> wrote:
>  I was under impression, that mentioned patch is supposed to support
> loading HVM DomU (?).  If answer is "yes" , then my question:-
> When http://xenbits.xensource.com/xen-unstable.hg will get this update?
> Looks like "make tools" is using
> http://xenbits.xensource.com/git-http/qemu-xen-unstable.git when building
> xen-unstable.hg/tools/ioemu-remote.
> If answer is "no", i am sorry for misunderstanding.
>
>   Fresh Xen-Unstable Dom0 install (along with the most recent build
> 2.6.29-rc5) still shows during attempt to start HVM DomU:-
>
> # xm dmesg
> . . . . . .
> (XEN) HVM1: HVM Loader
> (XEN) HVM1: Detected Xen v3.4-unstable
> (XEN) HVM1: CPU speed is 3006 MHz
> (XEN) irq.c:235: Dom1 PCI link 0 changed 0 -> 5
> (XEN) HVM1: PCI-ISA link 0 routed to IRQ5
> (XEN) irq.c:235: Dom1 PCI link 1 changed 0 -> 10
> (XEN) HVM1: PCI-ISA link 1 routed to IRQ10
> (XEN) irq.c:235: Dom1 PCI link 2 changed 0 -> 11
> (XEN) HVM1: PCI-ISA link 2 routed to IRQ11
> (XEN) irq.c:235: Dom1 PCI link 3 changed 0 -> 5
> (XEN) HVM1: PCI-ISA link 3 routed to IRQ5
> (XEN) HVM1: pci dev 01:2 INTD->IRQ5
> (XEN) HVM1: pci dev 01:3 INTA->IRQ10
> (XEN) HVM1: pci dev 03:0 INTA->IRQ5
> (XEN) HVM1: pci dev 04:0 INTA->IRQ5
> (XEN) HVM1: pci dev 02:0 bar 10 size 02000000: f0000008
> (XEN) HVM1: pci dev 03:0 bar 14 size 01000000: f2000008
> (XEN) HVM1: pci dev 02:0 bar 14 size 00001000: f3000000
> (XEN) HVM1: pci dev 03:0 bar 10 size 00000100: 0000c001
> (XEN) HVM1: pci dev 04:0 bar 10 size 00000100: 0000c101
> (XEN) HVM1: pci dev 04:0 bar 14 size 00000100: f3001000
> (XEN) HVM1: pci dev 01:2 bar 20 size 00000020: 0000c201
> (XEN) HVM1: pci dev 01:1 bar 20 size 00000010: 0000c221
> (XEN) HVM1: Multiprocessor initialisation:
> (XEN) HVM1:  - CPU0 ... 36-bit phys ... fixed MTRRs ... var MTRRs [2/8] ...
> done.
> (XEN) HVM1: Testing HVM environment:
> (XEN) HVM1:  - REP INSB across page boundaries ... passed
> (XEN) HVM1: Passed 1/1 tests
> (XEN) HVM1: Writing SMBIOS tables ...
> (XEN) HVM1: Loading ROMBIOS ...
> (XEN) HVM1: 9788 bytes of ROMBIOS high-memory extensions:
> (XEN) HVM1:   Relocating to 0xfc000000-0xfc00263c ... done
> (XEN) HVM1: Creating MP tables ...
> (XEN) HVM1: Loading Cirrus VGABIOS ...
> (XEN) HVM1: Loading PCI Option ROM ...
> (XEN) HVM1:  - Manufacturer: http://etherboot.org
> (XEN) HVM1:  - Product name: gPXE
> (XEN) HVM1: Loading ACPI ...
>
>
> ********************************
> Logfile under /var/log/xen :-
> ********************************
>
> domid: 1
> qemu: the number of cpus is 1
> config qemu network with xen bridge for  tap1.0 eth0
> Watching /local/domain/0/device-model/1/logdirty/next-active
> Watching /local/domain/0/device-model/1/command
> xs_read(): vncpasswd get error.
> /vm/1388b5b0-3888-5c75-b701-3e82249a379e/vncpasswd.
> qemu_map_cache_init nr_buckets = 10000 size 3145728
> shared page at pfn feffd
> buffered io page at pfn feffb
> Guest uuid = 1388b5b0-3888-5c75-b701-3e82249a379e
> Time offset set 0
> populating video RAM at ff000000
> mapping video RAM from ff000000
> Register xen platform.
> Done register platform.
> xs_read(/local/domain/0/device-model/1/xen_extended_power_mgmt): read error
> medium change watch on `hdc' (index: 0): /dev/loop0
> I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0
> cirrus vga map change while on lfb mode
>
>
>
>
> --- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
>
> From: Ian Jackson <Ian.Jackson@eu.citrix.com>
> Subject: Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code of PCI
> passthrough.
> To: "Simon Horman" <horms@verge.net.au>
> Cc: "Yuji Shimada" <shimada-yxb@necst.nec.co.jp>,
> "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
> Date: Monday, February 23, 2009, 6:36 AM
>
> Simon Horman writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code
> of PCI passthrough."):
>> On Mon, Feb 23, 2009 at 10:40:22AM +0900, Yuji Shimada wrote:
>> > Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp>
>>
>> Tested-by: Simon Horman <horms@verge.net.au>
>
> Thanks, I have applied this.
>
> The problem causing it to be rejected was that hw/passthrough.[ch] and
> hw/pt-msi.[ch] were full of trailing whitespace, which Yuji Shimada's
> mailer evidently removes.  I think
>  the mailer was right and the code
> was wrong.
>
> So I have removed all of that trailing whitespace with a trivial perl
> one-liner and then committed the cleanup patch on top.  I haven't
> tested the pass-through but the tree does build.
>
> Ian.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>

Boris,

There is another problem as well as the "pci power management" issue
that the patch fixes, with Xen unstable and the patch applied I can
start hvm's if I use a normal Xen kernel, but if I use the pv_ops
kernel I get the sentinel message in xen log:

[2009-02-22 14:01:53 3467] WARNING (image:470) domain xptest: device
model failure: pid 3735: malfunctioning (closed sentinel), killed; see
/var/log/xen/qemu-dm-xptest.log

I've posted the qemu-dm log before, I dont think this line "I/O
request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0" is
about the problem because it is also logged when I use a non pv_ops
kernel and hvm works ok.

Andy

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
  2009-02-23 14:53             ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Ian Jackson
@ 2009-02-23 15:09               ` Andrew Lyon
  2009-02-23 16:21                 ` HVM pvops failures Ian Jackson
  2009-02-23 15:36               ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Boris Derzhavets
  1 sibling, 1 reply; 36+ messages in thread
From: Andrew Lyon @ 2009-02-23 15:09 UTC (permalink / raw)
  To: Ian Jackson, xen-devel@lists.xensource.com

On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
> Boris Derzhavets writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code of PCI passthrough."):
>>  I was under impression, that mentioned patch is supposed to support
>> loading HVM DomU (?).
>
> No, it's just code cleanup for PCI passthrough, which is for passing
> PCI devices through to guests.  If you are not doing PCI passthrough -
> ie, most ordinary HVM guests - then these changes will not affect you.
>
>>  If answer is "yes" , then my question:-
>> When http://xenbits.xensource.com/xen-unstable.hg will get this update?
>
> In this case, just now.  All changes that we make to xen-unstable,
> including the qemu-xen-unstable subsidiary tree, go through an
> automated build-and-test.  Only versions which pass the (fairly
> rudimentary) tests make it through to the main trees.
>
> The pre-testing trees (called `staging') are also available and
> published but not the `usual' case.
>
>> Looks like "make tools" is using
>> http://xenbits.xensource.com/git-http/qemu-xen-unstable.git when
>> building xen-unstable.hg/tools/ioemu-remote.
>
> Yes.  You can change this by setting the CONFIG_QEMU make variable, eg
> in a file `.config' in the xen-unstable.hg top level.
>
>> If answer is "no", i am sorry for misunderstanding.
>>
>>   Fresh Xen-Unstable Dom0 install (along with the most recent build
>> 2.6.29-rc5) still shows during attempt to start HVM DomU:-
>
> These messages are not very surprising.  Is it working ?

No, when try to start HVM on Xen unstable with pv_ops kernel I get this error:

[2009-02-22 14:01:53 3467] WARNING (image:470) domain xptest: device
model failure: pid 3735: malfunctioning (closed sentinel), killed; see
/var/log/xen/qemu-dm-xptest.log

cat /var/log/xen/qemu-dm-xptest.log

domid: 4
qemu: the number of cpus is 1
Using xvda for guest's hda
Strip off blktap sub-type prefix to /root/xp (drv 'aio')
Watching /local/domain/0/device-model/4/logdirty/next-active
Watching /local/domain/0/device-model/4/command
qemu_map_cache_init nr_buckets = 10000 size 3145728
shared page at pfn 1fffe
buffered io page at pfn 1fffc
Time offset set 0
Register xen platform.
Done register platform.
I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0

If I change the kernel to normal Xen kernel (not pv_ops) it works ok.

What can I do to debug?

Andy

>
> Ian.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
  2009-02-23 14:53             ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Ian Jackson
  2009-02-23 15:09               ` Andrew Lyon
@ 2009-02-23 15:36               ` Boris Derzhavets
  2009-02-23 16:22                 ` Ian Jackson
  1 sibling, 1 reply; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-23 15:36 UTC (permalink / raw)
  To: Ian Jackson; +Cc: Yuji Shimada, Simon Horman, xen-devel@lists.xensource.com


[-- Attachment #1.1: Type: text/plain, Size: 2553 bytes --]

>In this case, just now.  All changes that we make to xen-unstable,
>including the qemu-xen-unstable subsidiary tree, go through an
>automated build-and-test. 

I've cloned xen-unstable about 1.5 hr ago , by some reasons changes
had not been applied to  /usr/src/xen-unstable.hg/tools/ioemu-remote/hw/pass-through.c .

> Is it working ?

PV DomUs for F10,SNV_106,Interpid Server (via debootstrap),
OpenSuse 11.1 may be installed ( via remote VNC connection, even
utilizing vfb ) and work pretty stable at Xen Unstable Dom0 ( kernel 2.6.29-rc5  ).

HVM DomUs failed at startup . Nothing listen at localhost:5900. 

--- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
From: Ian Jackson <Ian.Jackson@eu.citrix.com>
Subject: Re: [Xen-devel] HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
To: "bderzhavets@yahoo.com" <bderzhavets@yahoo.com>
Cc: "Simon Horman" <horms@verge.net.au>, "Yuji Shimada" <shimada-yxb@necst.nec.co.jp>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Monday, February 23, 2009, 9:53 AM

Boris Derzhavets writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the
code of PCI passthrough."):
>  I was under impression, that mentioned patch is supposed to support
> loading HVM DomU (?).

No, it's just code cleanup for PCI passthrough, which is for passing
PCI devices through to guests.  If you are not doing PCI passthrough -
ie, most ordinary HVM guests - then these changes will not affect you.

>  If answer is "yes" , then my question:-
> When http://xenbits.xensource.com/xen-unstable.hg will get this update?

In this case, just now.  All changes that we make to xen-unstable,
including the qemu-xen-unstable subsidiary tree, go through an
automated build-and-test.  Only versions which pass the (fairly
rudimentary) tests make it through to the main trees.

The pre-testing trees (called `staging') are also available and
published but not the `usual' case.

> Looks like "make tools" is using
> http://xenbits.xensource.com/git-http/qemu-xen-unstable.git when
> building xen-unstable.hg/tools/ioemu-remote.

Yes.  You can change this by setting the CONFIG_QEMU make variable, eg
in a file `.config' in the xen-unstable.hg top level.

> If answer is "no", i am sorry for misunderstanding.
> 
>   Fresh Xen-Unstable Dom0 install (along with the most recent build
> 2.6.29-rc5) still shows during attempt to start HVM DomU:-

These messages are not very surprising.  Is it working ?

Ian.



      

[-- Attachment #1.2: Type: text/html, Size: 3024 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures
  2009-02-23 15:09               ` Andrew Lyon
@ 2009-02-23 16:21                 ` Ian Jackson
  2009-02-23 18:47                   ` Boris Derzhavets
  2009-02-24  0:12                   ` Jeremy Fitzhardinge
  0 siblings, 2 replies; 36+ messages in thread
From: Ian Jackson @ 2009-02-23 16:21 UTC (permalink / raw)
  To: Andrew Lyon; +Cc: xen-devel@lists.xensource.com

Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
> > These messages are not very surprising.  Is it working ?
> 
> No, when try to start HVM on Xen unstable with pv_ops kernel I get this error:

Ah.  This is rather odd.  Normally I would hope that xend would report
an exit status.  (I haven't tried pvops with qemu.)

I would suggest running qemu-dm under strace.  This can be done easily
enough with a simple wrapper script, something like:
  #!/bin/sh
  set -e
  exec strace -vvs500 -f -o /root/qemu-dm.strace \
    /usr/lib/xen/bin/qemu-dm "$@"
and then give the name of the script as device_model in your config file.

Ian.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
  2009-02-23 15:36               ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Boris Derzhavets
@ 2009-02-23 16:22                 ` Ian Jackson
  2009-02-23 17:08                   ` Andrew Lyon
  2009-02-23 17:38                   ` Boris Derzhavets
  0 siblings, 2 replies; 36+ messages in thread
From: Ian Jackson @ 2009-02-23 16:22 UTC (permalink / raw)
  To: bderzhavets@yahoo.com
  Cc: Yuji Shimada, Simon Horman, xen-devel@lists.xensource.com

Boris Derzhavets writes ("Re: [Xen-devel] HVM guest question (was Re:
[PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
> [Ian Jackson:]
> > Is it working ?
...
> HVM DomUs failed at startup . Nothing listen at localhost:5900.

Is this with dom0 pvops ?  Or something else ?  Could you post your
config file ?

Unless you're actually using pci passthrough the changes to
hw/pass-through.[ch] are irrelevant to you.

Thanks,
Ian.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
  2009-02-23 16:22                 ` Ian Jackson
@ 2009-02-23 17:08                   ` Andrew Lyon
  2009-02-23 17:38                   ` Boris Derzhavets
  1 sibling, 0 replies; 36+ messages in thread
From: Andrew Lyon @ 2009-02-23 17:08 UTC (permalink / raw)
  To: Ian Jackson
  Cc: Yuji Shimada, bderzhavets@yahoo.com, Simon Horman,
	xen-devel@lists.xensource.com

On Mon, Feb 23, 2009 at 4:22 PM, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
> Boris Derzhavets writes ("Re: [Xen-devel] HVM guest question (was Re:
> [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>> [Ian Jackson:]
>> > Is it working ?
> ...
>> HVM DomUs failed at startup . Nothing listen at localhost:5900.
>
> Is this with dom0 pvops ?  Or something else ?  Could you post your
> config file ?

I have the same problem as Boris, its very easy to replicate, just try
to start a hvm while running a recent pv_ops kernel in dom0 with Xen
3.2.1 + backported pv_ops patches or Xen 3.4 unstable.

Last few lines of "xm log"

[2009-02-23 17:02:22 3524] DEBUG (DevController:144) Waiting for 0.
[2009-02-23 17:02:22 3524] DEBUG (DevController:139) Waiting for devices pci.
[2009-02-23 17:02:22 3524] DEBUG (DevController:139) Waiting for
devices ioports.
[2009-02-23 17:02:22 3524] DEBUG (DevController:139) Waiting for devices tap.
[2009-02-23 17:02:22 3524] DEBUG (DevController:139) Waiting for devices vtpm.
[2009-02-23 17:02:22 3524] INFO (XendDomain:1180) Domain xptest (2) unpaused.
[2009-02-23 17:02:22 3524] WARNING (image:482) domain xptest: device
model failure: pid 4028: malfunctioning (closed sentinel), killed; see
/var/log/xen/qemu-dm-xptest.log u start the hvm qemu-dm fails:

localhost xen # cat /var/log/xen/qemu-dm-xptest.log


domid: 2
qemu: the number of cpus is 2
config qemu network with xen bridge for  tap2.0 xenbr0
Watching /local/domain/0/device-model/2/logdirty/next-active
Watching /local/domain/0/device-model/2/command
char device redirected to /dev/pts/1
qemu_map_cache_init nr_buckets = 10000 size 3145728
shared page at pfn feffd
buffered io page at pfn feffb
Guest uuid = 46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12
Time offset set 0
populating video RAM at ff000000
mapping video RAM from ff000000
Register xen platform.
Done register platform.
xs_read(/local/domain/0/device-model/2/xen_extended_power_mgmt): read error
medium change watch on `hdc' (index: 1): /mnt/jos-tb1_store/CD
Images/Other/EN Win_XP_Pro_w_SP2/en_winxp_pro_with_sp2.iso
I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0
I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0
cirrus vga map change while on lfb mode
localhost xen #


xm info:

host                   : localhost
release                : 2.6.29-rc5-tip
version                : #2 SMP Sun Feb 22 13:27:49 GMT 2009
machine                : x86_64
nr_cpus                : 2
nr_nodes               : 1
cores_per_socket       : 2
threads_per_core       : 1
cpu_mhz                : 2394
hw_caps                : bfebfbff:20100800:00000000:00000140:0000e3bd:00000000:0
0000001:00000000
virt_caps              : hvm hvm_directio
total_memory           : 3965
free_memory            : 131
node_to_cpu            : node0:0-1
node_to_memory         : node0:131
xen_major              : 3
xen_minor              : 4
xen_extra              : -unstable
xen_caps               : xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x
86_32p hvm-3.0-x86_64
xen_scheduler          : credit
xen_pagesize           : 4096
platform_params        : virt_start=0xffff800000000000
xen_changeset          : unavailable
cc_compiler            : gcc version 4.1.2 (Gentoo 4.1.2 p1.0.2)
cc_compile_by          : root
cc_compile_domain      :
cc_compile_date        : Mon Feb 23 10:37:49 GMT 2009
xend_config_format     : 4

kernel config:

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.29-rc5
# Fri Feb 20 10:40:57 2009
#
CONFIG_64BIT=y
# CONFIG_X86_32 is not set
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_FAST_CMPXCHG_LOCAL=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ZONE_DMA32=y
CONFIG_ARCH_POPULATES_NODE_MAP=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_TRAMPOLINE=y
# CONFIG_KTIME_SCALAR is not set
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_TREE=y

#
# RCU Subsystem
#
CONFIG_CLASSIC_RCU=y
# CONFIG_TREE_RCU is not set
# CONFIG_PREEMPT_RCU is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_PREEMPT_RCU_TRACE is not set
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_LOG_BUF_SHIFT=17
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
# CONFIG_GROUP_SCHED is not set
# CONFIG_CGROUPS is not set
# CONFIG_SYSFS_DEPRECATED_V2 is not set
CONFIG_RELAY=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
# CONFIG_NET_NS is not set
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
# CONFIG_EMBEDDED is not set
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_EXTRA_PASS=y
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
# CONFIG_COMPAT_BRK is not set
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_ANON_INODES=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_HAVE_PERF_COUNTERS=y

#
# Performance Counters
#
CONFIG_PERF_COUNTERS=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_PCI_QUIRKS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
# CONFIG_PROFILING is not set
CONFIG_TRACEPOINTS=y
CONFIG_MARKERS=y
CONFIG_HAVE_OPROFILE=y
CONFIG_KPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_KRETPROBES=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_BLK_DEV_INTEGRITY is not set
CONFIG_BLOCK_COMPAT=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# CONFIG_DEFAULT_AS is not set
# CONFIG_DEFAULT_DEADLINE is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
CONFIG_FREEZER=y

#
# Processor type and features
#
# CONFIG_NO_HZ is not set
# CONFIG_HIGH_RES_TIMERS is not set
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_SMP=y
# CONFIG_X86_X2APIC is not set
# CONFIG_SPARSE_IRQ is not set
CONFIG_X86_MPPARSE=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_PARAVIRT_GUEST=y
CONFIG_XEN=y
CONFIG_XEN_MAX_DOMAIN_MEMORY=32
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
CONFIG_XEN_DOM0=y
CONFIG_XEN_PRIVILEGED_GUEST=y
CONFIG_XEN_DOM0_PCI=y
# CONFIG_KVM_CLOCK is not set
# CONFIG_KVM_GUEST is not set
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_PARAVIRT_DEBUG is not set
# CONFIG_MEMTEST is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_CPU=y
CONFIG_X86_L1_CACHE_BYTES=64
CONFIG_X86_INTERNODE_CACHE_BYTES=64
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_P6_NOP=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR_64=y
CONFIG_X86_DS=y
CONFIG_X86_PTRACE_BTS=y
CONFIG_HPET_TIMER=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
# CONFIG_CALGARY_IOMMU is not set
# CONFIG_AMD_IOMMU is not set
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_IOMMU_API is not set
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=4
# CONFIG_SCHED_SMT is not set
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set
# CONFIG_X86_MCE is not set
# CONFIG_I8K is not set
# CONFIG_MICROCODE is not set
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
# CONFIG_NUMA is not set
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
# CONFIG_FLATMEM_MANUAL is not set
# CONFIG_DISCONTIGMEM_MANUAL is not set
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_UNEVICTABLE_LRU=y
# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
CONFIG_X86_RESERVE_LOW_64K=y
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
# CONFIG_X86_PAT is not set
# CONFIG_EFI is not set
CONFIG_SECCOMP=y
# CONFIG_CC_STACKPROTECTOR is not set
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
# CONFIG_SCHED_HRTICK is not set
CONFIG_KEXEC=y
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x200000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x200000
CONFIG_HOTPLUG_CPU=y
# CONFIG_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y

#
# Power management and ACPI options
#
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_VERBOSE is not set
CONFIG_CAN_PM_TRACE=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
CONFIG_PM_SLEEP_SMP=y
CONFIG_PM_SLEEP=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_HIBERNATION is not set
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_PROCFS=y
CONFIG_ACPI_PROCFS_POWER=y
CONFIG_ACPI_SYSFS_POWER=y
CONFIG_ACPI_PROC_EVENT=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_SBS is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y

#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_DMAR is not set
# CONFIG_INTR_REMAP is not set
CONFIG_PCIEPORTBUS=y
# CONFIG_HOTPLUG_PCI_PCIE is not set
CONFIG_PCIEAER=y
# CONFIG_PCIEASPM is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_LEGACY is not set
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_STUB is not set
CONFIG_HT_IRQ=y
CONFIG_ISA_DMA_API=y
CONFIG_K8_NB=y
# CONFIG_PCCARD is not set
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_FAKE is not set
# CONFIG_HOTPLUG_PCI_ACPI is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_NET=y

#
# Networking options
#
CONFIG_COMPAT_NET_DEV_OPS=y
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_ASK_IP_FIB_HASH=y
# CONFIG_IP_FIB_TRIE is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_MULTIPLE_TABLES=y
# CONFIG_IP_ROUTE_MULTIPATH is not set
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
CONFIG_IP_PNP_RARP=y
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
CONFIG_IP_MROUTE=y
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_LRO=y
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_DEFAULT_BIC is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_HTCP is not set
# CONFIG_DEFAULT_VEGAS is not set
# CONFIG_DEFAULT_WESTWOOD is not set
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
# CONFIG_IPV6 is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
CONFIG_STP=y
CONFIG_BRIDGE=y
# CONFIG_NET_DSA is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_SCHED is not set
# CONFIG_DCB is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_PHONET is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=y
# CONFIG_CFG80211_REG_DEBUG is not set
CONFIG_NL80211=y
CONFIG_WIRELESS_OLD_REGULATORY=y
CONFIG_WIRELESS_EXT=y
CONFIG_WIRELESS_EXT_SYSFS=y
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=y

#
# Rate control algorithm selection
#
CONFIG_MAC80211_RC_MINSTREL=y
# CONFIG_MAC80211_RC_DEFAULT_PID is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
# CONFIG_MAC80211_DEBUGFS is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
# CONFIG_WIMAX is not set
# CONFIG_RFKILL is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_SYS_HYPERVISOR is not set
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=16384
# CONFIG_BLK_DEV_XIP is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_BLK_DEV_HD is not set
CONFIG_MISC_DEVICES=y
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_93CX6 is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set
CONFIG_SCSI_WAIT_SCAN=m

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
CONFIG_SCSI_ISCSI_ATTRS=y
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
# CONFIG_SCSI_DH is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_ACPI=y
CONFIG_SATA_PMP=y
CONFIG_SATA_AHCI=y
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
# CONFIG_SATA_SVW is not set
CONFIG_ATA_PIIX=y
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SX4 is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_PATA_ACPI is not set
# CONFIG_PATA_ALI is not set
CONFIG_PATA_AMD=y
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_MPIIX is not set
CONFIG_PATA_OLDPIIX=y
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RZ1000 is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
CONFIG_PATA_SCH=y
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
CONFIG_DM_SNAPSHOT=m
CONFIG_DM_MIRROR=y
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#

#
# Enable only one of the two stacks, unless you know what you are doing
#
# CONFIG_FIREWIRE is not set
# CONFIG_IEEE1394 is not set
# CONFIG_I2O is not set
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_MACVLAN is not set
# CONFIG_EQUALIZER is not set
CONFIG_TUN=y
# CONFIG_VETH is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_ARCNET is not set
# CONFIG_NET_ETHERNET is not set
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
CONFIG_E1000E=m
# CONFIG_IP1000 is not set
# CONFIG_IGB is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2 is not set
# CONFIG_QLA3XXX is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_JME is not set
# CONFIG_NETDEV_10000 is not set
# CONFIG_TR is not set

#
# Wireless LAN
#
# CONFIG_WLAN_PRE80211 is not set
# CONFIG_WLAN_80211 is not set
# CONFIG_IWLWIFI_LEDS is not set

#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#

#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set
# CONFIG_WAN is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
# CONFIG_ISDN is not set
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
CONFIG_XEN_KBDDEV_FRONTEND=y

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_VSXXXAA is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_WACOM is not set
CONFIG_INPUT_TOUCHSCREEN=y
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_UINPUT is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_DEVKMEM=y
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_COMPUTONE is not set
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_DIGIEPCA is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_ISI is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_N_HDLC is not set
# CONFIG_RISCOM8 is not set
# CONFIG_SPECIALIX is not set
# CONFIG_SX is not set
# CONFIG_RIO is not set
# CONFIG_STALDRV is not set
# CONFIG_NOZOMI is not set

#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set
CONFIG_FIX_EARLYCON_MEM=y

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
# CONFIG_LEGACY_PTYS is not set
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
CONFIG_NVRAM=y
# CONFIG_RTC is not set
# CONFIG_GEN_RTC is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_PC8736x_GPIO is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_CHARDEV is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=y

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_SIMTEC is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set

#
# Graphics adapter I2C/DDC channel drivers
#
# CONFIG_I2C_VOODOO3 is not set

#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_STUB is not set

#
# Miscellaneous I2C Chip support
#
# CONFIG_DS1682 is not set
# CONFIG_SENSORS_PCF8574 is not set
# CONFIG_PCF8575 is not set
# CONFIG_SENSORS_PCA9539 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_SENSORS_MAX6875 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set
# CONFIG_SPI is not set
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_BATTERY_DS2760 is not set
# CONFIG_BATTERY_BQ27x00 is not set
CONFIG_HWMON=m
# CONFIG_HWMON_VID is not set
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7473 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
CONFIG_SENSORS_CORETEMP=m
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
CONFIG_THERMAL=y
# CONFIG_WATCHDOG is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set

#
# Multifunction device drivers
#
# CONFIG_MFD_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_REGULATOR is not set

#
# Multimedia devices
#

#
# Multimedia core support
#
# CONFIG_VIDEO_DEV is not set
# CONFIG_DVB_CORE is not set
# CONFIG_VIDEO_MEDIA is not set

#
# Multimedia drivers
#
# CONFIG_DAB is not set

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_DRM=y
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_I810 is not set
# CONFIG_DRM_I830 is not set
CONFIG_DRM_I915=y
# CONFIG_DRM_I915_KMS is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_VGASTATE is not set
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_VIRTUAL is not set
CONFIG_XEN_FBDEV_FRONTEND=y
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=y
# CONFIG_BACKLIGHT_PROGEAR is not set
# CONFIG_BACKLIGHT_MBP_NVIDIA is not set
# CONFIG_BACKLIGHT_SAHARA is not set

#
# Display device support
#
# CONFIG_DISPLAY_SUPPORT is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
CONFIG_DUMMY_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE is not set
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
# CONFIG_SOUND is not set
# CONFIG_HID_SUPPORT is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
CONFIG_USB_DEBUG=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_DEVICE_CLASS is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
CONFIG_USB_SUSPEND=y
# CONFIG_USB_OTG is not set
CONFIG_USB_MON=y
# CONFIG_USB_WUSB is not set
# CONFIG_USB_WUSB_CBAF is not set

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_EHCI_TT_NEWSCHED is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HWA_HCD is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
#

#
# see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
CONFIG_USB_LIBUSUAL=y

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_BERRY_CHARGE is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGET is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_VST is not set

#
# OTG and related infrastructure
#
# CONFIG_UWB is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y

#
# LED drivers
#
# CONFIG_LEDS_ALIX2 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_EDAC is not set
# CONFIG_RTC_CLASS is not set
# CONFIG_DMADEVICES is not set
# CONFIG_UIO is not set
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SCRUB_PAGES=y
CONFIG_XEN_DEV_EVTCHN=y
CONFIG_XEN_BACKEND=y
CONFIG_XEN_BLKDEV_BACKEND=y
CONFIG_XEN_NETDEV_BACKEND=y
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_XENBUS_FRONTEND=y
# CONFIG_STAGING is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_INTEL_MENLOW is not set
# CONFIG_ACPI_WMI is not set
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_TOSHIBA is not set

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
CONFIG_DCDBAS=y
CONFIG_DMIID=y
# CONFIG_ISCSI_IBFT_FIND is not set

#
# File systems
#
CONFIG_EXT2_FS=m
# CONFIG_EXT2_FS_XATTR is not set
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
# CONFIG_EXT4_FS is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_FILE_LOCKING=y
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_BTRFS_FS is not set
CONFIG_DNOTIFY=y
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y
# CONFIG_FUSE_FS is not set
CONFIG_GENERIC_ACL=y

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
# CONFIG_CONFIGFS_FS is not set
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
CONFIG_ROOT_NFS=y
# CONFIG_NFSD is not set
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
# CONFIG_SUNRPC_REGISTER_V4 is not set
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_RPCSEC_GSS_SPKM3 is not set
# CONFIG_SMB_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
# CONFIG_LDM_PARTITION is not set
CONFIG_SGI_PARTITION=y
# CONFIG_ULTRIX_PARTITION is not set
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=y
# CONFIG_DLM is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
# CONFIG_PRINTK_TIME is not set
CONFIG_ALLOW_WARNINGS=y
CONFIG_ENABLE_WARN_DEPRECATED=y
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
CONFIG_MAGIC_SYSRQ=y
# CONFIG_UNUSED_SYMBOLS is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
# CONFIG_DETECT_SOFTLOCKUP is not set
CONFIG_DETECT_HUNG_TASK=y
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
# CONFIG_SCHED_DEBUG is not set
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_RT_MUTEX_TESTER is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_MUTEXES is not set
# CONFIG_DEBUG_LOCK_ALLOC is not set
# CONFIG_PROVE_LOCKING is not set
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_INFO is not set
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_WRITECOUNT is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_LIST is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_LKDTM is not set
# CONFIG_FAULT_INJECTION is not set
# CONFIG_LATENCYTOP is not set
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_HW_BRANCH_TRACER=y
CONFIG_RING_BUFFER=y
CONFIG_TRACING=y

#
# Tracers
#
# CONFIG_FUNCTION_TRACER is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_SYSPROF_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_CONTEXT_SWITCH_TRACER is not set
# CONFIG_BOOT_TRACER is not set
# CONFIG_TRACE_BRANCH_PROFILING is not set
# CONFIG_POWER_TRACER is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_HW_BRANCH_TRACER is not set
# CONFIG_KMEMTRACE is not set
# CONFIG_WORKQUEUE_TRACER is not set
CONFIG_BLK_DEV_IO_TRACE=y
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
# CONFIG_STRICT_DEVMEM is not set
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_DEBUG_STACK_USAGE=y
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_DEBUG_NX_TEST=m
# CONFIG_IOMMU_DEBUG is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=0
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
# CONFIG_OPTIMIZE_INLINING is not set

#
# Security options
#
CONFIG_KEYS=y
CONFIG_KEYS_DEBUG_PROC_KEYS=y
# CONFIG_SECURITY is not set
# CONFIG_SECURITYFS is not set
CONFIG_SECURITY_FILE_CAPABILITIES=y
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
# CONFIG_CRYPTO_FIPS is not set
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_GF128MUL is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_CRYPTD is not set
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set

#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CTR is not set
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set

#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set

#
# Digest
#
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_CRC32C_INTEL is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
# CONFIG_CRYPTO_SHA256 is not set
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_X86_64 is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=y
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=y
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set

#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_LZO is not set

#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_HIFN_795X is not set
CONFIG_HAVE_KVM=y
CONFIG_VIRTUALIZATION=y
# CONFIG_KVM is not set
# CONFIG_VIRTIO_PCI is not set
# CONFIG_VIRTIO_BALLOON is not set

#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_FIND_NEXT_BIT=y
CONFIG_GENERIC_FIND_LAST_BIT=y
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC16 is not set
CONFIG_CRC_T10DIF=y
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
# CONFIG_CRC7 is not set
# CONFIG_LIBCRC32C is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y


Andy


>
> Unless you're actually using pci passthrough the changes to
> hw/pass-through.[ch] are irrelevant to you.
>
> Thanks,
> Ian.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
  2009-02-23 16:22                 ` Ian Jackson
  2009-02-23 17:08                   ` Andrew Lyon
@ 2009-02-23 17:38                   ` Boris Derzhavets
  1 sibling, 0 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-23 17:38 UTC (permalink / raw)
  To: Ian Jackson; +Cc: Yuji Shimada, Simon Horman, xen-devel@lists.xensource.com


[-- Attachment #1.1: Type: text/plain, Size: 1489 bytes --]

>Is this with dom0 pvops ?  Or something else ?  Could you post your
>config file ?
Yes , with dom0 pvops 

# lofiadm -f  ~boris/isos/ubuntuSRV.iso
# cd ../vm
# cat intrepid.hvm

name = "Ubuntu810HVM"
builder = "hvm"
memory = "2048"
disk = ['phy:/dev/loop0,hdc:cdrom,r','phy:/dev/sdb7,hda,w']
vif = [ 'type=ioemu,bridge=eth0' ]
device_model = "/usr/lib64/xen/bin/qemu-dm"
kernel = "/usr/lib/xen/boot/hvmloader"
vnc=1
boot="d"
usb=1
usbdevice="tablet"
vcpus=1
on_reboot = "restart"
on_crash = "restart"

# xm create intrepid.hvm

--- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
From: Ian Jackson <Ian.Jackson@eu.citrix.com>
Subject: Re: [Xen-devel] HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)
To: "bderzhavets@yahoo.com" <bderzhavets@yahoo.com>
Cc: "Simon Horman" <horms@verge.net.au>, "Yuji Shimada" <shimada-yxb@necst.nec.co.jp>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Monday, February 23, 2009, 11:22 AM

Boris Derzhavets writes ("Re: [Xen-devel] HVM guest question (was Re:
[PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
> [Ian Jackson:]
> > Is it working ?
...
> HVM DomUs failed at startup . Nothing listen at localhost:5900.

Is this with dom0 pvops ?  Or something else ?  Could you post your
config file ?

Unless you're actually using pci passthrough the changes to
hw/pass-through.[ch] are irrelevant to you.

Thanks,
Ian.



      

[-- Attachment #1.2: Type: text/html, Size: 1905 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures
  2009-02-23 16:21                 ` HVM pvops failures Ian Jackson
@ 2009-02-23 18:47                   ` Boris Derzhavets
  2009-02-23 19:45                     ` Andrew Lyon
  2009-02-24  0:12                   ` Jeremy Fitzhardinge
  1 sibling, 1 reply; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-23 18:47 UTC (permalink / raw)
  To: Andrew Lyon, Ian Jackson; +Cc: xen-devel@lists.xensource.com


[-- Attachment #1.1: Type: text/plain, Size: 2004 bytes --]

I've tried that :-

name = "Ubuntu810HVM"
builder = "hvm"
memory = "2048"
disk = ['phy:/dev/loop0,hdc:cdrom,r','phy:/dev/sdb7,hda,w']
vif = [ 'type=ioemu,bridge=eth0' ]
# device_model = "/usr/lib64/xen/bin/qemu-dm"
device_model = "device_model_wrap.sh"
kernel = "/usr/lib/xen/boot/hvmloader"
vnc=1
boot="d"
usb=1
usbdevice="tablet"
vcpus=1
on_reboot = "restart"
on_crash = "restart"

cat device_model_wrap.sh
#!/bin/sh
  set -e
  exec strace -vvs500 -f -o ~boris/vm/qemu-dm.strace \
  /usr/lib64/xen/bin/qemu-dm "$@"


Same behavior. File qemu-dm.strace has not been created at all.
Content of log file under /var/log/xen is just the same.
xm dmesg is much less informative. Just 2-3 HVM lines


--- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
From: Ian Jackson <Ian.Jackson@eu.citrix.com>
Subject: Re: [Xen-devel] HVM pvops failures
To: "Andrew Lyon" <andrew.lyon@gmail.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Monday, February 23, 2009, 11:21 AM

Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re: [PATCH]
ioemu: Cleanup the code of PCI passthrough.)"):
> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson
<Ian.Jackson@eu.citrix.com> wrote:
> > These messages are not very surprising.  Is it working ?
> 
> No, when try to start HVM on Xen unstable with pv_ops kernel I get this
error:

Ah.  This is rather odd.  Normally I would hope that xend would report
an exit status.  (I haven't tried pvops with qemu.)

I would suggest running qemu-dm under strace.  This can be done easily
enough with a simple wrapper script, something like:
  #!/bin/sh
  set -e
  exec strace -vvs500 -f -o /root/qemu-dm.strace \
    /usr/lib/xen/bin/qemu-dm "$@"
and then give the name of the script as device_model in your config file.

Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 2445 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures
  2009-02-23 18:47                   ` Boris Derzhavets
@ 2009-02-23 19:45                     ` Andrew Lyon
  2009-02-23 20:02                       ` Boris Derzhavets
  0 siblings, 1 reply; 36+ messages in thread
From: Andrew Lyon @ 2009-02-23 19:45 UTC (permalink / raw)
  To: bderzhavets; +Cc: xen-devel@lists.xensource.com, Ian Jackson

[-- Attachment #1: Type: text/plain, Size: 2231 bytes --]

On Mon, Feb 23, 2009 at 6:47 PM, Boris Derzhavets <bderzhavets@yahoo.com> wrote:
> I've tried that :-
>
> name = "Ubuntu810HVM"
> builder = "hvm"
> memory = "2048"
> disk = ['phy:/dev/loop0,hdc:cdrom,r','phy:/dev/sdb7,hda,w']
> vif = [ 'type=ioemu,bridge=eth0' ]
> # device_model = "/usr/lib64/xen/bin/qemu-dm"
> device_model = "device_model_wrap.sh"
> kernel = "/usr/lib/xen/boot/hvmloader"
> vnc=1
> boot="d"
> usb=1
> usbdevice="tablet"
> vcpus=1
> on_reboot = "restart"
> on_crash = "restart"
>
> cat device_model_wrap.sh
> #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o ~boris/vm/qemu-dm.strace \
>   /usr/lib64/xen/bin/qemu-dm "$@"
>
>
> Same behavior. File qemu-dm.strace has not been created at all.
> Content of log file under /var/log/xen is just the same.
> xm dmesg is much less informative. Just 2-3 HVM lines

Worked for me, I've attached the 1mb strace logfile.

Perhaps you don't have strace installed?

Andy
>
>
> --- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
>
> From: Ian Jackson <Ian.Jackson@eu.citrix.com>
> Subject: Re: [Xen-devel] HVM pvops failures
> To: "Andrew Lyon" <andrew.lyon@gmail.com>
> Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
> Date: Monday, February 23, 2009, 11:21 AM
>
> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re: [PATCH]
> ioemu: Cleanup the code of PCI passthrough.)"):
>> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson
> <Ian.Jackson@eu.citrix.com> wrote:
>> > These messages are not very surprising.  Is it working ?
>>
>> No, when try to start HVM on Xen unstable with pv_ops kernel I get this
> error:
>
> Ah.  This is rather odd.  Normally I would hope that xend would report
> an exit status.  (I haven't tried pvops with
>  qemu.)
>
> I would suggest running qemu-dm under strace.  This can be done easily
> enough with a simple wrapper script, something like:
>   #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>     /usr/lib/xen/bin/qemu-dm "$@"
> and then give the name of the script as device_model in your config file.
>
> Ian.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>

[-- Attachment #2: qemu-dm.strace --]
[-- Type: application/octet-stream, Size: 1061503 bytes --]

9432  execve("/usr/lib64/xen/bin/qemu-dm", ["/usr/lib64/xen/bin/qemu-dm", "-d", "3", "-domain-name", "xptest", "-videoram", "4", "-k", "en-gb", "-vnc", "10.0.4.3:1,password", "-vncunused", "-vcpus", "2", "-boot", "d", "-serial", "pty", "-acpi", "-usbdevice", "tablet", "-net", "nic,vlan=1,macaddr=00:16:3e:42:47:f9,model=rtl8139", "-net", "tap,vlan=1,ifname=tap3.0,bridge=xenbr0", "-M", "xenfv"], ["CONSOLE=/dev/console", "TERM=linux", "DEFAULTLEVEL=default", "CRITICAL_SERVICES=checkroot modules checkfs localmount clock bootmisc", "INIT_VERSION=sysvinit-2.86", "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/sbin:/usr/sbin", "RUNLEVEL=3", "PWD=/", "PREVLEVEL=N", "BOOTLEVEL=boot", "SVCNAME=xend", "CONSOLETYPE=serial", "HOME=/", "SHLVL=2", "SOFTLEVEL=default", "OLDSOFTLEVEL=boot", "XAUTHORITY=/root/.Xauthority"]) = 0
9432  brk(0)                            = 0x1200000
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886de2000
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886de1000
9432  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
9432  open("/etc/ld.so.cache", O_RDONLY) = 3
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=262735, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=33873, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-09:49:01, st_ctime=2009/02/23-09:49:01}) = 0
9432  mmap(NULL, 33873, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5886dd8000
9432  close(3)                          = 0
9432  open("/lib/libm.so.6", O_RDONLY)  = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340>\0\0\0\0\0\0@\0\0\0\0\0\0\0\210\1\10\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\34\0\33\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\20\253\7\0\0\0\0\0\20\253\7\0\0\0\0\0\20\253\7\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0D\373\7\0\0\0\0\0D\373\7\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\300\375\7\0\0\0\0\0\300\375'\0\0\0\0\0\300\375'\0\0\0\0\0\340\2\0\0\0\0\0\0(\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\350\375\7\0\0\0\0\0\350\375'\0\0\0\0\0\350\375'\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0,\253\7\0\0\0\0\0,\253\7\0\0\0\0\0,\253\7\0\0\0\0\0d\16\0\0\0\0\0\0d\16\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693782, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=1040, st_size=526472, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 2621672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5886948000
9432  mprotect(0x7f58869c8000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5886bc7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7f000) = 0x7f5886bc7000
9432  close(3)                          = 0
9432  open("/lib/libz.so.1", O_RDONLY)  = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\35\0\0\0\0\0\0@\0\0\0\0\0\0\0\260B\1\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T4\1\0\0\0\0\0T4\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\320<\1\0\0\0\0\0\320<!\0\0\0\0\0\320<!\0\0\0\0\0\20\5\0\0\0\0\0\0\30\5\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\360=\1\0\0\0\0\0\360=!\0\0\0\0\0\360=!\0\0\0\0\0\240\1\0\0\0\0\0\0\240\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\340%\1\0\0\0\0\0\340%\1\0\0\0\0\0\340%\1\0\0\0\0\0\374\2\0\0\0\0\0\0\374\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\320<\1\0\0\0\0\0\320<!\0\0\0\0\0\320<!\0\0\0\0\0000\3\0\0\0\0\0\0000\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0C\0\0\0[\0\0\0\0\0\0\0N\0\0\0'\0\0\0\0\0\0\0\31\0\0\0\26\0\0\0\0\0\0\0!\0\0\0\17\0\0\0\34"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=410445, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=176, st_size=84272, st_atime=2009/02/23-17:01:27, st_mtime=2008/06/17-02:03:08, st_ctime=2008/12/11-09:04:45}) = 0
9432  mmap(NULL, 2179560, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5886733000
9432  mprotect(0x7f5886747000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5886946000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13000) = 0x7f5886946000
9432  close(3)                          = 0
9432  open("/lib/librt.so.1", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@#\0\0\0\0\0\0@\0\0\0\0\0\0\0\250\203\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\37\0\36\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0P^\0\0\0\0\0\0P^\0\0\0\0\0\0P^\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\340n\0\0\0\0\0\0\340n\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0x}\0\0\0\0\0\0x} \0\0\0\0\0x} \0\0\0\0\0\24\5\0\0\0\0\0\0\230\16\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\260}\0\0\0\0\0\0\260} \0\0\0\0\0\260} \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0l^\0\0\0\0\0\0l^\0\0\0\0\0\0l^\0\0\0\0\0\0T\2\0\0\0\0\0\0T\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693799, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=35688, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd7000
9432  mmap(NULL, 2133008, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f588652a000
9432  mprotect(0x7f5886531000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f5886731000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f5886731000
9432  close(3)                          = 0
9432  open("/lib/libpthread.so.0", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0X\0\0\0\0\0\0@\0\0\0\0\0\0\0 }\1\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0#\0 \0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\20\t\1\0\0\0\0\0\20\t\1\0\0\0\0\0\20\t\1\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0DT\1\0\0\0\0\0DT\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\310[\1\0\0\0\0\0\310[!\0\0\0\0\0\310[!\0\0\0\0\0\230\6\0\0\0\0\0\0\250G\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\250]\1\0\0\0\0\0\250]!\0\0\0\0\0\250]!\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0,\t\1\0\0\0\0\0,\t\1\0\0\0\0\0,\t\1\0\0\0\0\0\274\t\0\0\0\0\0\0\274\t\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693783, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=272, st_size=131940, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:35, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 2204528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f588630f000
9432  mprotect(0x7f5886325000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5886524000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f5886524000
9432  mmap(0x7f5886526000, 13168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5886526000
9432  close(3)                          = 0
9432  open("/lib/libutil.so.1", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\16\0\0\0\0\0\0@\0\0\0\0\0\0\0\370!\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\34\0\33\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\20\27\0\0\0\0\0\0\20\27\0\0\0\0\0\0\20\27\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\32\0\0\0\0\0\0\200\32\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\350\35\0\0\0\0\0\0\350\35 \0\0\0\0\0\350\35 \0\0\0\0\0(\3\0\0\0\0\0\0000\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\20\36\0\0\0\0\0\0\20\36 \0\0\0\0\0\20\36 \0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0,\27\0\0\0\0\0\0,\27\0\0\0\0\0\0,\27\0\0\0\0\0\0D\0\0\0\0\0\0\0D\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693794, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=24, st_size=10488, st_atime=2009/02/20-11:44:32, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 2105624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f588610c000
9432  mprotect(0x7f588610e000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f588630d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f588630d000
9432  close(3)                          = 0
9432  open("/usr/lib/libxenctrl.so.3.4", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`O\0\0\0\0\0\0@\0\0\0\0\0\0\0\0T\1\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\F\1\0\0\0\0\0\\F\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\260L\1\0\0\0\0\0\260L!\0\0\0\0\0\260L!\0\0\0\0\0\204\6\0\0\0\0\0\0000\237\2\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\0N\1\0\0\0\0\0\0N!\0\0\0\0\0\0N!\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\220%\1\0\0\0\0\0\220%\1\0\0\0\0\0\220%\1\0\0\0\0\0<\6\0\0\0\0\0\0<\6\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\260L\1\0\0\0\0\0\260L!\0\0\0\0\0\260L!\0\0\0\0\0P\3\0\0\0\0\0\0P\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\275\1\0\0\344\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\331\0\0\0003\0\0\0v\0\0\0\4\0\0\0\17\0\0\0\0\0\0\0*"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=504449, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=184, st_size=88704, st_atime=2009/02/23-09:48:53, st_mtime=2009/02/23-09:48:53, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd6000
9432  mmap(NULL, 2354144, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5885ecd000
9432  mprotect(0x7f5885ee2000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f58860e1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f58860e1000
9432  mmap(0x7f58860e3000, 166880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f58860e3000
9432  close(3)                          = 0
9432  open("/usr/lib/libxenguest.so.3.4", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200M\0\0\0\0\0\0@\0\0\0\0\0\0\0`\311\1\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\256\1\0\0\0\0\0l\256\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10\266\1\0\0\0\0\0\10\266!\0\0\0\0\0\10\266!\0\0\0\0\0\210\22\0\0\0\0\0\0\200\23\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\300\275\1\0\0\0\0\0\300\275!\0\0\0\0\0\300\275!\0\0\0\0\0\320\1\0\0\0\0\0\0\320\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\324\226\1\0\0\0\0\0\324\226\1\0\0\0\0\0\324\226\1\0\0\0\0\0d\4\0\0\0\0\0\0d\4\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\10\266\1\0\0\0\0\0\10\266!\0\0\0\0\0\10\266!\0\0\0\0\0\370\t\0\0\0\0\0\0\370\t\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0?\1\0\0\254\0\0\0\225\0\0\0\0\0\0\0\0\0\0\0000\0\0\0\0\0\0\0\26\0\0\0\241\0\0\0004\0\0\0l\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=504311, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=240, st_size=118752, st_atime=2009/02/23-09:48:53, st_mtime=2009/02/23-09:48:53, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 2214280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5885cb0000
9432  mprotect(0x7f5885ccb000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f5885ecb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f5885ecb000
9432  close(3)                          = 0
9432  open("/usr/lib/libxenstore.so.3.0", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\36\0\0\0\0\0\0@\0\0\0\0\0\0\0XR\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\304C\0\0\0\0\0\0\304C\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10M\0\0\0\0\0\0\10M \0\0\0\0\0\10M \0\0\0\0\0\200\4\0\0\0\0\0\0\3004\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0 N\0\0\0\0\0\0 N \0\0\0\0\0 N \0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\354;\0\0\0\0\0\0\354;\0\0\0\0\0\0\354;\0\0\0\0\0\0\204\1\0\0\0\0\0\0\204\1\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\10M\0\0\0\0\0\0\10M \0\0\0\0\0\10M \0\0\0\0\0\370\2\0\0\0\0\0\0\370\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\234\0\0\0T\0\0\0\2\0\0\0\0\0\0\0N\0\0\0\"\0\0\0J\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=504428, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=48, st_size=22744, st_atime=2009/02/23-09:48:53, st_mtime=2009/02/23-09:48:53, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 2130376, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5885aa7000
9432  mprotect(0x7f5885aac000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5885cab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5885cab000
9432  mmap(0x7f5885cad000, 8648, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5885cad000
9432  close(3)                          = 0
9432  open("/usr/lib/libblktap.so.3.0", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\23\0\0\0\0\0\0@\0\0\0\0\0\0\0\0002\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\31\0\30\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\234,\0\0\0\0\0\0\234,\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\370-\0\0\0\0\0\0\370- \0\0\0\0\0\370- \0\0\0\0\0H\3\0\0\0\0\0\0\210#\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0 .\0\0\0\0\0\0 . \0\0\0\0\0 . \0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0`(\0\0\0\0\0\0`(\0\0\0\0\0\0`(\0\0\0\0\0\0\324\0\0\0\0\0\0\0\324\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\370-\0\0\0\0\0\0\370- \0\0\0\0\0\370- \0\0\0\0\0\10\2\0\0\0\0\0\0\10\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0G\0\0\0005\0\0\0001\0\0\0.\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\35\0\0\0\32\0\0\0000\0\0\0\33\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=504321, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=32, st_size=14400, st_atime=2009/02/23-09:48:53, st_mtime=2009/02/23-09:48:53, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd5000
9432  mmap(NULL, 2118016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f58858a1000
9432  mprotect(0x7f58858a4000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5885aa3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f5885aa3000
9432  mmap(0x7f5885aa5000, 4480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5885aa5000
9432  close(3)                          = 0
9432  open("/usr/lib/libpci.so.3", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p$\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\244\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\33\0\32\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\215\0\0\0\0\0\0l\215\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0@\235\0\0\0\0\0\0@\235 \0\0\0\0\0@\235 \0\0\0\0\0\340\6\0\0\0\0\0\0\350\6\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\320\235\0\0\0\0\0\0\320\235 \0\0\0\0\0\320\235 \0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\260|\0\0\0\0\0\0\260|\0\0\0\0\0\0\260|\0\0\0\0\0\0004\3\0\0\0\0\0\0004\3\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0@\235\0\0\0\0\0\0@\235 \0\0\0\0\0@\235 \0\0\0\0\0\300\2\0\0\0\0\0\0\300\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\250\0\0\0X\0\0\0R\0\0\0\0\0\0\0)\0\0\0\21\0\0\0\22\0\0\0006\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=430172, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=88, st_size=43960, st_atime=2009/02/20-11:12:27, st_mtime=2009/02/20-11:12:27, st_ctime=2009/02/20-11:12:28}) = 0
9432  mmap(NULL, 2139176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5885696000
9432  mprotect(0x7f588569f000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f588589f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f588589f000
9432  close(3)                          = 0
9432  open("/usr/lib/libSDL-1.2.so.0", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240{\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\21\5\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\350\4\0\0\0\0\0,\350\4\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0h\365\4\0\0\0\0\0h\365$\0\0\0\0\0h\365$\0\0\0\0\0\310\32\0\0\0\0\0\0\360\264\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0X\374\4\0\0\0\0\0X\374$\0\0\0\0\0X\374$\0\0\0\0\0\320\1\0\0\0\0\0\0\320\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\310s\4\0\0\0\0\0\310s\4\0\0\0\0\0\310s\4\0\0\0\0\0\324\27\0\0\0\0\0\0\324\27\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0h\365\4\0\0\0\0\0h\365$\0\0\0\0\0h\365$\0\0\0\0\0\230\n\0\0\0\0\0\0\230\n\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\35\2\0\0002\1\0\0\322\0\0\0\0\0\0\0\0\0\0\0b\0\0\0`\0\0\0\0\0\0\0v\0\0\0-\1\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=684991, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=664, st_size=333696, st_atime=2009/02/20-11:14:12, st_mtime=2009/02/20-11:14:12, st_ctime=2009/02/20-11:14:15}) = 0
9432  mmap(NULL, 2468440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f588543b000
9432  mprotect(0x7f588548a000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f588568a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4f000) = 0x7f588568a000
9432  mmap(0x7f588568d000, 35416, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f588568d000
9432  close(3)                          = 0
9432  open("/usr/lib/libXext.so.6", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 >\0\0\0\0\0\0@\0\0\0\0\0\0\0\10\10\1\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\324\360\0\0\0\0\0\0\324\360\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0 \375\0\0\0\0\0\0 \375 \0\0\0\0\0 \375 \0\0\0\0\0\30\n\0\0\0\0\0\0\200\f\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\320\375\0\0\0\0\0\0\320\375 \0\0\0\0\0\320\375 \0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\200\322\0\0\0\0\0\0\200\322\0\0\0\0\0\0\200\322\0\0\0\0\0\0\204\5\0\0\0\0\0\0\204\5\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0 \375\0\0\0\0\0\0 \375 \0\0\0\0\0 \375 \0\0\0\0\0\340\2\0\0\0\0\0\0\340\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0g\1\0\0\267\0\0\0\0\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\265\0\0\0\0\0\0\0\253\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=462253, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=144, st_size=69256, st_atime=2008/12/11-10:57:09, st_mtime=2008/12/11-10:57:09, st_ctime=2008/12/11-10:57:09}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd4000
9432  mmap(NULL, 2165152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f588522a000
9432  mprotect(0x7f588523a000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5885439000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f5885439000
9432  close(3)                          = 0
9432  open("//usr/lib64/opengl/xorg-x11/lib/libGL.so.1", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\1\2\0\0\0\0\0@\0\0\0\0\0\0\0\2001\7\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\35\0\34\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,\211\6\0\0\0\0\0,\211\6\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\340\224\6\0\0\0\0\0\340\224&\0\0\0\0\0\340\224&\0\0\0\0\0\270\233\0\0\0\0\0\0`\303\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0008\r\7\0\0\0\0\0008\r'\0\0\0\0\0008\r'\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\f\211\6\0\0\0\0\0\f\211\6\0\0\0\0\0\f\211\6\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0\340\224\6\0\0\0\0\0\340\224&\0\0\0\0\0\340\224&\0\0\0\0\0\20\0\0\0\0\0\0\0\30\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\210\240\5\0\0\0\0\0\210\240\5\0\0\0\0\0\210\240\5\0\0\0\0\0t4\0\0\0\0\0\0t4\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\340\224\6\0\0\0\0\0\340\224&\0\0\0\0\0\340\224&\0\0\0\0\0 {\0\0\0\0\0\0 {\0\0\0"..., 832) = 832
9432  lseek(3, 428300, SEEK_SET)        = 428300
9432  read(3, "\4\0\0\0\20\0\0\0\1\0\0\0GNU\0\0\0\0\0\2\0\0\0\4\0\0\0\24\0\0\0"..., 32) = 32
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=428840, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=936, st_size=473280, st_atime=2008/12/11-11:10:12, st_mtime=2008/12/11-11:10:12, st_ctime=2008/12/11-11:10:13}) = 0
9432  mmap(NULL, 2578496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5884fb4000
9432  mprotect(0x7f588501d000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f588521d000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x69000) = 0x7f588521d000
9432  mmap(0x7f5885228000, 6208, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5885228000
9432  close(3)                          = 0
9432  open("/lib/libncurses.so.5", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\16\2\0\0\0\0\0@\0\0\0\0\0\0\0000\265\5\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\354\322\4\0\0\0\0\0\354\322\4\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0008\327\4\0\0\0\0\0008\327$\0\0\0\0\0008\327$\0\0\0\0\0(\335\0\0\0\0\0\0p\351\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0@\234\5\0\0\0\0\0@\234%\0\0\0\0\0@\234%\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\364\201\4\0\0\0\0\0\364\201\4\0\0\0\0\0\364\201\4\0\0\0\0\0\f\21\0\0\0\0\0\0\f\21\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0008\327\4\0\0\0\0\0008\327$\0\0\0\0\0008\327$\0\0\0\0\0\310\310\0\0\0\0\0\0\310\310\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\t\2\0\0D\2\0\0\217\1\0\0\322\1\0\0\216\1\0\0Q\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\2\0\0\30"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=410539, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=744, st_size=375728, st_atime=2009/02/23-17:01:27, st_mtime=2008/06/17-02:56:07, st_ctime=2008/12/11-09:04:45}) = 0
9432  mmap(NULL, 2474152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5884d57000
9432  mprotect(0x7f5884da5000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5884fa4000, 61440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4d000) = 0x7f5884fa4000
9432  mmap(0x7f5884fb3000, 168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5884fb3000
9432  close(3)                          = 0
9432  open("/lib/libc.so.6", O_RDONLY)  = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\345\1\0\0\0\0\0@\0\0\0\0\0\0\0p;\24\0\0\0\0\0\0\0\0\0@\0008\0\v\0@\0E\0D\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0h\2\0\0\0\0\0\0h\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\343\23\0\0\0\0\0\200\343\23\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0XF\0\0\0\0\0\0X\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0@\33\24\0\0\0\0\0@\0334\0\0\0\0\0@\0334\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0\20\0\0\0\0\0\0\0h\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0P\345td\4\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0,d\0\0\0\0\0\0,d\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693821, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2608, st_size=1330352, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:31, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd3000
9432  mmap(NULL, 3437208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5884a0f000
9432  mprotect(0x7f5884b4e000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5884d4d000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13e000) = 0x7f5884d4d000
9432  mmap(0x7f5884d52000, 17048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5884d52000
9432  close(3)                          = 0
9432  open("/lib/libresolv.so.2", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 4\0\0\0\0\0\0@\0\0\0\0\0\0\0\320\23\1\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\341\0\0\0\0\0\0@\341\0\0\0\0\0\0@\341\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\372\0\0\0\0\0\0\4\372\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10\5\1\0\0\0\0\0\10\5!\0\0\0\0\0\10\5!\0\0\0\0\0\330\r\0\0\0\0\0\0\0006\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\0\16\1\0\0\0\0\0\0\16!\0\0\0\0\0\0\16!\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\\\341\0\0\0\0\0\0\\\341\0\0\0\0\0\0\\\341\0\0\0\0\0\0\214\3\0\0\0\0\0\0\214\3\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693796, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72464, st_atime=2009/02/20-11:44:32, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 2177800, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f58847fb000
9432  mprotect(0x7f588480b000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f5884a0b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f5884a0b000
9432  mmap(0x7f5884a0d000, 6920, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5884a0d000
9432  close(3)                          = 0
9432  open("/lib/libdl.so.2", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\16\0\0\0\0\0\0@\0\0\0\0\0\0\0x1\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\31\0\0\0\0\0\0@\31\0\0\0\0\0\0@\31\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\30\36\0\0\0\0\0\0\30\36\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0h-\0\0\0\0\0\0h- \0\0\0\0\0h- \0\0\0\0\0 \3\0\0\0\0\0\0\270\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\240-\0\0\0\0\0\0\240- \0\0\0\0\0\240- \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\\\31\0\0\0\0\0\0\\\31\0\0\0\0\0\0\\\31\0\0\0\0\0\0\264\0\0\0\0\0\0\0\264\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=693757, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=32, st_size=14520, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd2000
9432  mmap(NULL, 2109728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f58845f7000
9432  mprotect(0x7f58845f9000, 2097152, PROT_NONE) = 0
9432  mmap(0x7f58847f9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f58847f9000
9432  close(3)                          = 0
9432  open("/usr/lib/libX11.so.6", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\7\2\0\0\0\0\0@\0\0\0\0\0\0\0\3608\20\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0T\320\17\0\0\0\0\0T\320\17\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0(\337\17\0\0\0\0\0(\337/\0\0\0\0\0(\337/\0\0\0\0\0\370X\0\0\0\0\0\0000`\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0P\353\17\0\0\0\0\0P\353/\0\0\0\0\0P\353/\0\0\0\0\0\320\1\0\0\0\0\0\0\320\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0t\177\16\0\0\0\0\0t\177\16\0\0\0\0\0t\177\16\0\0\0\0\0\354<\0\0\0\0\0\0\354<\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0(\337\17\0\0\0\0\0(\337/\0\0\0\0\0(\337/\0\0\0\0\0\330\20\0\0\0\0\0\0\330\20\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\365\3\0\0\\\5\0\0\0\0\0\0\235\4\0\0-\0\0\0\341\1\0\0\222\2\0\0I\0\0\0\0\0\0\0\0\0\0\0\233\2\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=470069, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2088, st_size=1064816, st_atime=2008/12/11-10:56:36, st_mtime=2008/12/11-10:56:36, st_ctime=2008/12/11-10:56:38}) = 0
9432  mmap(NULL, 3161944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f58842f3000
9432  mprotect(0x7f58843f1000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f58845f0000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xfd000) = 0x7f58845f0000
9432  close(3)                          = 0
9432  open("/usr/lib/libXau.so.6", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\220!\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\31\0\30\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\304\33\0\0\0\0\0\0\304\33\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10\36\0\0\0\0\0\0\10\36 \0\0\0\0\0\10\36 \0\0\0\0\0\310\2\0\0\0\0\0\0\340\2\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0000\36\0\0\0\0\0\0000\36 \0\0\0\0\0000\36 \0\0\0\0\0\240\1\0\0\0\0\0\0\240\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0(\31\0\0\0\0\0\0(\31\0\0\0\0\0\0(\31\0\0\0\0\0\0|\0\0\0\0\0\0\0|\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\10\36\0\0\0\0\0\0\10\36 \0\0\0\0\0\10\36 \0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0?\0\0\0&\0\0\0\0\0\0\0\r\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0\2\0\0\0\n\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=461869, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=24, st_size=10192, st_atime=2008/12/11-10:54:14, st_mtime=2008/12/11-10:54:14, st_ctime=2008/12/11-10:54:15}) = 0
9432  mmap(NULL, 2105576, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f58840f0000
9432  mprotect(0x7f58840f2000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f58842f1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f58842f1000
9432  close(3)                          = 0
9432  open("/usr/lib/libXxf86vm.so.1", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\20\0\0\0\0\0\0@\0\0\0\0\0\0\0\10R\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204A\0\0\0\0\0\0\204A\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\340M\0\0\0\0\0\0\340M \0\0\0\0\0\340M \0\0\0\0\0X\3\0\0\0\0\0\0\210\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\20N\0\0\0\0\0\0\20N \0\0\0\0\0\20N \0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\224<\0\0\0\0\0\0\224<\0\0\0\0\0\0\224<\0\0\0\0\0\0\314\0\0\0\0\0\0\0\314\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\340M\0\0\0\0\0\0\340M \0\0\0\0\0\340M \0\0\0\0\0 \2\0\0\0\0\0\0 \2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0E\0\0\0.\0\0\0\36\0\0\0\2\0\0\0\0\0\0\0\33\0\0\0\37\0\0\0\n\0\0\0\3\0\0\0&\0\0\0\r\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=461822, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=48, st_size=22664, st_atime=2008/12/11-10:58:31, st_mtime=2008/12/11-10:58:31, st_ctime=2008/12/11-10:58:32}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd1000
9432  mmap(NULL, 2117992, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5883eea000
9432  mprotect(0x7f5883eef000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f58840ee000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f58840ee000
9432  close(3)                          = 0
9432  open("/usr/lib/libdrm.so.2", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3005\0\0\0\0\0\0@\0\0\0\0\0\0\0\260\242\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\31\0\30\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\24\224\0\0\0\0\0\0\24\224\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\0\236\0\0\0\0\0\0\0\236 \0\0\0\0\0\0\236 \0\0\0\0\0\360\3\0\0\0\0\0\0P\r\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0(\236\0\0\0\0\0\0(\236 \0\0\0\0\0(\236 \0\0\0\0\0\240\1\0\0\0\0\0\0\240\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0X}\0\0\0\0\0\0X}\0\0\0\0\0\0X}\0\0\0\0\0\0\234\4\0\0\0\0\0\0\234\4\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\0\236\0\0\0\0\0\0\0\236 \0\0\0\0\0\0\236 \0\0\0\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0009\1\0\0\262\0\0\0\223\0\0\0$\0\0\0\0\0\0\0d\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=461764, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=88, st_size=43248, st_atime=2008/12/11-10:53:18, st_mtime=2008/12/11-10:53:18, st_ctime=2008/12/11-10:53:18}) = 0
9432  mmap(NULL, 2141008, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5883cdf000
9432  mprotect(0x7f5883ce9000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5883ee8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f5883ee8000
9432  close(3)                          = 0
9432  open("/usr/lib/libXdmcp.so.6", O_RDONLY) = 3
9432  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\26\0\0\0\0\0\0@\0\0\0\0\0\0\0\250Q\0\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\31\0\30\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\344C\0\0\0\0\0\0\344C\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10N\0\0\0\0\0\0\10N \0\0\0\0\0\10N \0\0\0\0\0\340\2\0\0\0\0\0\0\350\2\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0000N\0\0\0\0\0\0000N \0\0\0\0\0000N \0\0\0\0\0\240\1\0\0\0\0\0\0\240\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0`<\0\0\0\0\0\0`<\0\0\0\0\0\0`<\0\0\0\0\0\0\204\1\0\0\0\0\0\0\204\1\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\10N\0\0\0\0\0\0\10N \0\0\0\0\0\10N \0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0s\0\0\0A\0\0\0\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\0"..., 832) = 832
9432  fstat(3, {st_dev=makedev(8, 2), st_ino=462191, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=48, st_size=22504, st_atime=2008/12/11-10:54:31, st_mtime=2008/12/11-10:54:31, st_ctime=2008/12/11-10:54:32}) = 0
9432  mmap(NULL, 2117872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f5883ad9000
9432  mprotect(0x7f5883ade000, 2093056, PROT_NONE) = 0
9432  mmap(0x7f5883cdd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f5883cdd000
9432  close(3)                          = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dd0000
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dcf000
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dce000
9432  arch_prctl(ARCH_SET_FS, 0x7f5886dce700) = 0
9432  mprotect(0x7f5883cdd000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5883ee8000, 4096, PROT_READ) = 0
9432  mprotect(0x7f58840ee000, 4096, PROT_READ) = 0
9432  mprotect(0x7f58842f1000, 4096, PROT_READ) = 0
9432  mprotect(0x7f58845f0000, 8192, PROT_READ) = 0
9432  mprotect(0x7f58847f9000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5884a0b000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5884d4d000, 16384, PROT_READ) = 0
9432  mprotect(0x7f5884fa4000, 53248, PROT_READ) = 0
9432  mprotect(0x7f588521d000, 32768, PROT_READ) = 0
9432  mprotect(0x7f5885439000, 4096, PROT_READ) = 0
9432  mprotect(0x7f588568a000, 4096, PROT_READ) = 0
9432  mprotect(0x7f588589f000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5885aa3000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5885cab000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5885ecb000, 4096, PROT_READ) = 0
9432  mprotect(0x7f58860e1000, 4096, PROT_READ) = 0
9432  mprotect(0x7f588630d000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5886524000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5886731000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5886946000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5886bc7000, 4096, PROT_READ) = 0
9432  mprotect(0x6ef000, 4096, PROT_READ) = 0
9432  mprotect(0x7f5886de3000, 4096, PROT_READ) = 0
9432  munmap(0x7f5886dd8000, 33873)     = 0
9432  set_tid_address(0x7f5886dce790)   = 9432
9432  set_robust_list(0x7f5886dce7a0, 0x18) = 0
9432  futex(0x7fff8ede276c, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGRTMIN, {0x7f5886314320, [], SA_RESTORER|SA_SIGINFO, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGRT_1, {0x7f58863143a0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
9432  getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
9432  getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
9432  setrlimit(RLIMIT_STACK, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
9432  getrlimit(RLIMIT_DATA, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
9432  setrlimit(RLIMIT_DATA, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
9432  setrlimit(RLIMIT_RSS, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
9432  setrlimit(RLIMIT_MEMLOCK, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "domid: 3\n"..., 9)      = 9
9432  write(2, "qemu: the number of cpus is 2\n"..., 30) = 30
9432  clock_gettime(CLOCK_MONOTONIC, {9534, 956706599}) = 0
9432  brk(0)                            = 0x1200000
9432  brk(0x1221000)                    = 0x1221000
9432  open("/dev/net/tun", O_RDWR)      = 3
9432  ioctl(3, TUNSETIFF, 0x7fff8ede1a00) = 0
9432  fcntl(3, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
9432  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f5886dce790) = 9448
9432  wait4(9448,  <unfinished ...>
9448  getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
9448  close(4)                          = -1 EBADF (Bad file descriptor)
9448  close(5)                          = -1 EBADF (Bad file descriptor)
9448  close(6)                          = -1 EBADF (Bad file descriptor)
9448  close(7)                          = -1 EBADF (Bad file descriptor)
9448  close(8)                          = -1 EBADF (Bad file descriptor)
9448  close(9)                          = -1 EBADF (Bad file descriptor)
9448  close(10)                         = -1 EBADF (Bad file descriptor)
9448  close(11)                         = -1 EBADF (Bad file descriptor)
9448  close(12)                         = -1 EBADF (Bad file descriptor)
9448  close(13)                         = -1 EBADF (Bad file descriptor)
9448  close(14)                         = -1 EBADF (Bad file descriptor)
9448  close(15)                         = -1 EBADF (Bad file descriptor)
9448  close(16)                         = -1 EBADF (Bad file descriptor)
9448  close(17)                         = 0
9448  close(18)                         = 0
9448  close(19)                         = -1 EBADF (Bad file descriptor)
9448  close(20)                         = -1 EBADF (Bad file descriptor)
9448  close(21)                         = -1 EBADF (Bad file descriptor)
9448  close(22)                         = -1 EBADF (Bad file descriptor)
9448  close(23)                         = -1 EBADF (Bad file descriptor)
9448  close(24)                         = -1 EBADF (Bad file descriptor)
9448  close(25)                         = 0
9448  close(26)                         = -1 EBADF (Bad file descriptor)
9448  close(27)                         = -1 EBADF (Bad file descriptor)
9448  close(28)                         = -1 EBADF (Bad file descriptor)
9448  close(29)                         = -1 EBADF (Bad file descriptor)
9448  close(30)                         = -1 EBADF (Bad file descriptor)
9448  close(31)                         = -1 EBADF (Bad file descriptor)
9448  close(32)                         = -1 EBADF (Bad file descriptor)
9448  close(33)                         = -1 EBADF (Bad file descriptor)
9448  close(34)                         = -1 EBADF (Bad file descriptor)
9448  close(35)                         = -1 EBADF (Bad file descriptor)
9448  close(36)                         = -1 EBADF (Bad file descriptor)
9448  close(37)                         = -1 EBADF (Bad file descriptor)
9448  close(38)                         = -1 EBADF (Bad file descriptor)
9448  close(39)                         = -1 EBADF (Bad file descriptor)
9448  close(40)                         = -1 EBADF (Bad file descriptor)
9448  close(41)                         = -1 EBADF (Bad file descriptor)
9448  close(42)                         = -1 EBADF (Bad file descriptor)
9448  close(43)                         = -1 EBADF (Bad file descriptor)
9448  close(44)                         = -1 EBADF (Bad file descriptor)
9448  close(45)                         = -1 EBADF (Bad file descriptor)
9448  close(46)                         = -1 EBADF (Bad file descriptor)
9448  close(47)                         = -1 EBADF (Bad file descriptor)
9448  close(48)                         = -1 EBADF (Bad file descriptor)
9448  close(49)                         = -1 EBADF (Bad file descriptor)
9448  close(50)                         = -1 EBADF (Bad file descriptor)
9448  close(51)                         = -1 EBADF (Bad file descriptor)
9448  close(52)                         = -1 EBADF (Bad file descriptor)
9448  close(53)                         = -1 EBADF (Bad file descriptor)
9448  close(54)                         = -1 EBADF (Bad file descriptor)
9448  close(55)                         = -1 EBADF (Bad file descriptor)
9448  close(56)                         = -1 EBADF (Bad file descriptor)
9448  close(57)                         = -1 EBADF (Bad file descriptor)
9448  close(58)                         = -1 EBADF (Bad file descriptor)
9448  close(59)                         = -1 EBADF (Bad file descriptor)
9448  close(60)                         = -1 EBADF (Bad file descriptor)
9448  close(61)                         = -1 EBADF (Bad file descriptor)
9448  close(62)                         = -1 EBADF (Bad file descriptor)
9448  close(63)                         = -1 EBADF (Bad file descriptor)
9448  close(64)                         = -1 EBADF (Bad file descriptor)
9448  close(65)                         = -1 EBADF (Bad file descriptor)
9448  close(66)                         = -1 EBADF (Bad file descriptor)
9448  close(67)                         = -1 EBADF (Bad file descriptor)
9448  close(68)                         = -1 EBADF (Bad file descriptor)
9448  close(69)                         = -1 EBADF (Bad file descriptor)
9448  close(70)                         = -1 EBADF (Bad file descriptor)
9448  close(71)                         = -1 EBADF (Bad file descriptor)
9448  close(72)                         = -1 EBADF (Bad file descriptor)
9448  close(73)                         = -1 EBADF (Bad file descriptor)
9448  close(74)                         = -1 EBADF (Bad file descriptor)
9448  close(75)                         = -1 EBADF (Bad file descriptor)
9448  close(76)                         = -1 EBADF (Bad file descriptor)
9448  close(77)                         = -1 EBADF (Bad file descriptor)
9448  close(78)                         = -1 EBADF (Bad file descriptor)
9448  close(79)                         = -1 EBADF (Bad file descriptor)
9448  close(80)                         = -1 EBADF (Bad file descriptor)
9448  close(81)                         = -1 EBADF (Bad file descriptor)
9448  close(82)                         = -1 EBADF (Bad file descriptor)
9448  close(83)                         = -1 EBADF (Bad file descriptor)
9448  close(84)                         = -1 EBADF (Bad file descriptor)
9448  close(85)                         = -1 EBADF (Bad file descriptor)
9448  close(86)                         = -1 EBADF (Bad file descriptor)
9448  close(87)                         = -1 EBADF (Bad file descriptor)
9448  close(88)                         = -1 EBADF (Bad file descriptor)
9448  close(89)                         = -1 EBADF (Bad file descriptor)
9448  close(90)                         = -1 EBADF (Bad file descriptor)
9448  close(91)                         = -1 EBADF (Bad file descriptor)
9448  close(92)                         = -1 EBADF (Bad file descriptor)
9448  close(93)                         = -1 EBADF (Bad file descriptor)
9448  close(94)                         = -1 EBADF (Bad file descriptor)
9448  close(95)                         = -1 EBADF (Bad file descriptor)
9448  close(96)                         = -1 EBADF (Bad file descriptor)
9448  close(97)                         = -1 EBADF (Bad file descriptor)
9448  close(98)                         = -1 EBADF (Bad file descriptor)
9448  close(99)                         = -1 EBADF (Bad file descriptor)
9448  close(100)                        = -1 EBADF (Bad file descriptor)
9448  close(101)                        = -1 EBADF (Bad file descriptor)
9448  close(102)                        = -1 EBADF (Bad file descriptor)
9448  close(103)                        = -1 EBADF (Bad file descriptor)
9448  close(104)                        = -1 EBADF (Bad file descriptor)
9448  close(105)                        = -1 EBADF (Bad file descriptor)
9448  close(106)                        = -1 EBADF (Bad file descriptor)
9448  close(107)                        = -1 EBADF (Bad file descriptor)
9448  close(108)                        = -1 EBADF (Bad file descriptor)
9448  close(109)                        = -1 EBADF (Bad file descriptor)
9448  close(110)                        = -1 EBADF (Bad file descriptor)
9448  close(111)                        = -1 EBADF (Bad file descriptor)
9448  close(112)                        = -1 EBADF (Bad file descriptor)
9448  close(113)                        = -1 EBADF (Bad file descriptor)
9448  close(114)                        = -1 EBADF (Bad file descriptor)
9448  close(115)                        = -1 EBADF (Bad file descriptor)
9448  close(116)                        = -1 EBADF (Bad file descriptor)
9448  close(117)                        = -1 EBADF (Bad file descriptor)
9448  close(118)                        = -1 EBADF (Bad file descriptor)
9448  close(119)                        = -1 EBADF (Bad file descriptor)
9448  close(120)                        = -1 EBADF (Bad file descriptor)
9448  close(121)                        = -1 EBADF (Bad file descriptor)
9448  close(122)                        = -1 EBADF (Bad file descriptor)
9448  close(123)                        = -1 EBADF (Bad file descriptor)
9448  close(124)                        = -1 EBADF (Bad file descriptor)
9448  close(125)                        = -1 EBADF (Bad file descriptor)
9448  close(126)                        = -1 EBADF (Bad file descriptor)
9448  close(127)                        = -1 EBADF (Bad file descriptor)
9448  close(128)                        = -1 EBADF (Bad file descriptor)
9448  close(129)                        = -1 EBADF (Bad file descriptor)
9448  close(130)                        = -1 EBADF (Bad file descriptor)
9448  close(131)                        = -1 EBADF (Bad file descriptor)
9448  close(132)                        = -1 EBADF (Bad file descriptor)
9448  close(133)                        = -1 EBADF (Bad file descriptor)
9448  close(134)                        = -1 EBADF (Bad file descriptor)
9448  close(135)                        = -1 EBADF (Bad file descriptor)
9448  close(136)                        = -1 EBADF (Bad file descriptor)
9448  close(137)                        = -1 EBADF (Bad file descriptor)
9448  close(138)                        = -1 EBADF (Bad file descriptor)
9448  close(139)                        = -1 EBADF (Bad file descriptor)
9448  close(140)                        = -1 EBADF (Bad file descriptor)
9448  close(141)                        = -1 EBADF (Bad file descriptor)
9448  close(142)                        = -1 EBADF (Bad file descriptor)
9448  close(143)                        = -1 EBADF (Bad file descriptor)
9448  close(144)                        = -1 EBADF (Bad file descriptor)
9448  close(145)                        = -1 EBADF (Bad file descriptor)
9448  close(146)                        = -1 EBADF (Bad file descriptor)
9448  close(147)                        = -1 EBADF (Bad file descriptor)
9448  close(148)                        = -1 EBADF (Bad file descriptor)
9448  close(149)                        = -1 EBADF (Bad file descriptor)
9448  close(150)                        = -1 EBADF (Bad file descriptor)
9448  close(151)                        = -1 EBADF (Bad file descriptor)
9448  close(152)                        = -1 EBADF (Bad file descriptor)
9448  close(153)                        = -1 EBADF (Bad file descriptor)
9448  close(154)                        = -1 EBADF (Bad file descriptor)
9448  close(155)                        = -1 EBADF (Bad file descriptor)
9448  close(156)                        = -1 EBADF (Bad file descriptor)
9448  close(157)                        = -1 EBADF (Bad file descriptor)
9448  close(158)                        = -1 EBADF (Bad file descriptor)
9448  close(159)                        = -1 EBADF (Bad file descriptor)
9448  close(160)                        = -1 EBADF (Bad file descriptor)
9448  close(161)                        = -1 EBADF (Bad file descriptor)
9448  close(162)                        = -1 EBADF (Bad file descriptor)
9448  close(163)                        = -1 EBADF (Bad file descriptor)
9448  close(164)                        = -1 EBADF (Bad file descriptor)
9448  close(165)                        = -1 EBADF (Bad file descriptor)
9448  close(166)                        = -1 EBADF (Bad file descriptor)
9448  close(167)                        = -1 EBADF (Bad file descriptor)
9448  close(168)                        = -1 EBADF (Bad file descriptor)
9448  close(169)                        = -1 EBADF (Bad file descriptor)
9448  close(170)                        = -1 EBADF (Bad file descriptor)
9448  close(171)                        = -1 EBADF (Bad file descriptor)
9448  close(172)                        = -1 EBADF (Bad file descriptor)
9448  close(173)                        = -1 EBADF (Bad file descriptor)
9448  close(174)                        = -1 EBADF (Bad file descriptor)
9448  close(175)                        = -1 EBADF (Bad file descriptor)
9448  close(176)                        = -1 EBADF (Bad file descriptor)
9448  close(177)                        = -1 EBADF (Bad file descriptor)
9448  close(178)                        = -1 EBADF (Bad file descriptor)
9448  close(179)                        = -1 EBADF (Bad file descriptor)
9448  close(180)                        = -1 EBADF (Bad file descriptor)
9448  close(181)                        = -1 EBADF (Bad file descriptor)
9448  close(182)                        = -1 EBADF (Bad file descriptor)
9448  close(183)                        = -1 EBADF (Bad file descriptor)
9448  close(184)                        = -1 EBADF (Bad file descriptor)
9448  close(185)                        = -1 EBADF (Bad file descriptor)
9448  close(186)                        = -1 EBADF (Bad file descriptor)
9448  close(187)                        = -1 EBADF (Bad file descriptor)
9448  close(188)                        = -1 EBADF (Bad file descriptor)
9448  close(189)                        = -1 EBADF (Bad file descriptor)
9448  close(190)                        = -1 EBADF (Bad file descriptor)
9448  close(191)                        = -1 EBADF (Bad file descriptor)
9448  close(192)                        = -1 EBADF (Bad file descriptor)
9448  close(193)                        = -1 EBADF (Bad file descriptor)
9448  close(194)                        = -1 EBADF (Bad file descriptor)
9448  close(195)                        = -1 EBADF (Bad file descriptor)
9448  close(196)                        = -1 EBADF (Bad file descriptor)
9448  close(197)                        = -1 EBADF (Bad file descriptor)
9448  close(198)                        = -1 EBADF (Bad file descriptor)
9448  close(199)                        = -1 EBADF (Bad file descriptor)
9448  close(200)                        = -1 EBADF (Bad file descriptor)
9448  close(201)                        = -1 EBADF (Bad file descriptor)
9448  close(202)                        = -1 EBADF (Bad file descriptor)
9448  close(203)                        = -1 EBADF (Bad file descriptor)
9448  close(204)                        = -1 EBADF (Bad file descriptor)
9448  close(205)                        = -1 EBADF (Bad file descriptor)
9448  close(206)                        = -1 EBADF (Bad file descriptor)
9448  close(207)                        = -1 EBADF (Bad file descriptor)
9448  close(208)                        = -1 EBADF (Bad file descriptor)
9448  close(209)                        = -1 EBADF (Bad file descriptor)
9448  close(210)                        = -1 EBADF (Bad file descriptor)
9448  close(211)                        = -1 EBADF (Bad file descriptor)
9448  close(212)                        = -1 EBADF (Bad file descriptor)
9448  close(213)                        = -1 EBADF (Bad file descriptor)
9448  close(214)                        = -1 EBADF (Bad file descriptor)
9448  close(215)                        = -1 EBADF (Bad file descriptor)
9448  close(216)                        = -1 EBADF (Bad file descriptor)
9448  close(217)                        = -1 EBADF (Bad file descriptor)
9448  close(218)                        = -1 EBADF (Bad file descriptor)
9448  close(219)                        = -1 EBADF (Bad file descriptor)
9448  close(220)                        = -1 EBADF (Bad file descriptor)
9448  close(221)                        = -1 EBADF (Bad file descriptor)
9448  close(222)                        = -1 EBADF (Bad file descriptor)
9448  close(223)                        = -1 EBADF (Bad file descriptor)
9448  close(224)                        = -1 EBADF (Bad file descriptor)
9448  close(225)                        = -1 EBADF (Bad file descriptor)
9448  close(226)                        = -1 EBADF (Bad file descriptor)
9448  close(227)                        = -1 EBADF (Bad file descriptor)
9448  close(228)                        = -1 EBADF (Bad file descriptor)
9448  close(229)                        = -1 EBADF (Bad file descriptor)
9448  close(230)                        = -1 EBADF (Bad file descriptor)
9448  close(231)                        = -1 EBADF (Bad file descriptor)
9448  close(232)                        = -1 EBADF (Bad file descriptor)
9448  close(233)                        = -1 EBADF (Bad file descriptor)
9448  close(234)                        = -1 EBADF (Bad file descriptor)
9448  close(235)                        = -1 EBADF (Bad file descriptor)
9448  close(236)                        = -1 EBADF (Bad file descriptor)
9448  close(237)                        = -1 EBADF (Bad file descriptor)
9448  close(238)                        = -1 EBADF (Bad file descriptor)
9448  close(239)                        = -1 EBADF (Bad file descriptor)
9448  close(240)                        = -1 EBADF (Bad file descriptor)
9448  close(241)                        = -1 EBADF (Bad file descriptor)
9448  close(242)                        = -1 EBADF (Bad file descriptor)
9448  close(243)                        = -1 EBADF (Bad file descriptor)
9448  close(244)                        = -1 EBADF (Bad file descriptor)
9448  close(245)                        = -1 EBADF (Bad file descriptor)
9448  close(246)                        = -1 EBADF (Bad file descriptor)
9448  close(247)                        = -1 EBADF (Bad file descriptor)
9448  close(248)                        = -1 EBADF (Bad file descriptor)
9448  close(249)                        = -1 EBADF (Bad file descriptor)
9448  close(250)                        = -1 EBADF (Bad file descriptor)
9448  close(251)                        = -1 EBADF (Bad file descriptor)
9448  close(252)                        = -1 EBADF (Bad file descriptor)
9448  close(253)                        = -1 EBADF (Bad file descriptor)
9448  close(254)                        = -1 EBADF (Bad file descriptor)
9448  close(255)                        = -1 EBADF (Bad file descriptor)
9448  close(256)                        = -1 EBADF (Bad file descriptor)
9448  close(257)                        = -1 EBADF (Bad file descriptor)
9448  close(258)                        = -1 EBADF (Bad file descriptor)
9448  close(259)                        = -1 EBADF (Bad file descriptor)
9448  close(260)                        = -1 EBADF (Bad file descriptor)
9448  close(261)                        = -1 EBADF (Bad file descriptor)
9448  close(262)                        = -1 EBADF (Bad file descriptor)
9448  close(263)                        = -1 EBADF (Bad file descriptor)
9448  close(264)                        = -1 EBADF (Bad file descriptor)
9448  close(265)                        = -1 EBADF (Bad file descriptor)
9448  close(266)                        = -1 EBADF (Bad file descriptor)
9448  close(267)                        = -1 EBADF (Bad file descriptor)
9448  close(268)                        = -1 EBADF (Bad file descriptor)
9448  close(269)                        = -1 EBADF (Bad file descriptor)
9448  close(270)                        = -1 EBADF (Bad file descriptor)
9448  close(271)                        = -1 EBADF (Bad file descriptor)
9448  close(272)                        = -1 EBADF (Bad file descriptor)
9448  close(273)                        = -1 EBADF (Bad file descriptor)
9448  close(274)                        = -1 EBADF (Bad file descriptor)
9448  close(275)                        = -1 EBADF (Bad file descriptor)
9448  close(276)                        = -1 EBADF (Bad file descriptor)
9448  close(277)                        = -1 EBADF (Bad file descriptor)
9448  close(278)                        = -1 EBADF (Bad file descriptor)
9448  close(279)                        = -1 EBADF (Bad file descriptor)
9448  close(280)                        = -1 EBADF (Bad file descriptor)
9448  close(281)                        = -1 EBADF (Bad file descriptor)
9448  close(282)                        = -1 EBADF (Bad file descriptor)
9448  close(283)                        = -1 EBADF (Bad file descriptor)
9448  close(284)                        = -1 EBADF (Bad file descriptor)
9448  close(285)                        = -1 EBADF (Bad file descriptor)
9448  close(286)                        = -1 EBADF (Bad file descriptor)
9448  close(287)                        = -1 EBADF (Bad file descriptor)
9448  close(288)                        = -1 EBADF (Bad file descriptor)
9448  close(289)                        = -1 EBADF (Bad file descriptor)
9448  close(290)                        = -1 EBADF (Bad file descriptor)
9448  close(291)                        = -1 EBADF (Bad file descriptor)
9448  close(292)                        = -1 EBADF (Bad file descriptor)
9448  close(293)                        = -1 EBADF (Bad file descriptor)
9448  close(294)                        = -1 EBADF (Bad file descriptor)
9448  close(295)                        = -1 EBADF (Bad file descriptor)
9448  close(296)                        = -1 EBADF (Bad file descriptor)
9448  close(297)                        = -1 EBADF (Bad file descriptor)
9448  close(298)                        = -1 EBADF (Bad file descriptor)
9448  close(299)                        = -1 EBADF (Bad file descriptor)
9448  close(300)                        = -1 EBADF (Bad file descriptor)
9448  close(301)                        = -1 EBADF (Bad file descriptor)
9448  close(302)                        = -1 EBADF (Bad file descriptor)
9448  close(303)                        = -1 EBADF (Bad file descriptor)
9448  close(304)                        = -1 EBADF (Bad file descriptor)
9448  close(305)                        = -1 EBADF (Bad file descriptor)
9448  close(306)                        = -1 EBADF (Bad file descriptor)
9448  close(307)                        = -1 EBADF (Bad file descriptor)
9448  close(308)                        = -1 EBADF (Bad file descriptor)
9448  close(309)                        = -1 EBADF (Bad file descriptor)
9448  close(310)                        = -1 EBADF (Bad file descriptor)
9448  close(311)                        = -1 EBADF (Bad file descriptor)
9448  close(312)                        = -1 EBADF (Bad file descriptor)
9448  close(313)                        = -1 EBADF (Bad file descriptor)
9448  close(314)                        = -1 EBADF (Bad file descriptor)
9448  close(315)                        = -1 EBADF (Bad file descriptor)
9448  close(316)                        = -1 EBADF (Bad file descriptor)
9448  close(317)                        = -1 EBADF (Bad file descriptor)
9448  close(318)                        = -1 EBADF (Bad file descriptor)
9448  close(319)                        = -1 EBADF (Bad file descriptor)
9448  close(320)                        = -1 EBADF (Bad file descriptor)
9448  close(321)                        = -1 EBADF (Bad file descriptor)
9448  close(322)                        = -1 EBADF (Bad file descriptor)
9448  close(323)                        = -1 EBADF (Bad file descriptor)
9448  close(324)                        = -1 EBADF (Bad file descriptor)
9448  close(325)                        = -1 EBADF (Bad file descriptor)
9448  close(326)                        = -1 EBADF (Bad file descriptor)
9448  close(327)                        = -1 EBADF (Bad file descriptor)
9448  close(328)                        = -1 EBADF (Bad file descriptor)
9448  close(329)                        = -1 EBADF (Bad file descriptor)
9448  close(330)                        = -1 EBADF (Bad file descriptor)
9448  close(331)                        = -1 EBADF (Bad file descriptor)
9448  close(332)                        = -1 EBADF (Bad file descriptor)
9448  close(333)                        = -1 EBADF (Bad file descriptor)
9448  close(334)                        = -1 EBADF (Bad file descriptor)
9448  close(335)                        = -1 EBADF (Bad file descriptor)
9448  close(336)                        = -1 EBADF (Bad file descriptor)
9448  close(337)                        = -1 EBADF (Bad file descriptor)
9448  close(338)                        = -1 EBADF (Bad file descriptor)
9448  close(339)                        = -1 EBADF (Bad file descriptor)
9448  close(340)                        = -1 EBADF (Bad file descriptor)
9448  close(341)                        = -1 EBADF (Bad file descriptor)
9448  close(342)                        = -1 EBADF (Bad file descriptor)
9448  close(343)                        = -1 EBADF (Bad file descriptor)
9448  close(344)                        = -1 EBADF (Bad file descriptor)
9448  close(345)                        = -1 EBADF (Bad file descriptor)
9448  close(346)                        = -1 EBADF (Bad file descriptor)
9448  close(347)                        = -1 EBADF (Bad file descriptor)
9448  close(348)                        = -1 EBADF (Bad file descriptor)
9448  close(349)                        = -1 EBADF (Bad file descriptor)
9448  close(350)                        = -1 EBADF (Bad file descriptor)
9448  close(351)                        = -1 EBADF (Bad file descriptor)
9448  close(352)                        = -1 EBADF (Bad file descriptor)
9448  close(353)                        = -1 EBADF (Bad file descriptor)
9448  close(354)                        = -1 EBADF (Bad file descriptor)
9448  close(355)                        = -1 EBADF (Bad file descriptor)
9448  close(356)                        = -1 EBADF (Bad file descriptor)
9448  close(357)                        = -1 EBADF (Bad file descriptor)
9448  close(358)                        = -1 EBADF (Bad file descriptor)
9448  close(359)                        = -1 EBADF (Bad file descriptor)
9448  close(360)                        = -1 EBADF (Bad file descriptor)
9448  close(361)                        = -1 EBADF (Bad file descriptor)
9448  close(362)                        = -1 EBADF (Bad file descriptor)
9448  close(363)                        = -1 EBADF (Bad file descriptor)
9448  close(364)                        = -1 EBADF (Bad file descriptor)
9448  close(365)                        = -1 EBADF (Bad file descriptor)
9448  close(366)                        = -1 EBADF (Bad file descriptor)
9448  close(367)                        = -1 EBADF (Bad file descriptor)
9448  close(368)                        = -1 EBADF (Bad file descriptor)
9448  close(369)                        = -1 EBADF (Bad file descriptor)
9448  close(370)                        = -1 EBADF (Bad file descriptor)
9448  close(371)                        = -1 EBADF (Bad file descriptor)
9448  close(372)                        = -1 EBADF (Bad file descriptor)
9448  close(373)                        = -1 EBADF (Bad file descriptor)
9448  close(374)                        = -1 EBADF (Bad file descriptor)
9448  close(375)                        = -1 EBADF (Bad file descriptor)
9448  close(376)                        = -1 EBADF (Bad file descriptor)
9448  close(377)                        = -1 EBADF (Bad file descriptor)
9448  close(378)                        = -1 EBADF (Bad file descriptor)
9448  close(379)                        = -1 EBADF (Bad file descriptor)
9448  close(380)                        = -1 EBADF (Bad file descriptor)
9448  close(381)                        = -1 EBADF (Bad file descriptor)
9448  close(382)                        = -1 EBADF (Bad file descriptor)
9448  close(383)                        = -1 EBADF (Bad file descriptor)
9448  close(384)                        = -1 EBADF (Bad file descriptor)
9448  close(385)                        = -1 EBADF (Bad file descriptor)
9448  close(386)                        = -1 EBADF (Bad file descriptor)
9448  close(387)                        = -1 EBADF (Bad file descriptor)
9448  close(388)                        = -1 EBADF (Bad file descriptor)
9448  close(389)                        = -1 EBADF (Bad file descriptor)
9448  close(390)                        = -1 EBADF (Bad file descriptor)
9448  close(391)                        = -1 EBADF (Bad file descriptor)
9448  close(392)                        = -1 EBADF (Bad file descriptor)
9448  close(393)                        = -1 EBADF (Bad file descriptor)
9448  close(394)                        = -1 EBADF (Bad file descriptor)
9448  close(395)                        = -1 EBADF (Bad file descriptor)
9448  close(396)                        = -1 EBADF (Bad file descriptor)
9448  close(397)                        = -1 EBADF (Bad file descriptor)
9448  close(398)                        = -1 EBADF (Bad file descriptor)
9448  close(399)                        = -1 EBADF (Bad file descriptor)
9448  close(400)                        = -1 EBADF (Bad file descriptor)
9448  close(401)                        = -1 EBADF (Bad file descriptor)
9448  close(402)                        = -1 EBADF (Bad file descriptor)
9448  close(403)                        = -1 EBADF (Bad file descriptor)
9448  close(404)                        = -1 EBADF (Bad file descriptor)
9448  close(405)                        = -1 EBADF (Bad file descriptor)
9448  close(406)                        = -1 EBADF (Bad file descriptor)
9448  close(407)                        = -1 EBADF (Bad file descriptor)
9448  close(408)                        = -1 EBADF (Bad file descriptor)
9448  close(409)                        = -1 EBADF (Bad file descriptor)
9448  close(410)                        = -1 EBADF (Bad file descriptor)
9448  close(411)                        = -1 EBADF (Bad file descriptor)
9448  close(412)                        = -1 EBADF (Bad file descriptor)
9448  close(413)                        = -1 EBADF (Bad file descriptor)
9448  close(414)                        = -1 EBADF (Bad file descriptor)
9448  close(415)                        = -1 EBADF (Bad file descriptor)
9448  close(416)                        = -1 EBADF (Bad file descriptor)
9448  close(417)                        = -1 EBADF (Bad file descriptor)
9448  close(418)                        = -1 EBADF (Bad file descriptor)
9448  close(419)                        = -1 EBADF (Bad file descriptor)
9448  close(420)                        = -1 EBADF (Bad file descriptor)
9448  close(421)                        = -1 EBADF (Bad file descriptor)
9448  close(422)                        = -1 EBADF (Bad file descriptor)
9448  close(423)                        = -1 EBADF (Bad file descriptor)
9448  close(424)                        = -1 EBADF (Bad file descriptor)
9448  close(425)                        = -1 EBADF (Bad file descriptor)
9448  close(426)                        = -1 EBADF (Bad file descriptor)
9448  close(427)                        = -1 EBADF (Bad file descriptor)
9448  close(428)                        = -1 EBADF (Bad file descriptor)
9448  close(429)                        = -1 EBADF (Bad file descriptor)
9448  close(430)                        = -1 EBADF (Bad file descriptor)
9448  close(431)                        = -1 EBADF (Bad file descriptor)
9448  close(432)                        = -1 EBADF (Bad file descriptor)
9448  close(433)                        = -1 EBADF (Bad file descriptor)
9448  close(434)                        = -1 EBADF (Bad file descriptor)
9448  close(435)                        = -1 EBADF (Bad file descriptor)
9448  close(436)                        = -1 EBADF (Bad file descriptor)
9448  close(437)                        = -1 EBADF (Bad file descriptor)
9448  close(438)                        = -1 EBADF (Bad file descriptor)
9448  close(439)                        = -1 EBADF (Bad file descriptor)
9448  close(440)                        = -1 EBADF (Bad file descriptor)
9448  close(441)                        = -1 EBADF (Bad file descriptor)
9448  close(442)                        = -1 EBADF (Bad file descriptor)
9448  close(443)                        = -1 EBADF (Bad file descriptor)
9448  close(444)                        = -1 EBADF (Bad file descriptor)
9448  close(445)                        = -1 EBADF (Bad file descriptor)
9448  close(446)                        = -1 EBADF (Bad file descriptor)
9448  close(447)                        = -1 EBADF (Bad file descriptor)
9448  close(448)                        = -1 EBADF (Bad file descriptor)
9448  close(449)                        = -1 EBADF (Bad file descriptor)
9448  close(450)                        = -1 EBADF (Bad file descriptor)
9448  close(451)                        = -1 EBADF (Bad file descriptor)
9448  close(452)                        = -1 EBADF (Bad file descriptor)
9448  close(453)                        = -1 EBADF (Bad file descriptor)
9448  close(454)                        = -1 EBADF (Bad file descriptor)
9448  close(455)                        = -1 EBADF (Bad file descriptor)
9448  close(456)                        = -1 EBADF (Bad file descriptor)
9448  close(457)                        = -1 EBADF (Bad file descriptor)
9448  close(458)                        = -1 EBADF (Bad file descriptor)
9448  close(459)                        = -1 EBADF (Bad file descriptor)
9448  close(460)                        = -1 EBADF (Bad file descriptor)
9448  close(461)                        = -1 EBADF (Bad file descriptor)
9448  close(462)                        = -1 EBADF (Bad file descriptor)
9448  close(463)                        = -1 EBADF (Bad file descriptor)
9448  close(464)                        = -1 EBADF (Bad file descriptor)
9448  close(465)                        = -1 EBADF (Bad file descriptor)
9448  close(466)                        = -1 EBADF (Bad file descriptor)
9448  close(467)                        = -1 EBADF (Bad file descriptor)
9448  close(468)                        = -1 EBADF (Bad file descriptor)
9448  close(469)                        = -1 EBADF (Bad file descriptor)
9448  close(470)                        = -1 EBADF (Bad file descriptor)
9448  close(471)                        = -1 EBADF (Bad file descriptor)
9448  close(472)                        = -1 EBADF (Bad file descriptor)
9448  close(473)                        = -1 EBADF (Bad file descriptor)
9448  close(474)                        = -1 EBADF (Bad file descriptor)
9448  close(475)                        = -1 EBADF (Bad file descriptor)
9448  close(476)                        = -1 EBADF (Bad file descriptor)
9448  close(477)                        = -1 EBADF (Bad file descriptor)
9448  close(478)                        = -1 EBADF (Bad file descriptor)
9448  close(479)                        = -1 EBADF (Bad file descriptor)
9448  close(480)                        = -1 EBADF (Bad file descriptor)
9448  close(481)                        = -1 EBADF (Bad file descriptor)
9448  close(482)                        = -1 EBADF (Bad file descriptor)
9448  close(483)                        = -1 EBADF (Bad file descriptor)
9448  close(484)                        = -1 EBADF (Bad file descriptor)
9448  close(485)                        = -1 EBADF (Bad file descriptor)
9448  close(486)                        = -1 EBADF (Bad file descriptor)
9448  close(487)                        = -1 EBADF (Bad file descriptor)
9448  close(488)                        = -1 EBADF (Bad file descriptor)
9448  close(489)                        = -1 EBADF (Bad file descriptor)
9448  close(490)                        = -1 EBADF (Bad file descriptor)
9448  close(491)                        = -1 EBADF (Bad file descriptor)
9448  close(492)                        = -1 EBADF (Bad file descriptor)
9448  close(493)                        = -1 EBADF (Bad file descriptor)
9448  close(494)                        = -1 EBADF (Bad file descriptor)
9448  close(495)                        = -1 EBADF (Bad file descriptor)
9448  close(496)                        = -1 EBADF (Bad file descriptor)
9448  close(497)                        = -1 EBADF (Bad file descriptor)
9448  close(498)                        = -1 EBADF (Bad file descriptor)
9448  close(499)                        = -1 EBADF (Bad file descriptor)
9448  close(500)                        = -1 EBADF (Bad file descriptor)
9448  close(501)                        = -1 EBADF (Bad file descriptor)
9448  close(502)                        = -1 EBADF (Bad file descriptor)
9448  close(503)                        = -1 EBADF (Bad file descriptor)
9448  close(504)                        = -1 EBADF (Bad file descriptor)
9448  close(505)                        = -1 EBADF (Bad file descriptor)
9448  close(506)                        = -1 EBADF (Bad file descriptor)
9448  close(507)                        = -1 EBADF (Bad file descriptor)
9448  close(508)                        = -1 EBADF (Bad file descriptor)
9448  close(509)                        = -1 EBADF (Bad file descriptor)
9448  close(510)                        = -1 EBADF (Bad file descriptor)
9448  close(511)                        = -1 EBADF (Bad file descriptor)
9448  close(512)                        = -1 EBADF (Bad file descriptor)
9448  close(513)                        = -1 EBADF (Bad file descriptor)
9448  close(514)                        = -1 EBADF (Bad file descriptor)
9448  close(515)                        = -1 EBADF (Bad file descriptor)
9448  close(516)                        = -1 EBADF (Bad file descriptor)
9448  close(517)                        = -1 EBADF (Bad file descriptor)
9448  close(518)                        = -1 EBADF (Bad file descriptor)
9448  close(519)                        = -1 EBADF (Bad file descriptor)
9448  close(520)                        = -1 EBADF (Bad file descriptor)
9448  close(521)                        = -1 EBADF (Bad file descriptor)
9448  close(522)                        = -1 EBADF (Bad file descriptor)
9448  close(523)                        = -1 EBADF (Bad file descriptor)
9448  close(524)                        = -1 EBADF (Bad file descriptor)
9448  close(525)                        = -1 EBADF (Bad file descriptor)
9448  close(526)                        = -1 EBADF (Bad file descriptor)
9448  close(527)                        = -1 EBADF (Bad file descriptor)
9448  close(528)                        = -1 EBADF (Bad file descriptor)
9448  close(529)                        = -1 EBADF (Bad file descriptor)
9448  close(530)                        = -1 EBADF (Bad file descriptor)
9448  close(531)                        = -1 EBADF (Bad file descriptor)
9448  close(532)                        = -1 EBADF (Bad file descriptor)
9448  close(533)                        = -1 EBADF (Bad file descriptor)
9448  close(534)                        = -1 EBADF (Bad file descriptor)
9448  close(535)                        = -1 EBADF (Bad file descriptor)
9448  close(536)                        = -1 EBADF (Bad file descriptor)
9448  close(537)                        = -1 EBADF (Bad file descriptor)
9448  close(538)                        = -1 EBADF (Bad file descriptor)
9448  close(539)                        = -1 EBADF (Bad file descriptor)
9448  close(540)                        = -1 EBADF (Bad file descriptor)
9448  close(541)                        = -1 EBADF (Bad file descriptor)
9448  close(542)                        = -1 EBADF (Bad file descriptor)
9448  close(543)                        = -1 EBADF (Bad file descriptor)
9448  close(544)                        = -1 EBADF (Bad file descriptor)
9448  close(545)                        = -1 EBADF (Bad file descriptor)
9448  close(546)                        = -1 EBADF (Bad file descriptor)
9448  close(547)                        = -1 EBADF (Bad file descriptor)
9448  close(548)                        = -1 EBADF (Bad file descriptor)
9448  close(549)                        = -1 EBADF (Bad file descriptor)
9448  close(550)                        = -1 EBADF (Bad file descriptor)
9448  close(551)                        = -1 EBADF (Bad file descriptor)
9448  close(552)                        = -1 EBADF (Bad file descriptor)
9448  close(553)                        = -1 EBADF (Bad file descriptor)
9448  close(554)                        = -1 EBADF (Bad file descriptor)
9448  close(555)                        = -1 EBADF (Bad file descriptor)
9448  close(556)                        = -1 EBADF (Bad file descriptor)
9448  close(557)                        = -1 EBADF (Bad file descriptor)
9448  close(558)                        = -1 EBADF (Bad file descriptor)
9448  close(559)                        = -1 EBADF (Bad file descriptor)
9448  close(560)                        = -1 EBADF (Bad file descriptor)
9448  close(561)                        = -1 EBADF (Bad file descriptor)
9448  close(562)                        = -1 EBADF (Bad file descriptor)
9448  close(563)                        = -1 EBADF (Bad file descriptor)
9448  close(564)                        = -1 EBADF (Bad file descriptor)
9448  close(565)                        = -1 EBADF (Bad file descriptor)
9448  close(566)                        = -1 EBADF (Bad file descriptor)
9448  close(567)                        = -1 EBADF (Bad file descriptor)
9448  close(568)                        = -1 EBADF (Bad file descriptor)
9448  close(569)                        = -1 EBADF (Bad file descriptor)
9448  close(570)                        = -1 EBADF (Bad file descriptor)
9448  close(571)                        = -1 EBADF (Bad file descriptor)
9448  close(572)                        = -1 EBADF (Bad file descriptor)
9448  close(573)                        = -1 EBADF (Bad file descriptor)
9448  close(574)                        = -1 EBADF (Bad file descriptor)
9448  close(575)                        = -1 EBADF (Bad file descriptor)
9448  close(576)                        = -1 EBADF (Bad file descriptor)
9448  close(577)                        = -1 EBADF (Bad file descriptor)
9448  close(578)                        = -1 EBADF (Bad file descriptor)
9448  close(579)                        = -1 EBADF (Bad file descriptor)
9448  close(580)                        = -1 EBADF (Bad file descriptor)
9448  close(581)                        = -1 EBADF (Bad file descriptor)
9448  close(582)                        = -1 EBADF (Bad file descriptor)
9448  close(583)                        = -1 EBADF (Bad file descriptor)
9448  close(584)                        = -1 EBADF (Bad file descriptor)
9448  close(585)                        = -1 EBADF (Bad file descriptor)
9448  close(586)                        = -1 EBADF (Bad file descriptor)
9448  close(587)                        = -1 EBADF (Bad file descriptor)
9448  close(588)                        = -1 EBADF (Bad file descriptor)
9448  close(589)                        = -1 EBADF (Bad file descriptor)
9448  close(590)                        = -1 EBADF (Bad file descriptor)
9448  close(591)                        = -1 EBADF (Bad file descriptor)
9448  close(592)                        = -1 EBADF (Bad file descriptor)
9448  close(593)                        = -1 EBADF (Bad file descriptor)
9448  close(594)                        = -1 EBADF (Bad file descriptor)
9448  close(595)                        = -1 EBADF (Bad file descriptor)
9448  close(596)                        = -1 EBADF (Bad file descriptor)
9448  close(597)                        = -1 EBADF (Bad file descriptor)
9448  close(598)                        = -1 EBADF (Bad file descriptor)
9448  close(599)                        = -1 EBADF (Bad file descriptor)
9448  close(600)                        = -1 EBADF (Bad file descriptor)
9448  close(601)                        = -1 EBADF (Bad file descriptor)
9448  close(602)                        = -1 EBADF (Bad file descriptor)
9448  close(603)                        = -1 EBADF (Bad file descriptor)
9448  close(604)                        = -1 EBADF (Bad file descriptor)
9448  close(605)                        = -1 EBADF (Bad file descriptor)
9448  close(606)                        = -1 EBADF (Bad file descriptor)
9448  close(607)                        = -1 EBADF (Bad file descriptor)
9448  close(608)                        = -1 EBADF (Bad file descriptor)
9448  close(609)                        = -1 EBADF (Bad file descriptor)
9448  close(610)                        = -1 EBADF (Bad file descriptor)
9448  close(611)                        = -1 EBADF (Bad file descriptor)
9448  close(612)                        = -1 EBADF (Bad file descriptor)
9448  close(613)                        = -1 EBADF (Bad file descriptor)
9448  close(614)                        = -1 EBADF (Bad file descriptor)
9448  close(615)                        = -1 EBADF (Bad file descriptor)
9448  close(616)                        = -1 EBADF (Bad file descriptor)
9448  close(617)                        = -1 EBADF (Bad file descriptor)
9448  close(618)                        = -1 EBADF (Bad file descriptor)
9448  close(619)                        = -1 EBADF (Bad file descriptor)
9448  close(620)                        = -1 EBADF (Bad file descriptor)
9448  close(621)                        = -1 EBADF (Bad file descriptor)
9448  close(622)                        = -1 EBADF (Bad file descriptor)
9448  close(623)                        = -1 EBADF (Bad file descriptor)
9448  close(624)                        = -1 EBADF (Bad file descriptor)
9448  close(625)                        = -1 EBADF (Bad file descriptor)
9448  close(626)                        = -1 EBADF (Bad file descriptor)
9448  close(627)                        = -1 EBADF (Bad file descriptor)
9448  close(628)                        = -1 EBADF (Bad file descriptor)
9448  close(629)                        = -1 EBADF (Bad file descriptor)
9448  close(630)                        = -1 EBADF (Bad file descriptor)
9448  close(631)                        = -1 EBADF (Bad file descriptor)
9448  close(632)                        = -1 EBADF (Bad file descriptor)
9448  close(633)                        = -1 EBADF (Bad file descriptor)
9448  close(634)                        = -1 EBADF (Bad file descriptor)
9448  close(635)                        = -1 EBADF (Bad file descriptor)
9448  close(636)                        = -1 EBADF (Bad file descriptor)
9448  close(637)                        = -1 EBADF (Bad file descriptor)
9448  close(638)                        = -1 EBADF (Bad file descriptor)
9448  close(639)                        = -1 EBADF (Bad file descriptor)
9448  close(640)                        = -1 EBADF (Bad file descriptor)
9448  close(641)                        = -1 EBADF (Bad file descriptor)
9448  close(642)                        = -1 EBADF (Bad file descriptor)
9448  close(643)                        = -1 EBADF (Bad file descriptor)
9448  close(644)                        = -1 EBADF (Bad file descriptor)
9448  close(645)                        = -1 EBADF (Bad file descriptor)
9448  close(646)                        = -1 EBADF (Bad file descriptor)
9448  close(647)                        = -1 EBADF (Bad file descriptor)
9448  close(648)                        = -1 EBADF (Bad file descriptor)
9448  close(649)                        = -1 EBADF (Bad file descriptor)
9448  close(650)                        = -1 EBADF (Bad file descriptor)
9448  close(651)                        = -1 EBADF (Bad file descriptor)
9448  close(652)                        = -1 EBADF (Bad file descriptor)
9448  close(653)                        = -1 EBADF (Bad file descriptor)
9448  close(654)                        = -1 EBADF (Bad file descriptor)
9448  close(655)                        = -1 EBADF (Bad file descriptor)
9448  close(656)                        = -1 EBADF (Bad file descriptor)
9448  close(657)                        = -1 EBADF (Bad file descriptor)
9448  close(658)                        = -1 EBADF (Bad file descriptor)
9448  close(659)                        = -1 EBADF (Bad file descriptor)
9448  close(660)                        = -1 EBADF (Bad file descriptor)
9448  close(661)                        = -1 EBADF (Bad file descriptor)
9448  close(662)                        = -1 EBADF (Bad file descriptor)
9448  close(663)                        = -1 EBADF (Bad file descriptor)
9448  close(664)                        = -1 EBADF (Bad file descriptor)
9448  close(665)                        = -1 EBADF (Bad file descriptor)
9448  close(666)                        = -1 EBADF (Bad file descriptor)
9448  close(667)                        = -1 EBADF (Bad file descriptor)
9448  close(668)                        = -1 EBADF (Bad file descriptor)
9448  close(669)                        = -1 EBADF (Bad file descriptor)
9448  close(670)                        = -1 EBADF (Bad file descriptor)
9448  close(671)                        = -1 EBADF (Bad file descriptor)
9448  close(672)                        = -1 EBADF (Bad file descriptor)
9448  close(673)                        = -1 EBADF (Bad file descriptor)
9448  close(674)                        = -1 EBADF (Bad file descriptor)
9448  close(675)                        = -1 EBADF (Bad file descriptor)
9448  close(676)                        = -1 EBADF (Bad file descriptor)
9448  close(677)                        = -1 EBADF (Bad file descriptor)
9448  close(678)                        = -1 EBADF (Bad file descriptor)
9448  close(679)                        = -1 EBADF (Bad file descriptor)
9448  close(680)                        = -1 EBADF (Bad file descriptor)
9448  close(681)                        = -1 EBADF (Bad file descriptor)
9448  close(682)                        = -1 EBADF (Bad file descriptor)
9448  close(683)                        = -1 EBADF (Bad file descriptor)
9448  close(684)                        = -1 EBADF (Bad file descriptor)
9448  close(685)                        = -1 EBADF (Bad file descriptor)
9448  close(686)                        = -1 EBADF (Bad file descriptor)
9448  close(687)                        = -1 EBADF (Bad file descriptor)
9448  close(688)                        = -1 EBADF (Bad file descriptor)
9448  close(689)                        = -1 EBADF (Bad file descriptor)
9448  close(690)                        = -1 EBADF (Bad file descriptor)
9448  close(691)                        = -1 EBADF (Bad file descriptor)
9448  close(692)                        = -1 EBADF (Bad file descriptor)
9448  close(693)                        = -1 EBADF (Bad file descriptor)
9448  close(694)                        = -1 EBADF (Bad file descriptor)
9448  close(695)                        = -1 EBADF (Bad file descriptor)
9448  close(696)                        = -1 EBADF (Bad file descriptor)
9448  close(697)                        = -1 EBADF (Bad file descriptor)
9448  close(698)                        = -1 EBADF (Bad file descriptor)
9448  close(699)                        = -1 EBADF (Bad file descriptor)
9448  close(700)                        = -1 EBADF (Bad file descriptor)
9448  close(701)                        = -1 EBADF (Bad file descriptor)
9448  close(702)                        = -1 EBADF (Bad file descriptor)
9448  close(703)                        = -1 EBADF (Bad file descriptor)
9448  close(704)                        = -1 EBADF (Bad file descriptor)
9448  close(705)                        = -1 EBADF (Bad file descriptor)
9448  close(706)                        = -1 EBADF (Bad file descriptor)
9448  close(707)                        = -1 EBADF (Bad file descriptor)
9448  close(708)                        = -1 EBADF (Bad file descriptor)
9448  close(709)                        = -1 EBADF (Bad file descriptor)
9448  close(710)                        = -1 EBADF (Bad file descriptor)
9448  close(711)                        = -1 EBADF (Bad file descriptor)
9448  close(712)                        = -1 EBADF (Bad file descriptor)
9448  close(713)                        = -1 EBADF (Bad file descriptor)
9448  close(714)                        = -1 EBADF (Bad file descriptor)
9448  close(715)                        = -1 EBADF (Bad file descriptor)
9448  close(716)                        = -1 EBADF (Bad file descriptor)
9448  close(717)                        = -1 EBADF (Bad file descriptor)
9448  close(718)                        = -1 EBADF (Bad file descriptor)
9448  close(719)                        = -1 EBADF (Bad file descriptor)
9448  close(720)                        = -1 EBADF (Bad file descriptor)
9448  close(721)                        = -1 EBADF (Bad file descriptor)
9448  close(722)                        = -1 EBADF (Bad file descriptor)
9448  close(723)                        = -1 EBADF (Bad file descriptor)
9448  close(724)                        = -1 EBADF (Bad file descriptor)
9448  close(725)                        = -1 EBADF (Bad file descriptor)
9448  close(726)                        = -1 EBADF (Bad file descriptor)
9448  close(727)                        = -1 EBADF (Bad file descriptor)
9448  close(728)                        = -1 EBADF (Bad file descriptor)
9448  close(729)                        = -1 EBADF (Bad file descriptor)
9448  close(730)                        = -1 EBADF (Bad file descriptor)
9448  close(731)                        = -1 EBADF (Bad file descriptor)
9448  close(732)                        = -1 EBADF (Bad file descriptor)
9448  close(733)                        = -1 EBADF (Bad file descriptor)
9448  close(734)                        = -1 EBADF (Bad file descriptor)
9448  close(735)                        = -1 EBADF (Bad file descriptor)
9448  close(736)                        = -1 EBADF (Bad file descriptor)
9448  close(737)                        = -1 EBADF (Bad file descriptor)
9448  close(738)                        = -1 EBADF (Bad file descriptor)
9448  close(739)                        = -1 EBADF (Bad file descriptor)
9448  close(740)                        = -1 EBADF (Bad file descriptor)
9448  close(741)                        = -1 EBADF (Bad file descriptor)
9448  close(742)                        = -1 EBADF (Bad file descriptor)
9448  close(743)                        = -1 EBADF (Bad file descriptor)
9448  close(744)                        = -1 EBADF (Bad file descriptor)
9448  close(745)                        = -1 EBADF (Bad file descriptor)
9448  close(746)                        = -1 EBADF (Bad file descriptor)
9448  close(747)                        = -1 EBADF (Bad file descriptor)
9448  close(748)                        = -1 EBADF (Bad file descriptor)
9448  close(749)                        = -1 EBADF (Bad file descriptor)
9448  close(750)                        = -1 EBADF (Bad file descriptor)
9448  close(751)                        = -1 EBADF (Bad file descriptor)
9448  close(752)                        = -1 EBADF (Bad file descriptor)
9448  close(753)                        = -1 EBADF (Bad file descriptor)
9448  close(754)                        = -1 EBADF (Bad file descriptor)
9448  close(755)                        = -1 EBADF (Bad file descriptor)
9448  close(756)                        = -1 EBADF (Bad file descriptor)
9448  close(757)                        = -1 EBADF (Bad file descriptor)
9448  close(758)                        = -1 EBADF (Bad file descriptor)
9448  close(759)                        = -1 EBADF (Bad file descriptor)
9448  close(760)                        = -1 EBADF (Bad file descriptor)
9448  close(761)                        = -1 EBADF (Bad file descriptor)
9448  close(762)                        = -1 EBADF (Bad file descriptor)
9448  close(763)                        = -1 EBADF (Bad file descriptor)
9448  close(764)                        = -1 EBADF (Bad file descriptor)
9448  close(765)                        = -1 EBADF (Bad file descriptor)
9448  close(766)                        = -1 EBADF (Bad file descriptor)
9448  close(767)                        = -1 EBADF (Bad file descriptor)
9448  close(768)                        = -1 EBADF (Bad file descriptor)
9448  close(769)                        = -1 EBADF (Bad file descriptor)
9448  close(770)                        = -1 EBADF (Bad file descriptor)
9448  close(771)                        = -1 EBADF (Bad file descriptor)
9448  close(772)                        = -1 EBADF (Bad file descriptor)
9448  close(773)                        = -1 EBADF (Bad file descriptor)
9448  close(774)                        = -1 EBADF (Bad file descriptor)
9448  close(775)                        = -1 EBADF (Bad file descriptor)
9448  close(776)                        = -1 EBADF (Bad file descriptor)
9448  close(777)                        = -1 EBADF (Bad file descriptor)
9448  close(778)                        = -1 EBADF (Bad file descriptor)
9448  close(779)                        = -1 EBADF (Bad file descriptor)
9448  close(780)                        = -1 EBADF (Bad file descriptor)
9448  close(781)                        = -1 EBADF (Bad file descriptor)
9448  close(782)                        = -1 EBADF (Bad file descriptor)
9448  close(783)                        = -1 EBADF (Bad file descriptor)
9448  close(784)                        = -1 EBADF (Bad file descriptor)
9448  close(785)                        = -1 EBADF (Bad file descriptor)
9448  close(786)                        = -1 EBADF (Bad file descriptor)
9448  close(787)                        = -1 EBADF (Bad file descriptor)
9448  close(788)                        = -1 EBADF (Bad file descriptor)
9448  close(789)                        = -1 EBADF (Bad file descriptor)
9448  close(790)                        = -1 EBADF (Bad file descriptor)
9448  close(791)                        = -1 EBADF (Bad file descriptor)
9448  close(792)                        = -1 EBADF (Bad file descriptor)
9448  close(793)                        = -1 EBADF (Bad file descriptor)
9448  close(794)                        = -1 EBADF (Bad file descriptor)
9448  close(795)                        = -1 EBADF (Bad file descriptor)
9448  close(796)                        = -1 EBADF (Bad file descriptor)
9448  close(797)                        = -1 EBADF (Bad file descriptor)
9448  close(798)                        = -1 EBADF (Bad file descriptor)
9448  close(799)                        = -1 EBADF (Bad file descriptor)
9448  close(800)                        = -1 EBADF (Bad file descriptor)
9448  close(801)                        = -1 EBADF (Bad file descriptor)
9448  close(802)                        = -1 EBADF (Bad file descriptor)
9448  close(803)                        = -1 EBADF (Bad file descriptor)
9448  close(804)                        = -1 EBADF (Bad file descriptor)
9448  close(805)                        = -1 EBADF (Bad file descriptor)
9448  close(806)                        = -1 EBADF (Bad file descriptor)
9448  close(807)                        = -1 EBADF (Bad file descriptor)
9448  close(808)                        = -1 EBADF (Bad file descriptor)
9448  close(809)                        = -1 EBADF (Bad file descriptor)
9448  close(810)                        = -1 EBADF (Bad file descriptor)
9448  close(811)                        = -1 EBADF (Bad file descriptor)
9448  close(812)                        = -1 EBADF (Bad file descriptor)
9448  close(813)                        = -1 EBADF (Bad file descriptor)
9448  close(814)                        = -1 EBADF (Bad file descriptor)
9448  close(815)                        = -1 EBADF (Bad file descriptor)
9448  close(816)                        = -1 EBADF (Bad file descriptor)
9448  close(817)                        = -1 EBADF (Bad file descriptor)
9448  close(818)                        = -1 EBADF (Bad file descriptor)
9448  close(819)                        = -1 EBADF (Bad file descriptor)
9448  close(820)                        = -1 EBADF (Bad file descriptor)
9448  close(821)                        = -1 EBADF (Bad file descriptor)
9448  close(822)                        = -1 EBADF (Bad file descriptor)
9448  close(823)                        = -1 EBADF (Bad file descriptor)
9448  close(824)                        = -1 EBADF (Bad file descriptor)
9448  close(825)                        = -1 EBADF (Bad file descriptor)
9448  close(826)                        = -1 EBADF (Bad file descriptor)
9448  close(827)                        = -1 EBADF (Bad file descriptor)
9448  close(828)                        = -1 EBADF (Bad file descriptor)
9448  close(829)                        = -1 EBADF (Bad file descriptor)
9448  close(830)                        = -1 EBADF (Bad file descriptor)
9448  close(831)                        = -1 EBADF (Bad file descriptor)
9448  close(832)                        = -1 EBADF (Bad file descriptor)
9448  close(833)                        = -1 EBADF (Bad file descriptor)
9448  close(834)                        = -1 EBADF (Bad file descriptor)
9448  close(835)                        = -1 EBADF (Bad file descriptor)
9448  close(836)                        = -1 EBADF (Bad file descriptor)
9448  close(837)                        = -1 EBADF (Bad file descriptor)
9448  close(838)                        = -1 EBADF (Bad file descriptor)
9448  close(839)                        = -1 EBADF (Bad file descriptor)
9448  close(840)                        = -1 EBADF (Bad file descriptor)
9448  close(841)                        = -1 EBADF (Bad file descriptor)
9448  close(842)                        = -1 EBADF (Bad file descriptor)
9448  close(843)                        = -1 EBADF (Bad file descriptor)
9448  close(844)                        = -1 EBADF (Bad file descriptor)
9448  close(845)                        = -1 EBADF (Bad file descriptor)
9448  close(846)                        = -1 EBADF (Bad file descriptor)
9448  close(847)                        = -1 EBADF (Bad file descriptor)
9448  close(848)                        = -1 EBADF (Bad file descriptor)
9448  close(849)                        = -1 EBADF (Bad file descriptor)
9448  close(850)                        = -1 EBADF (Bad file descriptor)
9448  close(851)                        = -1 EBADF (Bad file descriptor)
9448  close(852)                        = -1 EBADF (Bad file descriptor)
9448  close(853)                        = -1 EBADF (Bad file descriptor)
9448  close(854)                        = -1 EBADF (Bad file descriptor)
9448  close(855)                        = -1 EBADF (Bad file descriptor)
9448  close(856)                        = -1 EBADF (Bad file descriptor)
9448  close(857)                        = -1 EBADF (Bad file descriptor)
9448  close(858)                        = -1 EBADF (Bad file descriptor)
9448  close(859)                        = -1 EBADF (Bad file descriptor)
9448  close(860)                        = -1 EBADF (Bad file descriptor)
9448  close(861)                        = -1 EBADF (Bad file descriptor)
9448  close(862)                        = -1 EBADF (Bad file descriptor)
9448  close(863)                        = -1 EBADF (Bad file descriptor)
9448  close(864)                        = -1 EBADF (Bad file descriptor)
9448  close(865)                        = -1 EBADF (Bad file descriptor)
9448  close(866)                        = -1 EBADF (Bad file descriptor)
9448  close(867)                        = -1 EBADF (Bad file descriptor)
9448  close(868)                        = -1 EBADF (Bad file descriptor)
9448  close(869)                        = -1 EBADF (Bad file descriptor)
9448  close(870)                        = -1 EBADF (Bad file descriptor)
9448  close(871)                        = -1 EBADF (Bad file descriptor)
9448  close(872)                        = -1 EBADF (Bad file descriptor)
9448  close(873)                        = -1 EBADF (Bad file descriptor)
9448  close(874)                        = -1 EBADF (Bad file descriptor)
9448  close(875)                        = -1 EBADF (Bad file descriptor)
9448  close(876)                        = -1 EBADF (Bad file descriptor)
9448  close(877)                        = -1 EBADF (Bad file descriptor)
9448  close(878)                        = -1 EBADF (Bad file descriptor)
9448  close(879)                        = -1 EBADF (Bad file descriptor)
9448  close(880)                        = -1 EBADF (Bad file descriptor)
9448  close(881)                        = -1 EBADF (Bad file descriptor)
9448  close(882)                        = -1 EBADF (Bad file descriptor)
9448  close(883)                        = -1 EBADF (Bad file descriptor)
9448  close(884)                        = -1 EBADF (Bad file descriptor)
9448  close(885)                        = -1 EBADF (Bad file descriptor)
9448  close(886)                        = -1 EBADF (Bad file descriptor)
9448  close(887)                        = -1 EBADF (Bad file descriptor)
9448  close(888)                        = -1 EBADF (Bad file descriptor)
9448  close(889)                        = -1 EBADF (Bad file descriptor)
9448  close(890)                        = -1 EBADF (Bad file descriptor)
9448  close(891)                        = -1 EBADF (Bad file descriptor)
9448  close(892)                        = -1 EBADF (Bad file descriptor)
9448  close(893)                        = -1 EBADF (Bad file descriptor)
9448  close(894)                        = -1 EBADF (Bad file descriptor)
9448  close(895)                        = -1 EBADF (Bad file descriptor)
9448  close(896)                        = -1 EBADF (Bad file descriptor)
9448  close(897)                        = -1 EBADF (Bad file descriptor)
9448  close(898)                        = -1 EBADF (Bad file descriptor)
9448  close(899)                        = -1 EBADF (Bad file descriptor)
9448  close(900)                        = -1 EBADF (Bad file descriptor)
9448  close(901)                        = -1 EBADF (Bad file descriptor)
9448  close(902)                        = -1 EBADF (Bad file descriptor)
9448  close(903)                        = -1 EBADF (Bad file descriptor)
9448  close(904)                        = -1 EBADF (Bad file descriptor)
9448  close(905)                        = -1 EBADF (Bad file descriptor)
9448  close(906)                        = -1 EBADF (Bad file descriptor)
9448  close(907)                        = -1 EBADF (Bad file descriptor)
9448  close(908)                        = -1 EBADF (Bad file descriptor)
9448  close(909)                        = -1 EBADF (Bad file descriptor)
9448  close(910)                        = -1 EBADF (Bad file descriptor)
9448  close(911)                        = -1 EBADF (Bad file descriptor)
9448  close(912)                        = -1 EBADF (Bad file descriptor)
9448  close(913)                        = -1 EBADF (Bad file descriptor)
9448  close(914)                        = -1 EBADF (Bad file descriptor)
9448  close(915)                        = -1 EBADF (Bad file descriptor)
9448  close(916)                        = -1 EBADF (Bad file descriptor)
9448  close(917)                        = -1 EBADF (Bad file descriptor)
9448  close(918)                        = -1 EBADF (Bad file descriptor)
9448  close(919)                        = -1 EBADF (Bad file descriptor)
9448  close(920)                        = -1 EBADF (Bad file descriptor)
9448  close(921)                        = -1 EBADF (Bad file descriptor)
9448  close(922)                        = -1 EBADF (Bad file descriptor)
9448  close(923)                        = -1 EBADF (Bad file descriptor)
9448  close(924)                        = -1 EBADF (Bad file descriptor)
9448  close(925)                        = -1 EBADF (Bad file descriptor)
9448  close(926)                        = -1 EBADF (Bad file descriptor)
9448  close(927)                        = -1 EBADF (Bad file descriptor)
9448  close(928)                        = -1 EBADF (Bad file descriptor)
9448  close(929)                        = -1 EBADF (Bad file descriptor)
9448  close(930)                        = -1 EBADF (Bad file descriptor)
9448  close(931)                        = -1 EBADF (Bad file descriptor)
9448  close(932)                        = -1 EBADF (Bad file descriptor)
9448  close(933)                        = -1 EBADF (Bad file descriptor)
9448  close(934)                        = -1 EBADF (Bad file descriptor)
9448  close(935)                        = -1 EBADF (Bad file descriptor)
9448  close(936)                        = -1 EBADF (Bad file descriptor)
9448  close(937)                        = -1 EBADF (Bad file descriptor)
9448  close(938)                        = -1 EBADF (Bad file descriptor)
9448  close(939)                        = -1 EBADF (Bad file descriptor)
9448  close(940)                        = -1 EBADF (Bad file descriptor)
9448  close(941)                        = -1 EBADF (Bad file descriptor)
9448  close(942)                        = -1 EBADF (Bad file descriptor)
9448  close(943)                        = -1 EBADF (Bad file descriptor)
9448  close(944)                        = -1 EBADF (Bad file descriptor)
9448  close(945)                        = -1 EBADF (Bad file descriptor)
9448  close(946)                        = -1 EBADF (Bad file descriptor)
9448  close(947)                        = -1 EBADF (Bad file descriptor)
9448  close(948)                        = -1 EBADF (Bad file descriptor)
9448  close(949)                        = -1 EBADF (Bad file descriptor)
9448  close(950)                        = -1 EBADF (Bad file descriptor)
9448  close(951)                        = -1 EBADF (Bad file descriptor)
9448  close(952)                        = -1 EBADF (Bad file descriptor)
9448  close(953)                        = -1 EBADF (Bad file descriptor)
9448  close(954)                        = -1 EBADF (Bad file descriptor)
9448  close(955)                        = -1 EBADF (Bad file descriptor)
9448  close(956)                        = -1 EBADF (Bad file descriptor)
9448  close(957)                        = -1 EBADF (Bad file descriptor)
9448  close(958)                        = -1 EBADF (Bad file descriptor)
9448  close(959)                        = -1 EBADF (Bad file descriptor)
9448  close(960)                        = -1 EBADF (Bad file descriptor)
9448  close(961)                        = -1 EBADF (Bad file descriptor)
9448  close(962)                        = -1 EBADF (Bad file descriptor)
9448  close(963)                        = -1 EBADF (Bad file descriptor)
9448  close(964)                        = -1 EBADF (Bad file descriptor)
9448  close(965)                        = -1 EBADF (Bad file descriptor)
9448  close(966)                        = -1 EBADF (Bad file descriptor)
9448  close(967)                        = -1 EBADF (Bad file descriptor)
9448  close(968)                        = -1 EBADF (Bad file descriptor)
9448  close(969)                        = -1 EBADF (Bad file descriptor)
9448  close(970)                        = -1 EBADF (Bad file descriptor)
9448  close(971)                        = -1 EBADF (Bad file descriptor)
9448  close(972)                        = -1 EBADF (Bad file descriptor)
9448  close(973)                        = -1 EBADF (Bad file descriptor)
9448  close(974)                        = -1 EBADF (Bad file descriptor)
9448  close(975)                        = -1 EBADF (Bad file descriptor)
9448  close(976)                        = -1 EBADF (Bad file descriptor)
9448  close(977)                        = -1 EBADF (Bad file descriptor)
9448  close(978)                        = -1 EBADF (Bad file descriptor)
9448  close(979)                        = -1 EBADF (Bad file descriptor)
9448  close(980)                        = -1 EBADF (Bad file descriptor)
9448  close(981)                        = -1 EBADF (Bad file descriptor)
9448  close(982)                        = -1 EBADF (Bad file descriptor)
9448  close(983)                        = -1 EBADF (Bad file descriptor)
9448  close(984)                        = -1 EBADF (Bad file descriptor)
9448  close(985)                        = -1 EBADF (Bad file descriptor)
9448  close(986)                        = -1 EBADF (Bad file descriptor)
9448  close(987)                        = -1 EBADF (Bad file descriptor)
9448  close(988)                        = -1 EBADF (Bad file descriptor)
9448  close(989)                        = -1 EBADF (Bad file descriptor)
9448  close(990)                        = -1 EBADF (Bad file descriptor)
9448  close(991)                        = -1 EBADF (Bad file descriptor)
9448  close(992)                        = -1 EBADF (Bad file descriptor)
9448  close(993)                        = -1 EBADF (Bad file descriptor)
9448  close(994)                        = -1 EBADF (Bad file descriptor)
9448  close(995)                        = -1 EBADF (Bad file descriptor)
9448  close(996)                        = -1 EBADF (Bad file descriptor)
9448  close(997)                        = -1 EBADF (Bad file descriptor)
9448  close(998)                        = -1 EBADF (Bad file descriptor)
9448  close(999)                        = -1 EBADF (Bad file descriptor)
9448  close(1000)                       = -1 EBADF (Bad file descriptor)
9448  close(1001)                       = -1 EBADF (Bad file descriptor)
9448  close(1002)                       = -1 EBADF (Bad file descriptor)
9448  close(1003)                       = -1 EBADF (Bad file descriptor)
9448  close(1004)                       = -1 EBADF (Bad file descriptor)
9448  close(1005)                       = -1 EBADF (Bad file descriptor)
9448  close(1006)                       = -1 EBADF (Bad file descriptor)
9448  close(1007)                       = -1 EBADF (Bad file descriptor)
9448  close(1008)                       = -1 EBADF (Bad file descriptor)
9448  close(1009)                       = -1 EBADF (Bad file descriptor)
9448  close(1010)                       = -1 EBADF (Bad file descriptor)
9448  close(1011)                       = -1 EBADF (Bad file descriptor)
9448  close(1012)                       = -1 EBADF (Bad file descriptor)
9448  close(1013)                       = -1 EBADF (Bad file descriptor)
9448  close(1014)                       = -1 EBADF (Bad file descriptor)
9448  close(1015)                       = -1 EBADF (Bad file descriptor)
9448  close(1016)                       = -1 EBADF (Bad file descriptor)
9448  close(1017)                       = -1 EBADF (Bad file descriptor)
9448  close(1018)                       = -1 EBADF (Bad file descriptor)
9448  close(1019)                       = -1 EBADF (Bad file descriptor)
9448  close(1020)                       = -1 EBADF (Bad file descriptor)
9448  close(1021)                       = -1 EBADF (Bad file descriptor)
9448  close(1022)                       = -1 EBADF (Bad file descriptor)
9448  close(1023)                       = -1 EBADF (Bad file descriptor)
9448  execve("/etc/xen/qemu-ifup", ["/etc/xen/qemu-ifup", "tap3.0", "xenbr0"], ["CONSOLE=/dev/console", "TERM=linux", "DEFAULTLEVEL=default", "CRITICAL_SERVICES=checkroot modules checkfs localmount clock bootmisc", "INIT_VERSION=sysvinit-2.86", "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/sbin:/usr/sbin", "RUNLEVEL=3", "PWD=/", "PREVLEVEL=N", "BOOTLEVEL=boot", "SVCNAME=xend", "CONSOLETYPE=serial", "HOME=/", "SHLVL=2", "SOFTLEVEL=default", "OLDSOFTLEVEL=boot", "XAUTHORITY=/root/.Xauthority"]) = 0
9448  brk(0)                            = 0xeb4000
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0456000
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0457000
9448  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
9448  open("/etc/ld.so.cache", O_RDONLY) = 4
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=262735, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=33873, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-09:49:01, st_ctime=2009/02/23-09:49:01}) = 0
9448  mmap(NULL, 33873, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2ad2a0458000
9448  close(4)                          = 0
9448  open("/lib/libncurses.so.5", O_RDONLY) = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\16\2\0\0\0\0\0@\0\0\0\0\0\0\0000\265\5\0\0\0\0\0\0\0\0\0@\0008\0\7\0@\0\32\0\31\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\354\322\4\0\0\0\0\0\354\322\4\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0008\327\4\0\0\0\0\0008\327$\0\0\0\0\0008\327$\0\0\0\0\0(\335\0\0\0\0\0\0p\351\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0@\234\5\0\0\0\0\0@\234%\0\0\0\0\0@\234%\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\364\201\4\0\0\0\0\0\364\201\4\0\0\0\0\0\364\201\4\0\0\0\0\0\f\21\0\0\0\0\0\0\f\21\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0008\327\4\0\0\0\0\0008\327$\0\0\0\0\0008\327$\0\0\0\0\0\310\310\0\0\0\0\0\0\310\310\0\0\0\0\0\0\1\0\0\0\0\0\0\0\200\25\4e\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\t\2\0\0D\2\0\0\217\1\0\0\322\1\0\0\216\1\0\0Q\0\0\0(\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\2\0\0\30"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=410539, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=744, st_size=375728, st_atime=2009/02/23-17:01:27, st_mtime=2008/06/17-02:56:07, st_ctime=2008/12/11-09:04:45}) = 0
9448  mmap(NULL, 2474152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a0657000
9448  mprotect(0x2ad2a06a5000, 2093056, PROT_NONE) = 0
9448  mmap(0x2ad2a08a4000, 61440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x4d000) = 0x2ad2a08a4000
9448  mmap(0x2ad2a08b3000, 168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2ad2a08b3000
9448  close(4)                          = 0
9448  open("/lib/libdl.so.2", O_RDONLY) = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\16\0\0\0\0\0\0@\0\0\0\0\0\0\0x1\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\31\0\0\0\0\0\0@\31\0\0\0\0\0\0@\31\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\30\36\0\0\0\0\0\0\30\36\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0h-\0\0\0\0\0\0h- \0\0\0\0\0h- \0\0\0\0\0 \3\0\0\0\0\0\0\270\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\240-\0\0\0\0\0\0\240- \0\0\0\0\0\240- \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\\\31\0\0\0\0\0\0\\\31\0\0\0\0\0\0\\\31\0\0\0\0\0\0\264\0\0\0\0\0\0\0\264\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=693757, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=32, st_size=14520, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 2109728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a08b4000
9448  mprotect(0x2ad2a08b6000, 2097152, PROT_NONE) = 0
9448  mmap(0x2ad2a0ab6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x2000) = 0x2ad2a0ab6000
9448  close(4)                          = 0
9448  open("/lib/libc.so.6", O_RDONLY)  = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\345\1\0\0\0\0\0@\0\0\0\0\0\0\0p;\24\0\0\0\0\0\0\0\0\0@\0008\0\v\0@\0E\0D\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0h\2\0\0\0\0\0\0h\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\343\23\0\0\0\0\0\200\343\23\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0XF\0\0\0\0\0\0X\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0@\33\24\0\0\0\0\0@\0334\0\0\0\0\0@\0334\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0\20\0\0\0\0\0\0\0h\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0P\345td\4\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0,d\0\0\0\0\0\0,d\0\0\0"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=693821, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2608, st_size=1330352, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:31, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 3437208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a0ab8000
9448  mprotect(0x2ad2a0bf7000, 2093056, PROT_NONE) = 0
9448  mmap(0x2ad2a0df6000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x13e000) = 0x2ad2a0df6000
9448  mmap(0x2ad2a0dfb000, 17048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0dfb000
9448  close(4)                          = 0
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0e00000
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0e01000
9448  arch_prctl(ARCH_SET_FS, 0x2ad2a0e00f70) = 0
9448  mprotect(0x2ad2a0df6000, 16384, PROT_READ) = 0
9448  mprotect(0x2ad2a0ab6000, 4096, PROT_READ) = 0
9448  mprotect(0x2ad2a08a4000, 53248, PROT_READ) = 0
9448  mprotect(0x6ae000, 4096, PROT_READ) = 0
9448  mprotect(0x2ad2a0655000, 4096, PROT_READ) = 0
9448  munmap(0x2ad2a0458000, 33873)     = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  open("/dev/tty", O_RDWR|O_NONBLOCK) = -1 ENXIO (No such device or address)
9448  ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, 0x7fff0a66be10) = -1 ENOTTY (Inappropriate ioctl for device)
9448  brk(0)                            = 0xeb4000
9448  brk(0xed5000)                     = 0xed5000
9448  getuid()                          = 0
9448  getgid()                          = 0
9448  geteuid()                         = 0
9448  getegid()                         = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  gettimeofday({1235418015, 196759}, NULL) = 0
9448  open("/proc/meminfo", O_RDONLY)   = 4
9448  fstat(4, {st_dev=makedev(0, 3), st_ino=4026532010, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0458000
9448  read(4, "MemTotal:        2467840 kB\nMemFree:         2143268 kB\nBuffers:           39460 kB\nCached:            51672 kB\nSwapCached:            0 kB\nActive:            92840 kB\nInactive:          38656 kB\nActive(anon):      40464 kB\nInactive(anon):       76 kB\nActive(file):      52376 kB\nInactive(file):    38580 kB\nUnevictable:           0 kB\nMlocked:               0 kB\nSwapTotal:       8000360 kB\nSwapFree:        8000360 kB\nDirty:               184 kB\nWriteback:             0 kB\nAnonPages:         40456 "..., 1024) = 930
9448  close(4)                          = 0
9448  munmap(0x2ad2a0458000, 4096)      = 0
9448  rt_sigaction(SIGCHLD, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9448  rt_sigaction(SIGCHLD, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9448  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9448  rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigaction(SIGQUIT, {0x1, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  uname({sysname="Linux", nodename="localhost", release="2.6.29-rc5-tip", version="#2 SMP Sun Feb 22 13:27:49 GMT 2009", machine="x86_64"}) = 0
9448  stat("/", {st_dev=makedev(8, 2), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=19, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-17:01:27, st_ctime=2009/02/23-17:01:27}) = 0
9448  stat(".", {st_dev=makedev(8, 2), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=19, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-17:01:27, st_ctime=2009/02/23-17:01:27}) = 0
9448  getpid()                          = 9448
9448  getppid()                         = 9432
9448  socket(PF_FILE, SOCK_STREAM, 0)   = 4
9448  fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0
9448  connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
9448  close(4)                          = 0
9448  socket(PF_FILE, SOCK_STREAM, 0)   = 4
9448  fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0
9448  connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
9448  close(4)                          = 0
9448  open("/etc/nsswitch.conf", O_RDONLY) = 4
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=726582, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=508, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:21, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0458000
9448  read(4, "# /etc/nsswitch.conf:\n# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nsswitch.conf,v 1.1 2006/09/29 23:52:23 vapier Exp $\n\npasswd:      compat\nshadow:      compat\ngroup:       compat\n\n# passwd:    db files nis\n# shadow:    db files nis\n# group:     db files nis\n\nhosts:       files dns\nnetworks:    files dns\n\nservices:    db files\nprotocols:   db files\nrpc:         db files\nethers:      db files\nnetmasks:    files\nnetgroup:    files\nbootparams:  files\n\nautomount:   files\naliases:    "..., 4096) = 508
9448  read(4, ""..., 4096)              = 0
9448  close(4)                          = 0
9448  munmap(0x2ad2a0458000, 4096)      = 0
9448  open("/etc/ld.so.cache", O_RDONLY) = 4
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=262735, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=33873, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-09:49:01, st_ctime=2009/02/23-09:49:01}) = 0
9448  mmap(NULL, 33873, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2ad2a0458000
9448  close(4)                          = 0
9448  open("/lib/libnss_compat.so.2", O_RDONLY) = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\23\0\0\0\0\0\0@\0\0\0\0\0\0\0\310s\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\34\0\33\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0p^\0\0\0\0\0\0p^\0\0\0\0\0\0p^\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@j\0\0\0\0\0\0@j\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\300m\0\0\0\0\0\0\300m \0\0\0\0\0\300m \0\0\0\0\0 \5\0\0\0\0\0\0000\7\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\350m\0\0\0\0\0\0\350m \0\0\0\0\0\350m \0\0\0\0\0\320\1\0\0\0\0\0\0\320\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\214^\0\0\0\0\0\0\214^\0\0\0\0\0\0\214^\0\0\0\0\0\0\274\1\0\0\0\0\0\0\274\1\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=693789, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=64, st_size=31432, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 2127088, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a0e02000
9448  mprotect(0x2ad2a0e09000, 2093056, PROT_NONE) = 0
9448  mmap(0x2ad2a1008000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x6000) = 0x2ad2a1008000
9448  close(4)                          = 0
9448  open("/lib/libnsl.so.1", O_RDONLY) = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340@\0\0\0\0\0\0@\0\0\0\0\0\0\0008D\1\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\34\0\33\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\300\20\1\0\0\0\0\0\300\20\1\0\0\0\0\0\300\20\1\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0X7\1\0\0\0\0\0X7\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\200=\1\0\0\0\0\0\200=!\0\0\0\0\0\200=!\0\0\0\0\0\320\5\0\0\0\0\0\0P-\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\250=\1\0\0\0\0\0\250=!\0\0\0\0\0\250=!\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\334\20\1\0\0\0\0\0\334\20\1\0\0\0\0\0\334\20\1\0\0\0\0\0\234\5\0\0\0\0\0\0\234\5\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=693791, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=176, st_size=84792, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 2190032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a100a000
9448  mprotect(0x2ad2a101e000, 2093056, PROT_NONE) = 0
9448  mmap(0x2ad2a121d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x13000) = 0x2ad2a121d000
9448  mmap(0x2ad2a121f000, 6864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2ad2a121f000
9448  close(4)                          = 0
9448  mprotect(0x2ad2a121d000, 4096, PROT_READ) = 0
9448  mprotect(0x2ad2a1008000, 4096, PROT_READ) = 0
9448  munmap(0x2ad2a0458000, 33873)     = 0
9448  open("/etc/ld.so.cache", O_RDONLY) = 4
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=262735, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=33873, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-09:49:01, st_ctime=2009/02/23-09:49:01}) = 0
9448  mmap(NULL, 33873, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2ad2a0458000
9448  close(4)                          = 0
9448  open("/lib/libnss_nis.so.2", O_RDONLY) = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260 \0\0\0\0\0\0@\0\0\0\0\0\0\0\200\242\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\34\0\33\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\260}\0\0\0\0\0\0\260}\0\0\0\0\0\0\260}\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\220\217\0\0\0\0\0\0\220\217\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\270\235\0\0\0\0\0\0\270\235 \0\0\0\0\0\270\235 \0\0\0\0\0\340\3\0\0\0\0\0\0 \7\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\340\235\0\0\0\0\0\0\340\235 \0\0\0\0\0\340\235 \0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\314}\0\0\0\0\0\0\314}\0\0\0\0\0\0\314}\0\0\0\0\0\0\\\2\0\0\0\0\0\0\\\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=693787, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=88, st_size=43392, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 2139352, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a1221000
9448  mprotect(0x2ad2a122a000, 2097152, PROT_NONE) = 0
9448  mmap(0x2ad2a142a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9000) = 0x2ad2a142a000
9448  close(4)                          = 0
9448  open("/lib/libnss_files.so.2", O_RDONLY) = 4
9448  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000 \0\0\0\0\0\0@\0\0\0\0\0\0\0H\242\0\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0\34\0\33\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\220\203\0\0\0\0\0\0\220\203\0\0\0\0\0\0\220\203\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\244\230\0\0\0\0\0\0\244\230\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\320\235\0\0\0\0\0\0\320\235 \0\0\0\0\0\320\235 \0\0\0\0\0\220\3\0\0\0\0\0\0X\7\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\370\235\0\0\0\0\0\0\370\235 \0\0\0\0\0\370\235 \0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\254\203\0\0\0\0\0\0\254\203\0\0\0\0\0\0\254\203\0\0\0\0\0\0\354\2\0\0\0\0\0\0\354\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=693780, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=88, st_size=43336, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:32, st_ctime=2009/02/20-11:44:48}) = 0
9448  mmap(NULL, 2139432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ad2a142c000
9448  mprotect(0x2ad2a1436000, 2093056, PROT_NONE) = 0
9448  mmap(0x2ad2a1635000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x9000) = 0x2ad2a1635000
9448  close(4)                          = 0
9448  mprotect(0x2ad2a1635000, 4096, PROT_READ) = 0
9448  mprotect(0x2ad2a142a000, 4096, PROT_READ) = 0
9448  munmap(0x2ad2a0458000, 33873)     = 0
9448  open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 4
9448  fcntl(4, F_GETFD)                 = 0x1 (flags FD_CLOEXEC)
9448  lseek(4, 0, SEEK_CUR)             = 0
9448  fstat(4, {st_dev=makedev(8, 2), st_ino=263034, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=911, st_atime=2009/02/23-17:01:27, st_mtime=2008/12/11-14:54:46, st_ctime=2008/12/11-14:54:46}) = 0
9448  mmap(NULL, 911, PROT_READ, MAP_SHARED, 4, 0) = 0x2ad2a0458000
9448  lseek(4, 911, SEEK_SET)           = 911
9448  munmap(0x2ad2a0458000, 911)       = 0
9448  close(4)                          = 0
9448  getpgrp()                         = 3519
9448  rt_sigaction(SIGCHLD, {0x436b06, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  getrlimit(RLIMIT_NPROC, {rlim_cur=26607, rlim_max=26607}) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  open("/etc/xen/qemu-ifup", O_RDONLY) = 4
9448  ioctl(4, SNDCTL_TMR_TIMEBASE or TCGETS, 0x7fff0a66be80) = -1 ENOTTY (Inappropriate ioctl for device)
9448  lseek(4, 0, SEEK_CUR)             = 0
9448  read(4, "#!/bin/sh\n\n#. /etc/rc.d/init.d/functions\n#ulimit -c unlimited\n\necho 'config qemu"..., 80) = 80
9448  lseek(4, 0, SEEK_SET)             = 0
9448  getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
9448  dup2(4, 255)                      = 255
9448  close(4)                          = 0
9448  fcntl(255, F_SETFD, FD_CLOEXEC)   = 0
9448  fcntl(255, F_GETFL)               = 0x8000 (flags O_RDONLY|O_LARGEFILE)
9448  fstat(255, {st_dev=makedev(8, 2), st_ino=504520, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=840, st_atime=2009/02/23-09:46:58, st_mtime=2009/02/23-09:46:58, st_ctime=2009/02/23-09:48:57}) = 0
9448  lseek(255, 0, SEEK_CUR)           = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  read(255, "#!/bin/sh\n\n#. /etc/rc.d/init.d/functions\n#ulimit -c unlimited\n\necho 'config qemu network with xen bridge for ' $*\n\nbridge=$2\n\n#\n# Old style bridge setup with netloop, used to have a bridge name\n# of xenbrX, enslaving pethX and vif0.X, and then configuring\n# eth0.\n#\n# New style bridge setup does not use netloop, so the bridge name\n# is ethX and the physical device is enslaved pethX\n#\n# So if...\n#\n#   - User asks for xenbrX\n#   - AND xenbrX doesn't exist\n#   - AND there is a ethX device which is a "..., 840) = 840
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  fstat(1, {st_dev=makedev(8, 2), st_ino=361169, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=39, st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9448  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ad2a0458000
9448  write(1, "config qemu network with xen bridge for  tap3.0 xenbr0\n"..., 55) = 55
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  stat("/sys/class/net/xenbr0", 0x7fff0a66ba80) = -1 ENOENT (No such file or directory)
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  stat("/sys/class/net/eth0/bridge", {st_dev=makedev(0, 0), st_ino=7968, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  stat(".", {st_dev=makedev(8, 2), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=19, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-17:01:27, st_ctime=2009/02/23-17:01:27}) = 0
9448  stat("/bin/ifconfig", 0x7fff0a66bcf0) = -1 ENOENT (No such file or directory)
9448  stat("/sbin/ifconfig", {st_dev=makedev(8, 2), st_ino=626917, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=144, st_size=68432, st_atime=2008/12/12-10:50:09, st_mtime=2008/12/12-10:50:09, st_ctime=2008/12/12-10:50:10}) = 0
9448  stat("/sbin/ifconfig", {st_dev=makedev(8, 2), st_ino=626917, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=144, st_size=68432, st_atime=2008/12/12-10:50:09, st_mtime=2008/12/12-10:50:09, st_ctime=2008/12/12-10:50:10}) = 0
9448  rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
9448  lseek(255, -31, SEEK_CUR)         = 809
9448  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x2ad2a0e01000) = 9504
9504  close(255)                        = 0
9504  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9504  rt_sigaction(SIGTSTP, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9504  rt_sigaction(SIGTTIN, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9504  rt_sigaction(SIGTTOU, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9504  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9504  rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {0x1, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9504  rt_sigaction(SIGCHLD, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {0x436b06, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9504  execve("/sbin/ifconfig", ["ifconfig", "tap3.0", "0.0.0.0", "up"], ["CONSOLE=/dev/console", "TERM=linux", "DEFAULTLEVEL=default", "CRITICAL_SERVICES=checkroot modules checkfs localmount clock bootmisc", "INIT_VERSION=sysvinit-2.86", "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/sbin:/usr/sbin", "RUNLEVEL=3", "PWD=/", "PREVLEVEL=N", "BOOTLEVEL=boot", "CONSOLETYPE=serial", "SVCNAME=xend", "SHLVL=3", "HOME=/", "SOFTLEVEL=default", "XAUTHORITY=/root/.Xauthority", "OLDSOFTLEVEL=boot", "_=/sbin/ifconfig"]) = 0
9504  brk(0)                            = 0x133a000
9504  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b77d1fd4000
9504  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b77d1fd5000
9504  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
9504  open("/etc/ld.so.cache", O_RDONLY) = 4
9504  fstat(4, {st_dev=makedev(8, 2), st_ino=262735, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=33873, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-09:49:01, st_ctime=2009/02/23-09:49:01}) = 0
9504  mmap(NULL, 33873, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2b77d1fd6000
9504  close(4)                          = 0
9504  open("/lib/libc.so.6", O_RDONLY)  = 4
9504  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\345\1\0\0\0\0\0@\0\0\0\0\0\0\0p;\24\0\0\0\0\0\0\0\0\0@\0008\0\v\0@\0E\0D\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0h\2\0\0\0\0\0\0h\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\343\23\0\0\0\0\0\200\343\23\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0XF\0\0\0\0\0\0X\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0@\33\24\0\0\0\0\0@\0334\0\0\0\0\0@\0334\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0\20\0\0\0\0\0\0\0h\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0P\345td\4\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0,d\0\0\0\0\0\0,d\0\0\0"..., 832) = 832
9504  fstat(4, {st_dev=makedev(8, 2), st_ino=693821, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2608, st_size=1330352, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:31, st_ctime=2009/02/20-11:44:48}) = 0
9504  mmap(NULL, 3437208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2b77d21d5000
9504  mprotect(0x2b77d2314000, 2093056, PROT_NONE) = 0
9504  mmap(0x2b77d2513000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x13e000) = 0x2b77d2513000
9504  mmap(0x2b77d2518000, 17048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b77d2518000
9504  close(4)                          = 0
9504  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b77d251d000
9504  arch_prctl(ARCH_SET_FS, 0x2b77d251d6f0) = 0
9504  mprotect(0x2b77d2513000, 16384, PROT_READ) = 0
9504  mprotect(0x60e000, 4096, PROT_READ) = 0
9504  mprotect(0x2b77d21d3000, 4096, PROT_READ) = 0
9504  munmap(0x2b77d1fd6000, 33873)     = 0
9504  brk(0)                            = 0x133a000
9504  brk(0x135b000)                    = 0x135b000
9504  uname({sysname="Linux", nodename="localhost", release="2.6.29-rc5-tip", version="#2 SMP Sun Feb 22 13:27:49 GMT 2009", machine="x86_64"}) = 0
9504  access("/proc/net", R_OK)         = 0
9504  access("/proc/net/unix", R_OK)    = 0
9504  socket(PF_FILE, SOCK_DGRAM, 0)    = 4
9504  socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 5
9504  access("/proc/net/if_inet6", R_OK) = -1 ENOENT (No such file or directory)
9504  access("/proc/net/ax25", R_OK)    = -1 ENOENT (No such file or directory)
9504  access("/proc/net/nr", R_OK)      = -1 ENOENT (No such file or directory)
9504  access("/proc/net/rose", R_OK)    = -1 ENOENT (No such file or directory)
9504  access("/proc/net/ipx", R_OK)     = -1 ENOENT (No such file or directory)
9504  access("/proc/net/appletalk", R_OK) = -1 ENOENT (No such file or directory)
9504  access("/proc/sys/net/econet", R_OK) = -1 ENOENT (No such file or directory)
9504  access("/proc/sys/net/ash", R_OK) = -1 ENOENT (No such file or directory)
9504  access("/proc/net/x25", R_OK)     = -1 ENOENT (No such file or directory)
9504  ioctl(5, SIOCSIFADDR, 0x7fffd8aee510) = 0
9504  ioctl(5, SIOCGIFFLAGS, {ifr_name="tap3.0", ifr_flags=IFF_BROADCAST|IFF_MULTICAST}) = 0
9504  ioctl(5, SIOCSIFFLAGS, 0x7fffd8aee430) = 0
9504  ioctl(5, SIOCGIFFLAGS, {ifr_name="tap3.0", ifr_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_MULTICAST}) = 0
9504  ioctl(5, SIOCSIFFLAGS, 0x7fffd8aee430) = 0
9504  exit_group(0)                     = ?
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  --- SIGCHLD (Child exited) @ 0 (0) ---
9448  wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], WNOHANG, NULL) = 9504
9448  wait4(-1, 0x7fff0a66b8a4, WNOHANG, NULL) = -1 ECHILD (No child processes)
9448  rt_sigreturn(0xffffffffffffffff)  = 0
9448  rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
9448  rt_sigaction(SIGINT, {0x4375b4, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {0x4375b4, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  read(255, "brctl addif $bridge $1 || true\n"..., 840) = 31
9448  stat(".", {st_dev=makedev(8, 2), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=19, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-17:01:27, st_ctime=2009/02/23-17:01:27}) = 0
9448  stat("/bin/brctl", 0x7fff0a66baf0) = -1 ENOENT (No such file or directory)
9448  stat("/sbin/brctl", {st_dev=makedev(8, 2), st_ino=394123, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=56, st_size=26880, st_atime=2008/12/11-13:46:04, st_mtime=2008/12/11-13:46:04, st_ctime=2008/12/11-13:46:05}) = 0
9448  stat("/sbin/brctl", {st_dev=makedev(8, 2), st_ino=394123, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=56, st_size=26880, st_atime=2008/12/11-13:46:04, st_mtime=2008/12/11-13:46:04, st_ctime=2008/12/11-13:46:05}) = 0
9448  rt_sigprocmask(SIG_BLOCK, [INT CHLD], [], 8) = 0
9448  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x2ad2a0e01000) = 9513
9513  close(255)                        = 0
9513  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9513  rt_sigaction(SIGTSTP, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9513  rt_sigaction(SIGTTIN, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9513  rt_sigaction(SIGTTOU, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], 0}, 8) = 0
9513  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9513  rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {0x1, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9513  rt_sigaction(SIGCHLD, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {0x436b06, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9513  execve("/sbin/brctl", ["brctl", "addif", "eth0", "tap3.0"], ["CONSOLE=/dev/console", "TERM=linux", "DEFAULTLEVEL=default", "CRITICAL_SERVICES=checkroot modules checkfs localmount clock bootmisc", "INIT_VERSION=sysvinit-2.86", "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/sbin:/usr/sbin", "RUNLEVEL=3", "PWD=/", "PREVLEVEL=N", "BOOTLEVEL=boot", "CONSOLETYPE=serial", "SVCNAME=xend", "SHLVL=3", "HOME=/", "SOFTLEVEL=default", "XAUTHORITY=/root/.Xauthority", "OLDSOFTLEVEL=boot", "_=/sbin/brctl"]) = 0
9513  brk(0)                            = 0xea8000
9513  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ab34b282000
9513  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ab34b283000
9513  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
9513  open("/etc/ld.so.cache", O_RDONLY) = 4
9513  fstat(4, {st_dev=makedev(8, 2), st_ino=262735, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=33873, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-09:49:01, st_ctime=2009/02/23-09:49:01}) = 0
9513  mmap(NULL, 33873, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2ab34b284000
9513  close(4)                          = 0
9513  open("/lib/libc.so.6", O_RDONLY)  = 4
9513  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\345\1\0\0\0\0\0@\0\0\0\0\0\0\0p;\24\0\0\0\0\0\0\0\0\0@\0008\0\v\0@\0E\0D\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0h\2\0\0\0\0\0\0h\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0000\\\21\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\343\23\0\0\0\0\0\200\343\23\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0XF\0\0\0\0\0\0X\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0@\33\24\0\0\0\0\0@\0334\0\0\0\0\0@\0334\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0\250\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0@\347\23\0\0\0\0\0@\3473\0\0\0\0\0@\3473\0\0\0\0\0\20\0\0\0\0\0\0\0h\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0P\345td\4\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0L\\\21\0\0\0\0\0,d\0\0\0\0\0\0,d\0\0\0"..., 832) = 832
9513  fstat(4, {st_dev=makedev(8, 2), st_ino=693821, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2608, st_size=1330352, st_atime=2009/02/23-17:01:27, st_mtime=2009/02/20-11:44:31, st_ctime=2009/02/20-11:44:48}) = 0
9513  mmap(NULL, 3437208, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2ab34b483000
9513  mprotect(0x2ab34b5c2000, 2093056, PROT_NONE) = 0
9513  mmap(0x2ab34b7c1000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x13e000) = 0x2ab34b7c1000
9513  mmap(0x2ab34b7c6000, 17048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2ab34b7c6000
9513  close(4)                          = 0
9513  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2ab34b7cb000
9513  arch_prctl(ARCH_SET_FS, 0x2ab34b7cb6f0) = 0
9513  mprotect(0x2ab34b7c1000, 16384, PROT_READ) = 0
9513  mprotect(0x605000, 4096, PROT_READ) = 0
9513  mprotect(0x2ab34b481000, 4096, PROT_READ) = 0
9513  munmap(0x2ab34b284000, 33873)     = 0
9513  socket(PF_FILE, SOCK_STREAM, 0)   = 4
9513  access("/proc/net", R_OK)         = 0
9513  access("/proc/net/unix", R_OK)    = 0
9513  socket(PF_FILE, SOCK_DGRAM, 0)    = 5
9513  ioctl(5, SIOCGIFINDEX, {ifr_name="tap3.0", ifr_index=7}) = 0
9513  close(5)                          = 0
9513  ioctl(4, 0x89a2, 0x7fff5f842300)  = 0
9513  exit_group(0)                     = ?
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  --- SIGCHLD (Child exited) @ 0 (0) ---
9448  wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], WNOHANG, NULL) = 9513
9448  wait4(-1, 0x7fff0a66b6a4, WNOHANG, NULL) = -1 ECHILD (No child processes)
9448  rt_sigreturn(0xffffffffffffffff)  = 0
9448  rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
9448  rt_sigaction(SIGINT, {0x4375b4, [], SA_RESTORER, 0x2ad2a0ae91d0}, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
9448  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x2ad2a0ae91d0}, {0x4375b4, [], SA_RESTORER, 0x2ad2a0ae91d0}, 8) = 0
9448  rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
9448  read(255, ""..., 840)             = 0
9448  exit_group(0)                     = ?
9432  <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 9448
9432  --- SIGCHLD (Child exited) @ 0 (0) ---
9432  open("/proc/xen/privcmd", O_RDWR) = 4
9432  fcntl(4, F_GETFD)                 = 0
9432  fcntl(4, F_SETFD, FD_CLOEXEC)     = 0
9432  stat("/var/run/xenstored/socket", {st_dev=makedev(8, 2), st_ino=361155, st_mode=S_IFSOCK|0600, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  socket(PF_FILE, SOCK_STREAM, 0)   = 5
9432  fcntl(5, F_GETFD)                 = 0
9432  fcntl(5, F_SETFD, FD_CLOEXEC)     = 0
9432  connect(5, {sa_family=AF_FILE, path="/var/run/xenstored/socket"...}, 110) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "3\0"..., 2)             = 2
9432  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/3\0"..., 16) = 16
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/device/vbd\0"..., 27) = 27
9432  read(5, "\1\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0"..., 16) = 16
9432  read(5, "768\0005632\0"..., 9)    = 9
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0'\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/device/vbd/768/backend\0"..., 39) = 39
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0!\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/0/backend/vbd/3/768"..., 33) = 33
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "0\0"..., 2)             = 2
9432  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/0\0"..., 16) = 16
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/768/frontend\0"..., 43) = 43
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\36\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/3/device/vbd/768"..., 30) = 30
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0&\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/768/dev\0"..., 38) = 38
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9432  read(5, "hda"..., 3)              = 3
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0'\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/device/vbd/768/backend\0"..., 39) = 39
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0!\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/0/backend/vbd/3/768"..., 33) = 33
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "0\0"..., 2)             = 2
9432  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/0\0"..., 16) = 16
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/768/frontend\0"..., 43) = 43
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\36\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/3/device/vbd/768"..., 30) = 30
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0&\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/768/dev\0"..., 38) = 38
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9432  read(5, "hda"..., 3)              = 3
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/device/vbd/768/device-type\0"..., 43) = 43
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0"..., 16) = 16
9432  read(5, "disk"..., 4)             = 4
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0)\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/768/params\0"..., 41) = 41
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0"..., 16) = 16
9432  read(5, "/root/xp"..., 8)         = 8
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0'\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/768/type\0"..., 39) = 39
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0"..., 16) = 16
9432  read(5, "file"..., 4)             = 4
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigprocmask(SIG_UNBLOCK, [USR2], NULL, 8) = 0
9432  rt_sigaction(SIGUSR2, {0x416d64, ~[RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  pipe([6, 7])                      = 0
9432  fcntl(6, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
9432  fcntl(7, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
9432  open("/root/xp", O_RDWR|O_SYNC)   = 8
9432  lseek(8, 0, SEEK_END)             = 2147483648
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/device/vbd/5632/backend\0"..., 40) = 40
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/0/backend/vbd/3/5632"..., 34) = 34
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "0\0"..., 2)             = 2
9432  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/0\0"..., 16) = 16
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/frontend\0"..., 44) = 44
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0"..., 16) = 16
9432  read(5, "/local/domain/3/device/vbd/5632"..., 31) = 31
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0'\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/dev\0"..., 39) = 39
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9432  read(5, "hdc"..., 3)              = 3
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/device/vbd/5632/device-type\0"..., 44) = 44
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0"..., 16) = 16
9432  read(5, "cdrom"..., 5)            = 5
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0*\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/params\0"..., 42) = 42
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0P\0\0\0"..., 16) = 16
9432  read(5, "/mnt/jos-tb1_store/CD Images/Other/EN Win_XP_Pro_w_SP2/en_winxp_pro_with_sp2.iso"..., 80) = 80
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/type\0"..., 40) = 40
9432  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0"..., 16) = 16
9432  read(5, "file"..., 4)             = 4
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_32BIT, -1, 0) = 0x4121a000
9432  mprotect(0x4121a000, 4096, PROT_NONE) = 0
9432  clone(child_stack=0x41a1a240, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x41a1a9e0, tls=0x41a1a950, child_tidptr=0x41a1a9e0) = 9530
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0.\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/params\0"..., 42) = 42
9432  write(5, "hdc\0"..., 4)           = 4
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
9530  set_robust_list(0x41a1a9f0, 0x18) = 0
9530  read(5, "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9530  read(5, "OK\0"..., 3)             = 3
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
9432  <... futex resumed> )             = 0
9530  read(5,  <unfinished ...>
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9530  <... read resumed> "\17\0\0\0\0\0\0\0\0\0\0\0.\0\0\0"..., 16) = 16
9432  <... futex resumed> )             = 0
9530  read(5,  <unfinished ...>
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0},  <unfinished ...>
9530  <... read resumed> "/local/domain/0/backend/vbd/3/5632/params\0hdc\0"..., 46) = 46
9432  <... rt_sigaction resumed> NULL, 8) = 0
9530  read(5,  <unfinished ...>
9432  open("/mnt/jos-tb1_store/CD Images/Other/EN Win_XP_Pro_w_SP2/en_winxp_pro_with_sp2.iso", O_RDWR|O_SYNC) = 9
9432  lseek(9, 0, SEEK_END)             = 607250432
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0=\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/device-model/3/logdirty/next-active\0"..., 52) = 52
9432  write(5, "logdirty\0"..., 9)      = 9
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 3, NULL <unfinished ...>
9530  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9530  read(5, "OK\0"..., 3)             = 3
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "Watching /local/domain/0/device-model/3/logdirty/next-active\n"..., 61) = 61
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0002\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/device-model/3/command\0"..., 39) = 39
9432  write(5, "dm-command\0"..., 11)   = 11
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 5, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0=\0\0\0"..., 16) = 16
9530  read(5, "/local/domain/0/device-model/3/logdirty/next-active\0logdirty\0"..., 61) = 61
9530  read(5, "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9530  read(5, "OK\0"..., 3)             = 3
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "Watching /local/domain/0/device-model/3/command\n"..., 48) = 48
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0)\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/pci/3/0/num_devs\0"..., 41) = 41
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 7, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0002\0\0\0"..., 16) = 16
9530  read(5, "/local/domain/0/device-model/3/command\0dm-command\0"..., 50) = 50
9530  read(5, "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0"..., 16) = 16
9530  read(5, "ENOENT\0"..., 7)         = 7
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  open("/usr/share/xen/qemu/keymaps/en-gb", O_RDONLY) = 10
9432  fstat(10, {st_dev=makedev(8, 2), st_ino=504486, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2581, st_atime=2009/02/23-09:48:49, st_mtime=2009/02/23-09:48:49, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886de0000
9432  read(10, "# generated from XKB map gb\ninclude common\nmap 0x809\nexclam 0x02 shift\nonesuperior 0x02 altgr\nexclamdown 0x02 shift altgr\nquotedbl 0x03 shift\ntwosuperior 0x03 altgr\noneeighth 0x03 shift altgr\nsterling 0x04 shift\nthreesuperior 0x04 altgr\ndollar 0x05 shift\nEuroSign 0x05 altgr\npercent 0x06 shift\nonehalf 0x06 altgr\nthreeeighths 0x06 shift altgr\nasciicircum 0x07 shift\nthreequarters 0x07 altgr\nfiveeighths 0x07 shift altgr\nampersand 0x08 shift\nbraceleft 0x08 altgr\nseveneighths 0x08 shift altgr\nasterisk "..., 4096) = 2581
9432  open("/usr/share/xen/qemu/keymaps/common", O_RDONLY) = 11
9432  fstat(11, {st_dev=makedev(8, 2), st_ino=504508, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2077, st_atime=2009/02/23-09:48:49, st_mtime=2009/02/23-09:48:49, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886ddf000
9432  read(11, "include modifiers\n\n#\n# Top row\n#\n1 0x2\n2 0x3\n3 0x4\n4 0x5\n5 0x6\n6 0x7\n7 0x8\n8 0x9\n9 0xa\n0 0xb\nBackSpace 0xe\n\n#\n# QWERTY first row\n#\nTab 0xf localstate\nISO_Left_Tab 0xf shift\nq 0x10 addupper\nw 0x11 addupper\ne 0x12 addupper\nr 0x13 addupper\nt 0x14 addupper\ny 0x15 addupper\nu 0x16 addupper\ni 0x17 addupper\no 0x18 addupper\np 0x19 addupper\n\n#\n# QWERTY second row\n#\na 0x1e addupper\ns 0x1f addupper\nd 0x20 addupper\nf 0x21 addupper\ng 0x22 addupper\nh 0x23 addupper\nj 0x24 addupper\nk 0x25 addupper\nl 0x26 addupper"..., 4096) = 2077
9432  open("/usr/share/xen/qemu/keymaps/modifiers", O_RDONLY) = 12
9432  fstat(12, {st_dev=makedev(8, 2), st_ino=504492, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=293, st_atime=2009/02/23-09:48:49, st_mtime=2009/02/23-09:48:49, st_ctime=2009/02/23-09:48:57}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dde000
9432  read(12, "Shift_R 0x36\nShift_L 0x2a\n\nAlt_R 0xb8\nMode_switch 0xb8\nISO_Level3_Shift 0xb8\nAlt_L 0x38\n\nControl_R 0x9d\nControl_L 0x1d\n\n# Translate Super to Windows keys.\n# This is hardcoded. See documentation for details.\nSuper_R 0xdc\nSuper_L 0xdb\n\n# Translate Menu to the Windows Application key.\nMenu 0xdd\n"..., 4096) = 293
9432  read(12, ""..., 4096)             = 0
9432  close(12)                         = 0
9432  munmap(0x7f5886dde000, 4096)      = 0
9432  read(11, ""..., 4096)             = 0
9432  close(11)                         = 0
9432  munmap(0x7f5886ddf000, 4096)      = 0
9432  read(10, ""..., 4096)             = 0
9432  close(10)                         = 0
9432  munmap(0x7f5886de0000, 4096)      = 0
9432  mmap(NULL, 1028096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886cd3000
9432  mmap(NULL, 1028096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58839de000
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "3\0"..., 2)             = 2
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 9, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9530  read(5, "/local/domain/3\0"..., 16) = 16
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/vm\0"..., 19) = 19
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 11, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0"..., 16) = 16
9530  read(5, "/vm/46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12"..., 40) = 40
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0003\0\0\0"..., 16) = 16
9432  write(5, "/vm/46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12/vncpasswd\0"..., 51) = 51
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 13, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0"..., 16) = 16
9530  read(5, "r0ck0n"..., 6)           = 6
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0004\0\0\0"..., 16) = 16
9432  write(5, "/vm/46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12/vncpasswd\0"..., 51) = 51
9432  write(5, "\0"..., 1)              = 1
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 15, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9530  read(5, "OK\0"..., 3)             = 3
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 10
9432  setsockopt(10, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
9432  bind(10, {sa_family=AF_INET, sin_port=htons(5901), sin_addr=inet_addr("10.0.4.3")}, 16) = 0
9432  listen(10, 1)                     = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "3\0"..., 2)             = 2
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 17, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9530  read(5, "/local/domain/3\0"..., 16) = 16
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0%\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/3/console/vnc-port\0"..., 33) = 33
9432  write(5, "5901"..., 4)            = 4
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 19, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5, "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9530  read(5, "OK\0"..., 3)             = 3
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGHUP, {SIG_DFL, [], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGTERM, {SIG_DFL, [], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  brk(0x1246000)                    = 0x1246000
9432  open("/dev/ptmx", O_RDWR)         = 11
9432  statfs("/dev/pts", {f_type="DEVPTS_SUPER_MAGIC", f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
9432  ioctl(11, SNDCTL_TMR_TIMEBASE or TCGETS, {c_iflags=0x500, c_oflags=0x5, c_cflags=0xbf, c_lflags=0x8a3b, c_line=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  ioctl(11, TIOCGPTN, [2])          = 0
9432  stat("/dev/pts/2", {st_dev=makedev(0, 10), st_ino=5, st_mode=S_IFCHR|0620, st_nlink=1, st_uid=0, st_gid=5, st_blksize=1024, st_blocks=0, st_rdev=makedev(136, 2), st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  statfs("/dev/pts/2", {f_type="DEVPTS_SUPER_MAGIC", f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
9432  ioctl(11, TIOCSPTLCK, [0])        = 0
9432  ioctl(11, SNDCTL_TMR_TIMEBASE or TCGETS, {c_iflags=0x500, c_oflags=0x5, c_cflags=0xbf, c_lflags=0x8a3b, c_line=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  ioctl(11, TIOCGPTN, [2])          = 0
9432  stat("/dev/pts/2", {st_dev=makedev(0, 10), st_ino=5, st_mode=S_IFCHR|0620, st_nlink=1, st_uid=0, st_gid=5, st_blksize=1024, st_blocks=0, st_rdev=makedev(136, 2), st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  open("/dev/pts/2", O_RDWR|O_NOCTTY) = 12
9432  ioctl(12, SNDCTL_TMR_TIMEBASE or TCGETS, {c_iflags=0x500, c_oflags=0x5, c_cflags=0xbf, c_lflags=0x8a3b, c_line=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  ioctl(12, SNDCTL_TMR_CONTINUE or TCSETSF, {c_iflags=0, c_oflags=0x4, c_cflags=0xbf, c_lflags=0xa30, c_line=0, c_cc[VMIN]=1, c_cc[VTIME]=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  close(12)                         = 0
9432  ioctl(11, SNDCTL_TMR_TIMEBASE or TCGETS, {c_iflags=0, c_oflags=0x4, c_cflags=0xbf, c_lflags=0xa30, c_line=0, c_cc[VMIN]=1, c_cc[VTIME]=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  ioctl(11, TIOCGPTN, [2])          = 0
9432  stat("/dev/pts/2", {st_dev=makedev(0, 10), st_ino=5, st_mode=S_IFCHR|0620, st_nlink=1, st_uid=0, st_gid=5, st_blksize=1024, st_blocks=0, st_rdev=makedev(136, 2), st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  write(2, "char device redirected to /dev/pts/2\n"..., 37) = 37
9432  ioctl(11, SNDCTL_TMR_TIMEBASE or TCGETS, {c_iflags=0, c_oflags=0x4, c_cflags=0xbf, c_lflags=0xa30, c_line=0, c_cc[VMIN]=1, c_cc[VTIME]=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  ioctl(11, TIOCGPTN, [2])          = 0
9432  stat("/dev/pts/2", {st_dev=makedev(0, 10), st_ino=5, st_mode=S_IFCHR|0620, st_nlink=1, st_uid=0, st_gid=5, st_blksize=1024, st_blocks=0, st_rdev=makedev(136, 2), st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  stat("/var/run/xenstored/socket", {st_dev=makedev(8, 2), st_ino=361155, st_mode=S_IFSOCK|0600, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  socket(PF_FILE, SOCK_STREAM, 0)   = 12
9432  fcntl(12, F_GETFD)                = 0
9432  fcntl(12, F_SETFD, FD_CLOEXEC)    = 0
9432  connect(12, {sa_family=AF_FILE, path="/var/run/xenstored/socket"...}, 110) = 0
9432  open("/proc/xen/privcmd", O_RDWR) = 13
9432  fcntl(13, F_GETFD)                = 0
9432  fcntl(13, F_SETFD, FD_CLOEXEC)    = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(12, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(12, "3\0"..., 2)            = 2
9432  read(12,  <unfinished ...>
9530  <... futex resumed> )             = 1
9530  read(5,  <unfinished ...>
9432  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  read(12, "/local/domain/3\0"..., 16) = 16
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(12, "\v\0\0\0\0\0\0\0\0\0\0\0'\0\0\0"..., 16) = 16
9432  write(12, "/local/domain/3/serial/0/tty\0"..., 29) = 29
9432  write(12, "/dev/pts/2"..., 10)    = 10
9432  read(12, "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9432  read(12, "OK\0"..., 3)            = 3
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  close(12)                         = 0
9432  close(13)                         = 0
9432  ioctl(11, SNDCTL_TMR_TIMEBASE or TCGETS, {c_iflags=0, c_oflags=0x4, c_cflags=0xbf, c_lflags=0xa30, c_line=0, c_cc[VMIN]=1, c_cc[VTIME]=0, c_cc="\x03\x1c\x7f\x15\x04\x00\x01\x00\x11\x13\x1a\x00\x12\x0f\x17\x16\x00\x00\x00"}) = 0
9432  ioctl(11, TIOCGPTN, [2])          = 0
9432  stat("/dev/pts/2", {st_dev=makedev(0, 10), st_ino=5, st_mode=S_IFCHR|0620, st_nlink=1, st_uid=0, st_gid=5, st_blksize=1024, st_blocks=0, st_rdev=makedev(136, 2), st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  stat("/var/run/xenstored/socket", {st_dev=makedev(8, 2), st_ino=361155, st_mode=S_IFSOCK|0600, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  socket(PF_FILE, SOCK_STREAM, 0)   = 12
9432  fcntl(12, F_GETFD)                = 0
9432  fcntl(12, F_SETFD, FD_CLOEXEC)    = 0
9432  connect(12, {sa_family=AF_FILE, path="/var/run/xenstored/socket"...}, 110) = 0
9432  open("/proc/xen/privcmd", O_RDWR) = 13
9432  fcntl(13, F_GETFD)                = 0
9432  fcntl(13, F_SETFD, FD_CLOEXEC)    = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(12, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(12, "3\0"..., 2)            = 2
9432  read(12, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  read(12, "/local/domain/3\0"..., 16) = 16
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(12, "\v\0\0\0\0\0\0\0\0\0\0\0&\0\0\0"..., 16) = 16
9432  write(12, "/local/domain/3/console/tty\0"..., 28) = 28
9432  write(12, "/dev/pts/2"..., 10)    = 10
9432  read(12, "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9432  read(12, "OK\0"..., 3)            = 3
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  close(12)                         = 0
9432  close(13)                         = 0
9432  write(2, "qemu_map_cache_init nr_buckets = 10000 size 3145728\n"..., 52) = 52
9432  mmap(NULL, 3145728, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANONYMOUS, -1, 0) = 0x7f58836de000
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1db0) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  write(2, "shared page at pfn feffd\n"..., 25) = 25
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f5886de0000
9432  ioctl(4, SNDCTL_DSP_SPEED or SOUND_PCM_READ_RATE, 0x7fff8ede1dc0) = 0
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1db0) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  write(2, "buffered io page at pfn feffb\n"..., 30) = 30
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f5886ddf000
9432  ioctl(4, SNDCTL_DSP_SPEED or SOUND_PCM_READ_RATE, 0x7fff8ede1dc0) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0"..., 16) = 16
9432  write(5, "3\0"..., 2 <unfinished ...>
9530  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0"..., 16) = 16
9432  <... write resumed> )             = 2
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 21, NULL <unfinished ...>
9530  read(5, "/local/domain/3\0"..., 16) = 16
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0"..., 16 <unfinished ...>
9530  <... futex resumed> )             = 1
9432  <... write resumed> )             = 16
9432  write(5, "/local/domain/3/vm\0"..., 19 <unfinished ...>
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 19
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 23, NULL <unfinished ...>
9530  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0"..., 16) = 16
9530  read(5, "/vm/46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12"..., 40) = 40
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "Guest uuid = 46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12\n"..., 50) = 50
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0008\0\0\0"..., 16 <unfinished ...>
9530  <... futex resumed> )             = 1
9432  <... write resumed> )             = 16
9432  write(5, "/vm/46f22c82-8a3d-47e3-b9c5-3b5f6eaf7a12/rtc/timeoffset\0"..., 56 <unfinished ...>
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 56
9432  futex(0x1200b04, FUTEX_WAIT_PRIVATE, 25, NULL <unfinished ...>
9530  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0"..., 16) = 16
9530  read(5, "0"..., 1)                = 1
9530  futex(0x1200b04, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1200b00, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
9530  <... futex resumed> )             = 1
9530  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 1
9530  read(5,  <unfinished ...>
9432  <... futex resumed> )             = 0
9432  futex(0x1200ad8, FUTEX_WAKE_PRIVATE, 1) = 0
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "Time offset set 0\n"..., 18) = 18
9432  brk(0x126f000)                    = 0x126f000
9432  open("/proc/mounts", O_RDONLY)    = 12
9432  fstat(12, {st_dev=makedev(0, 3), st_ino=18527, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dde000
9432  read(12, "rootfs / rootfs rw 0 0\n/dev/root / ext3 rw,noatime,errors=continue,data=ordered 0 0\n/proc /proc proc rw,nosuid,nodev,noexec 0 0\nsysfs /sys sysfs rw,nosuid,nodev,noexec 0 0\nudev /dev tmpfs rw,nosuid,size=10240k,nr_inodes=425308,mode=755 0 0\ndevpts /dev/pts devpts rw,nosuid,noexec,gid=5,mode=620 0 0\nxen /proc/xen xenfs rw 0 0\nshm /dev/shm tmpfs rw,nosuid,nodev,noexec,size=1701232k,nr_inodes=425308 0 0\nusbfs /proc/bus/usb usbfs rw,nosuid,noexec,devgid=85,devmode=664 0 0\nbinfmt_misc /proc/sys/fs/binf"..., 1024) = 748
9432  close(12)                         = 0
9432  munmap(0x7f5886dde000, 4096)      = 0
9432  open("/sys/class/xen/evtchn/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
9432  open("/proc/mounts", O_RDONLY)    = 12
9432  fstat(12, {st_dev=makedev(0, 3), st_ino=18527, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dde000
9432  read(12, "rootfs / rootfs rw 0 0\n/dev/root / ext3 rw,noatime,errors=continue,data=ordered 0 0\n/proc /proc proc rw,nosuid,nodev,noexec 0 0\nsysfs /sys sysfs rw,nosuid,nodev,noexec 0 0\nudev /dev tmpfs rw,nosuid,size=10240k,nr_inodes=425308,mode=755 0 0\ndevpts /dev/pts devpts rw,nosuid,noexec,gid=5,mode=620 0 0\nxen /proc/xen xenfs rw 0 0\nshm /dev/shm tmpfs rw,nosuid,nodev,noexec,size=1701232k,nr_inodes=425308 0 0\nusbfs /proc/bus/usb usbfs rw,nosuid,noexec,devgid=85,devmode=664 0 0\nbinfmt_misc /proc/sys/fs/binf"..., 1024) = 748
9432  close(12)                         = 0
9432  munmap(0x7f5886dde000, 4096)      = 0
9432  open("/sys/class/misc/evtchn/dev", O_RDONLY) = 12
9432  fstat(12, {st_dev=makedev(0, 0), st_ino=3659, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5886dde000
9432  read(12, "10:62\n"..., 4096)      = 6
9432  close(12)                         = 0
9432  munmap(0x7f5886dde000, 4096)      = 0
9432  lstat("/dev/xen/evtchn", {st_dev=makedev(0, 13), st_ino=1803, st_mode=S_IFCHR|0660, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_rdev=makedev(10, 62), st_atime=2009/02/23-17:01:27, st_mtime=2009/02/23-17:01:27, st_ctime=2009/02/23-17:01:27}) = 0
9432  open("/dev/xen/evtchn", O_RDWR)   = 12
9432  ioctl(12, EVIOCGVERSION, 0x7fff8ede1670) = 27
9432  ioctl(12, EVIOCGVERSION, 0x7fff8ede1670) = 28
9432  write(2, "populating video RAM at ff000000\n"..., 33) = 33
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  mlock(0x1265000, 12288)           = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1550) = 1024
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  munlock(0x1265000, 12288)         = 0
9432  write(2, "mapping video RAM from ff000000\n"..., 32) = 32
9432  mmap(NULL, 4194304, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f58832de000
9432  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff8ede1520) = 0
9432  access("/sys/bus/pci", R_OK)      = 0
9432  open("/sys/bus/pci/devices", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 13
9432  fstat(13, {st_dev=makedev(0, 0), st_ino=47, st_mode=S_IFDIR|0755, st_nlink=2, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/23-17:02:21, st_mtime=2009/02/23-17:01:26, st_ctime=2009/02/23-17:01:26}) = 0
9432  fcntl(13, F_GETFD)                = 0x1 (flags FD_CLOEXEC)
9432  getdents(13, {{d_ino=47, d_off=1, d_reclen=24, d_name="."} {d_ino=45, d_off=787, d_reclen=24, d_name=".."} {d_ino=787, d_off=808, d_reclen=32, d_name="0000:00:00.0"} {d_ino=808, d_off=827, d_reclen=32, d_name="0000:00:01.0"} {d_ino=827, d_off=846, d_reclen=32, d_name="0000:00:03.0"} {d_ino=846, d_off=865, d_reclen=32, d_name="0000:00:03.2"} {d_ino=865, d_off=884, d_reclen=32, d_name="0000:00:03.3"} {d_ino=884, d_off=905, d_reclen=32, d_name="0000:00:19.0"} {d_ino=905, d_off=926, d_reclen=32, d_name="0000:00:1a.0"} {d_ino=926, d_off=945, d_reclen=32, d_name="0000:00:1a.1"} {d_ino=945, d_off=964, d_reclen=32, d_name="0000:00:1a.7"} {d_ino=964, d_off=985, d_reclen=32, d_name="0000:00:1b.0"} {d_ino=985, d_off=1006, d_reclen=32, d_name="0000:00:1c.0"} {d_ino=1006, d_off=1027, d_reclen=32, d_name="0000:00:1d.0"} {d_ino=1027, d_off=1048, d_reclen=32, d_name="0000:00:1d.1"} {d_ino=1048, d_off=1067, d_reclen=32, d_name="0000:00:1d.2"} {d_ino=1067, d_off=1088, d_reclen=32, d_name="0000:00:1d.7"} {d_ino=1088, d_off=1109, d_reclen=32, d_name="0000:00:1e.0"} {d_ino=1109, d_off=1128, d_reclen=32, d_name="0000:00:1f.0"} {d_ino=1128, d_off=1147, d_reclen=32, d_name="0000:00:1f.2"} {d_ino=1147, d_off=1166, d_reclen=32, d_name="0000:00:1f.3"} {d_ino=1166, d_off=1185, d_reclen=32, d_name="0000:01:00.0"} {d_ino=1185, d_off=1224, d_reclen=32, d_name="0000:01:00.1"} {d_ino=1224, d_off=1243, d_reclen=32, d_name="0000:03:02.0"} {d_ino=1243, d_off=1262, d_reclen=32, d_name="0000:03:02.1"} {d_ino=1262, d_off=2147483647, d_reclen=32, d_name="0000:03:02.2"}}, 4096) = 816
9432  open("/sys/bus/pci/devices/0000:00:00.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=774, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:00.0/irq", O_RDONLY) = 14
9432  read(14, "0\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:00.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:00.0/device", O_RDONLY) = 14
9432  read(14, "0x29b0\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:00.0/class", O_RDONLY) = 14
9432  read(14, "0x060000\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:01.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=795, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000d000 0x000000000000dfff 0x0000000000000100\n0x00000000fe900000 0x00000000feafffff 0x00000"..., 4096) = 684
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:01.0/irq", O_RDONLY) = 14
9432  read(14, "16\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:01.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:01.0/device", O_RDONLY) = 14
9432  read(14, "0x29b1\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:01.0/class", O_RDONLY) = 14
9432  read(14, "0x060400\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=814, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000fedad000 0x00000000fedad00f 0x0000000000020204\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:03.0/irq", O_RDONLY) = 14
9432  read(14, "11\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.0/device", O_RDONLY) = 14
9432  read(14, "0x29b4\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.0/class", O_RDONLY) = 14
9432  read(14, "0x078000\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.2/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=833, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x000000000000fe80 0x000000000000fe87 0x0000000000020101\n0x000000000000fe90 0x000000000000fe93 0x0000000000020101\n0x000000000000fea0 0x000000000000fea7 0x0000000000020101\n0x000000000000feb0 0x000000000000feb3 0x0000000000020101\n0x000000000000fef0 0x000000000000feff 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:03.2/irq", O_RDONLY) = 14
9432  read(14, "9\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.2/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.2/device", O_RDONLY) = 14
9432  read(14, "0x29b6\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.2/class", O_RDONLY) = 14
9432  read(14, "0x010185\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.3/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=852, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x000000000000ec98 0x000000000000ec9f 0x0000000000020101\n0x00000000febda000 0x00000000febdafff 0x0000000000020200\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:03.3/irq", O_RDONLY) = 14
9432  read(14, "5\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.3/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.3/device", O_RDONLY) = 14
9432  read(14, "0x29b7\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:03.3/class", O_RDONLY) = 14
9432  read(14, "0x070002\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:19.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=871, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000febe0000 0x00000000febfffff 0x0000000000020200\n0x00000000febdb000 0x00000000febdbfff 0x0000000000020200\n0x000000000000ecc0 0x000000000000ecdf 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:19.0/irq", O_RDONLY) = 14
9432  read(14, "21\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:19.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:19.0/device", O_RDONLY) = 14
9432  read(14, "0x10bd\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:19.0/class", O_RDONLY) = 14
9432  read(14, "0x020000\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=892, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ff20 0x000000000000ff3f 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.0/irq", O_RDONLY) = 14
9432  read(14, "16\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.0/device", O_RDONLY) = 14
9432  read(14, "0x2937\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.0/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.1/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=913, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ff00 0x000000000000ff1f 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.1/irq", O_RDONLY) = 14
9432  read(14, "17\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.1/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.1/device", O_RDONLY) = 14
9432  read(14, "0x2938\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.1/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.7/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=932, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000febd9c00 0x00000000febd9fff 0x0000000000020200\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.7/irq", O_RDONLY) = 14
9432  read(14, "22\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.7/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.7/device", O_RDONLY) = 14
9432  read(14, "0x293c\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1a.7/class", O_RDONLY) = 14
9432  read(14, "0x0c0320\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1b.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=951, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000febdc000 0x00000000febdffff 0x0000000000020204\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1b.0/irq", O_RDONLY) = 14
9432  read(14, "11\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1b.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1b.0/device", O_RDONLY) = 14
9432  read(14, "0x293e\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1b.0/class", O_RDONLY) = 14
9432  read(14, "0x040300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1c.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=972, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x00000000fe800000 0x00000000fe8fffff 0x00000"..., 4096) = 684
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1c.0/irq", O_RDONLY) = 14
9432  read(14, "16\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1c.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1c.0/device", O_RDONLY) = 14
9432  read(14, "0x2940\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1c.0/class", O_RDONLY) = 14
9432  read(14, "0x060400\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=993, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ff80 0x000000000000ff9f 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.0/irq", O_RDONLY) = 14
9432  read(14, "23\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.0/device", O_RDONLY) = 14
9432  read(14, "0x2934\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.0/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.1/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1014, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ff60 0x000000000000ff7f 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.1/irq", O_RDONLY) = 14
9432  read(14, "17\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.1/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.1/device", O_RDONLY) = 14
9432  read(14, "0x2935\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.1/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.2/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1035, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ff40 0x000000000000ff5f 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.2/irq", O_RDONLY) = 14
9432  read(14, "18\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.2/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.2/device", O_RDONLY) = 14
9432  read(14, "0x2936\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.2/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.7/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1054, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000ff980800 0x00000000ff980bff 0x0000000000020200\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.7/irq", O_RDONLY) = 14
9432  read(14, "23\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.7/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.7/device", O_RDONLY) = 14
9432  read(14, "0x293a\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1d.7/class", O_RDONLY) = 14
9432  read(14, "0x0c0320\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1e.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1075, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000c000 0x000000000000cfff 0x0000000000000100\n0x00000000fe700000 0x00000000fe7fffff 0x00000"..., 4096) = 684
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1e.0/irq", O_RDONLY) = 14
9432  read(14, "0\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1e.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1e.0/device", O_RDONLY) = 14
9432  read(14, "0x244e\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1e.0/class", O_RDONLY) = 14
9432  read(14, "0x060401\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1096, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.0/irq", O_RDONLY) = 14
9432  read(14, "0\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.0/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.0/device", O_RDONLY) = 14
9432  read(14, "0x2914\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.0/class", O_RDONLY) = 14
9432  read(14, "0x060100\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.2/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1115, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x000000000000fe00 0x000000000000fe07 0x0000000000020101\n0x000000000000fe10 0x000000000000fe13 0x0000000000020101\n0x000000000000fe20 0x000000000000fe27 0x0000000000020101\n0x000000000000fe30 0x000000000000fe33 0x0000000000020101\n0x000000000000fec0 0x000000000000fedf 0x0000000000020101\n0x00000000ff970000 0x00000000ff9707ff 0x0000000000020200\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.2/irq", O_RDONLY) = 14
9432  read(14, "18\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.2/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.2/device", O_RDONLY) = 14
9432  read(14, "0x2922\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.2/class", O_RDONLY) = 14
9432  read(14, "0x010601\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.3/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1134, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000febd9b00 0x00000000febd9bff 0x0000000000020204\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ece0 0x000000000000ecff 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.3/irq", O_RDONLY) = 14
9432  read(14, "9\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.3/vendor", O_RDONLY) = 14
9432  read(14, "0x8086\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.3/device", O_RDONLY) = 14
9432  read(14, "0x2930\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:00:1f.3/class", O_RDONLY) = 14
9432  read(14, "0x0c0500\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1153, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000d0000000 0x00000000dfffffff 0x000000000002120c\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x00000000fe9e0000 0x00000000fe9effff 0x0000000000020204\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000dc00 0x000000000000dcff 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x00000000fea00000 0x00000000fea1ffff 0x0000000000027202\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:01:00.0/irq", O_RDONLY) = 14
9432  read(14, "11\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.0/vendor", O_RDONLY) = 14
9432  read(14, "0x1002\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.0/device", O_RDONLY) = 14
9432  read(14, "0x7187\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.0/class", O_RDONLY) = 14
9432  read(14, "0x030000\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.1/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1172, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000fe9f0000 0x00000000fe9fffff 0x0000000000020204\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:01:00.1/irq", O_RDONLY) = 14
9432  read(14, "0\n"..., 256)           = 2
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.1/vendor", O_RDONLY) = 14
9432  read(14, "0x1002\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.1/device", O_RDONLY) = 14
9432  read(14, "0x71a7\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:01:00.1/class", O_RDONLY) = 14
9432  read(14, "0x038000\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.0/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1211, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000ccc0 0x000000000000ccdf 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:03:02.0/irq", O_RDONLY) = 14
9432  read(14, "18\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.0/vendor", O_RDONLY) = 14
9432  read(14, "0x1106\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.0/device", O_RDONLY) = 14
9432  read(14, "0x3038\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.0/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.1/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1230, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x000000000000cce0 0x000000000000ccff 0x0000000000020101\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:03:02.1/irq", O_RDONLY) = 14
9432  read(14, "19\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.1/vendor", O_RDONLY) = 14
9432  read(14, "0x1106\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.1/device", O_RDONLY) = 14
9432  read(14, "0x3038\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.1/class", O_RDONLY) = 14
9432  read(14, "0x0c0300\n"..., 256)    = 9
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.2/resource", O_RDONLY) = 14
9432  fstat(14, {st_dev=makedev(0, 0), st_ino=1249, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/23-17:01:42, st_mtime=2009/02/23-17:01:42, st_ctime=2009/02/23-17:01:42}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(14, "0x00000000fe7fff00 0x00000000fe7fffff 0x0000000000020200\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n0x0000000000000000 0x0000000000000000 0x0000000000000000\n"..., 4096) = 399
9432  close(14)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  open("/sys/bus/pci/devices/0000:03:02.2/irq", O_RDONLY) = 14
9432  read(14, "16\n"..., 256)          = 3
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.2/vendor", O_RDONLY) = 14
9432  read(14, "0x1106\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.2/device", O_RDONLY) = 14
9432  read(14, "0x3104\n"..., 256)      = 7
9432  close(14)                         = 0
9432  open("/sys/bus/pci/devices/0000:03:02.2/class", O_RDONLY) = 14
9432  read(14, "0x0c0320\n"..., 256)    = 9
9432  close(14)                         = 0
9432  getdents(13, {}, 4096)            = 0
9432  close(13)                         = 0
9432  gettimeofday({1235418015, 365637}, NULL) = 0
9432  open("/etc/localtime", O_RDONLY)  = 13
9432  fstat(13, {st_dev=makedev(8, 2), st_ino=262662, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3661, st_atime=2009/02/23-17:01:27, st_mtime=2008/12/11-09:26:57, st_ctime=2008/12/11-09:26:57}) = 0
9432  fstat(13, {st_dev=makedev(8, 2), st_ino=262662, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3661, st_atime=2009/02/23-17:01:27, st_mtime=2008/12/11-09:26:57, st_ctime=2008/12/11-09:26:57}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  read(13, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\7\0\0\0\0\0\0\0\362\0\0\0\7\0\0\0\r\233&\255\240\233\326\5 \234\3170\240\235\244\303\240\236\234\235\240\237\227\32\240\240\205\272 \241v\374\240\242e\234 \243{\310\240\244N\270\240\245?\373 \246%` \247'\306 \250*, \250\353\370\240\252\0\323\240\252\325\25 \253\351\360 \254\307l \255\311\322 \256\247N \257\240y\240\260\2070 \261\222\320\240\262pL\240\263r\262\240\264P.\240\265IZ \2660\20\240\2672v\240\270\17\362\240\271\22X\240\271\357\324\240\272\351\0 \273\330\361 \274\333W \275\270\323 \276\261\376\240\277\230\265 \300\233\33 \301x\227 \302z\375 \303Xy \304Q\244\240\3058[ \306:\301 \307X\326\240\307\332\t\240\312\26&\220\312\227Y\220\313\321\36\220\314w;\220\315\261\0\220\316`X\20\317\220\342\220\320n^\220\321r\26\20\321\3732\20\322i\376 \323c)\240\324I\340 \325\36!\240\325B\375\220\325\337\340\20\326N\254 \326\376\3\240\330.\216 \330\371\225 \332\16p \332\353\354 \333\345\27\240\334\313\316 \335\304\371\240\336\264\352\240\337\256\26 \340\224\314\240\341rH\240\342kt \343R*\240\344T\220\240\3452\f\240\346=\255 \347\33) \350\24T\240\350\373\v \351\375q \352\332\355 \353\335S \354\272\317 \355\263\372\240\356\232\261 \357\201g\240\360\237} \361aI\240\362\177_ \363Jf \364_A \365!\r\240\366?# \367\0\357\240\370\37\5 \370\340\321\240\371\376\347 \372\300\263\240\373\350\3\240\374{\253\240\375\307\273p\3p\306 \4)X \5P\250 \6\t: \0070\212 \7\351\34 \t"..., 4096) = 3661
9432  lseek(13, -2338, SEEK_CUR)        = 1323
9432  read(13, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\10\0\0\0\0\0\0\0\363\0\0\0\10\0\0\0\21\377\377\377\377\32]\t\313\377\377\377\377\233&\255\240\377\377\377\377\233\326\5 \377\377\377\377\234\3170\240\377\377\377\377\235\244\303\240\377\377\377\377\236\234\235\240\377\377\377\377\237\227\32\240\377\377\377\377\240\205\272 \377\377\377\377\241v\374\240\377\377\377\377\242e\234 \377\377\377\377\243{\310\240\377\377\377\377\244N\270\240\377\377\377\377\245?\373 \377\377\377\377\246%` \377\377\377\377\247'\306 \377\377\377\377\250*, \377\377\377\377\250\353\370\240\377\377\377\377\252\0\323\240\377\377\377\377\252\325\25 \377\377\377\377\253\351\360 \377\377\377\377\254\307l \377\377\377\377\255\311\322 \377\377\377\377\256\247N \377\377\377\377\257\240y\240\377\377\377\377\260\2070 \377\377\377\377\261\222\320\240\377\377\377\377\262pL\240\377\377\377\377\263r\262\240\377\377\377\377\264P.\240\377\377\377\377\265IZ \377\377\377\377\2660\20\240\377\377\377\377\2672v\240\377\377\377\377\270\17\362\240\377\377\377\377\271\22X\240\377\377\377\377\271\357\324\240\377\377\377\377\272\351\0 \377\377\377\377\273\330\361 \377\377\377\377\274\333W \377\377\377\377\275\270\323 \377\377\377\377\276\261\376\240\377\377\377\377\277\230\265 \377\377\377\377\300\233\33 \377\377\377\377\301x\227 \377\377\377\377\302z\375 \377\377\377\377\303Xy \377\377\377\377\304Q\244\240\377\377\377\377\3058[ \377\377\377\377\306:\301 \377\377\377\377\307X\326\240\377\377\377\377\307\332\t\240\377\377\377\377\312\26&\220\377\377\377\377\312\227Y\220\377\377\377\377\313\321\36\220\377\377\377\377\314w;\220\377\377\377\377\315\261\0\220\377\377\377\377\316`X\20\377\377\377\377\317\220\342\220\377"..., 4096) = 2338
9432  close(13)                         = 0
9432  munmap(0x7f58832dd000, 4096)      = 0
9432  fstat(1, {st_dev=makedev(8, 2), st_ino=361169, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=480, st_atime=2009/02/23-19:40:15, st_mtime=2009/02/23-19:40:15, st_ctime=2009/02/23-19:40:15}) = 0
9432  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832dd000
9432  write(1, "Register xen platform.\n"..., 23) = 23
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede15a0) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  write(1, "Done register platform.\n"..., 24) = 24
9432  stat("/etc/disable-guest-log-throttle", 0x7fff8ede1610) = -1 ENOENT (No such file or directory)
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede15d0) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 232163172}) = 0
9432  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f58832bc000
9432  lseek(8, 0, SEEK_END)             = 2147483648
9432  lseek(8, 0, SEEK_SET)             = 0
9432  read(8, "3\300\216\320\274\0|\373P\7P\37\374\276\33|\277\33\6PW\271\345\1\363\244\313\275\276\7\261\0048n\0|\tu\23\203\305\20\342\364\315\30\213\365\203\306\20It\0318,t\366\240\265\7\264\7\213\360\254<\0t\374\273\7\0\264\16\315\20\353\362\210N\20\350F\0s*\376F\20\200~\4\vt\v\200~\4\ft\5\240\266\7u\322\200F\2\6\203F\10\6\203V\n\0\350!\0s\5\240\266\7\353\274\201>\376}U\252t\v\200~\20\0t\310\240\267\7\353\251\213\374\36W\213\365\313\277\5\0\212V\0\264\10\315\23r#\212\301$?\230\212\336\212\374C\367\343\213\321\206\326\261\6\322\356B\367\3429V\nw#r\0059F\10s\34\270\1\2\273\0|\213N\2\213V\0\315\23sQOtN2\344\212V\0\315\23\353\344\212V\0`\273\252U\264A\315\23r6\201\373U\252u0\366\301\1t+a`j\0j\0\377v\n\377v\10j\0h\0|j\1j\20\264B\213\364\315\23aas\16Ot\v2\344\212V\0\315\23\353\326a\371\303Invalid partition table\0Error loading operating system\0Missing operating system\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,Dc\313\16\314\16\0\0\200\1\1\0\7\177\277\6?\0\0\0A\334?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 512) = 512
9432  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f588329b000
9432  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f588327a000
9432  lseek(9, 0, SEEK_END)             = 607250432
9432  lseek(9, 0, SEEK_SET)             = 0
9432  read(9, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 512) = 512
9432  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5883259000
9432  brk(0x1290000)                    = 0x1290000
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0007\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/device-model/3/xen_extended_power_mgmt\0"..., 55 <unfinished ...>
9530  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0"..., 16) = 16
9530  read(5, "ENOENT\0"..., 7)         = 7
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 55
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "xs_read(/local/domain/0/device-model/3/xen_extended_power_mgmt): read error\n"..., 76) = 76
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 234416914}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 234488521}) = 0
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0,\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/device-model/3/state\0"..., 37) = 37
9432  write(5, "running"..., 7 <unfinished ...>
9530  <... read resumed> "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0"..., 16) = 16
9530  read(5, "OK\0"..., 3)             = 3
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 7
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  pipe([13, 14])                    = 0
9432  write(14, "\0"..., 1)             = 1
9432  select(14, [3 6 10 11 12 13], [], [], {0, 10000}) = 4 (in [3 11 12 13], left {0, 9991})
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0*\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/params\0"..., 42 <unfinished ...>
9530  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0P\0\0\0"..., 16) = 16
9530  read(5, "/mnt/jos-tb1_store/CD Images/Other/EN Win_XP_Pro_w_SP2/en_winxp_pro_with_sp2.iso"..., 80) = 80
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 42
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  write(2, "medium change watch on `hdc' (index: 1): /mnt/jos-tb1_store/CD Images/Other/EN Win_XP_Pro_w_SP2/en_winxp_pro_with_sp2.iso\n"..., 122) = 122
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/backend/vbd/3/5632/type\0"..., 40 <unfinished ...>
9530  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0"..., 16) = 16
9530  read(5, "file"..., 4)             = 4
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 40
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  write(2, "I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0\n"..., 70) = 70
9432  read(11, 0x7fff8ede17c0, 1)       = -1 EIO (Input/output error)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 245631241}) = 0
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0\310\236M@\0@\6\203\331\n\0\4\3\n\0\0\7\3J\10\1\25\314y\317IK\335(\200\30\31 MV\0\0\1\1\10\n\0\214\352\247\22\234\256\36\200\0\0\220\244]1^\0\0\0\0\0\0\0\2\0\1\206\243\0\0\0\3\0\0\0\4\0\0\0\1\0\0\0L\0A\255J\0\0\0\tlocalhost\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\6\0\0\0\n\0\0\0\v\0\0\0\24\0\0\0\32\0\0\0\33\0\0\0\0\0\0\0\0\0\0\0\24\1\0\6\0\303\344\237Q]dK)\270\"*\264M\0\234\210\0\0\0\37"..., 4096) = 214
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 245880521}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 245946087}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 246052686}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 3 (in [3 12 13], left {0, 9995})
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/device-model/3/logdirty/key\0"..., 44 <unfinished ...>
9530  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0"..., 16) = 16
9530  read(5, "ENOENT\0"..., 7)         = 7
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 44
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  read(12, "\34\0\0\0"..., 4)       = 4
9432  write(12, "\34\0\0\0"..., 4)      = 4
9432  write(2, "I/O request not ready: 0, ptr: 0, port: 0, data: 0, count: 0, size: 0\n"..., 70) = 70
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0004\236N@\0@\6\204l\n\0\4\3\n\0\0\7\3J\10\1\25\314zcIK\335\244\200\20\31 \326\310\0\0\1\1\10\n\0\214\352\247\22\234\256\220"..., 4096) = 66
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 247193857}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 247258439}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 13], left {0, 9997})
9432  read(13, "\0"..., 1)              = 1
9432  rt_sigaction(SIGPIPE, {0x1, [], SA_RESTORER, 0x7f588631d3c0}, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, 8) = 0
9432  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0'\0\0\0"..., 16) = 16
9432  write(5, "/local/domain/0/device-model/3/command\0"..., 39 <unfinished ...>
9530  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0"..., 16) = 16
9530  read(5, "ENOENT\0"..., 7)         = 7
9530  read(5,  <unfinished ...>
9432  <... write resumed> )             = 39
9432  rt_sigaction(SIGPIPE, {0x1, ~[KILL STOP RTMIN RT_1], SA_RESTORER, 0x7f588631d3c0}, NULL, 8) = 0
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0\324\236O@\0@\6\203\313\n\0\4\3\n\0\0\7\3J\10\1\25\314zcIK\335\244\200\30\31 \267a\0\0\1\1\10\n\0\214\352\302\22\234\256\220\200\0\0\234\245]1^\0\0\0\0\0\0\0\2\0\1\206\243\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0L\0A\255J\0\0\0\tlocalhost\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\6\0\0\0\n\0\0\0\v\0\0\0\24\0\0\0\32\0\0\0\33\0\0\0\0\0\0\0\0\0\0\0$\1\0\6\2\303\344\237Q]dK)\270\"*\264M\0\234\210\300=\200A\0\0\0\0\337\217s@\0\0\0\0"..., 4096) = 226
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 248251681}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 248315988}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [3], left {0, 9997})
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0\330\236P@\0@\6\203\306\n\0\4\3\n\0\0\7\3J\10\1\25\314{\3IK\336\30\200\30\31 \265\16\0\0\1\1\10\n\0\214\352\302\22\234\256\227\200\0\0\240\246]1^\0\0\0\0\0\0\0\2\0\1\206\243\0\0\0\3\0\0\0\4\0\0\0\1\0\0\0L\0A\255J\0\0\0\tlocalhost\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\6\0\0\0\n\0\0\0\v\0\0\0\24\0\0\0\32\0\0\0\33\0\0\0\0\0\0\0\0\0\0\0$\1\0\6\2\303\344\237Q]dK)\270\"*\264M\0\234\210\300=\200A\0\0\0\0\337\217s@\0\0\0\0\0\0\0-"..., 4096) = 230
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 248634829}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 248698775}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [3], left {0, 9997})
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0004\236Q@\0@\6\204i\n\0\4\3\n\0\0\7\3J\10\1\25\314{\247IK\336\224\200\20\31 \324J\0\0\1\1\10\n\0\214\352\352\22\234\256\227"..., 4096) = 66
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 248947187}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 249048744}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 260098437}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 260168089}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 271186313}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 271254983}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 282099846}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 282168190}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [3], left {0, 5008})
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0\324\236R@\0@\6\203\310\n\0\4\3\n\0\0\7\3J\10\1\25\314{\247IK\336\224\200\30\31 \262\221\0\0\1\1\10\n\0\214\353W\22\234\256\227\200\0\0\234\247]1^\0\0\0\0\0\0\0\2\0\1\206\243\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0L\0A\255J\0\0\0\tlocalhost\0\0\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\6\0\0\0\n\0\0\0\v\0\0\0\24\0\0\0\32\0\0\0\33\0\0\0\0\0\0\0\0\0\0\0$\1\0\6\2\303\344\237Q]dK)\270\"*\264M\0\234\210\300=\200A\0\0\0\0\337\217s@\0\0\0\0"..., 4096) = 226
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 287562672}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 287629963}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [3], left {0, 9997})
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\0\0004\236S@\0@\6\204g\n\0\4\3\n\0\0\7\3J\10\1\25\314|GIK\337\10\200\20\31 \322\244\0\0\1\1\10\n\0\214\353W\22\234\256\274"..., 4096) = 66
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 287887859}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 287953944}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 299098664}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 299180316}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 310104324}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 310173604}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 321254563}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 321323820}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 332094373}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 332162672}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 0 (Timeout)
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 343117758}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 343185737}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 0})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\20\0l\35\0@\0@\6\0029\n\0\4\3\n\0\3A\0\26\f\352\r^~\16\203\246\0202P\30.\20\302\311\0\0_9\37%\21\32K\215\304\370\246.\256\235\337X\211\345B\352\r\202\260\37P/\25078gA\2728\305\253\211\261\203$\371Y\371\n\251p\304\362\262\256\354\203\276-\221y\323\207\3\250a&g\327*\204n\227\255"..., 4096) = 122
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 365876059}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 365943767}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 366019096}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9995})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1a60) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 366626732}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 366696163}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 367069594}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 367136058}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1a60) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 367733991}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 367802346}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 368207506}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 368274041}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1a60) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 369274408}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 369344624}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 369718638}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 369785328}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mlock(0x7fff8ede1000, 4096)       = 0
9432  ioctl(4, SNDCTL_DSP_RESET, 0x7fff8ede1a60) = 0
9432  munlock(0x7fff8ede1000, 4096)     = 0
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 370371295}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 370440943}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 370835279}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 370901819}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 371277336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 371343793}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 371708826}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 371775283}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 372148462}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 372214058}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 372579523}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 372646062}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 373019053}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 373086078}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 373494745}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 373560292}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 373925983}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 373992390}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 374365043}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 374430549}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 374795972}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 374862324}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 375235176}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 375300644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 375665925}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 375732393}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 376104877}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 376199592}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 376564677}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 376630213}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 376994896}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 377069319}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 377433528}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 377500154}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 377863270}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 377930193}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 378303079}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 378368622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 378743019}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 378808495}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 379209530}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 379275025}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 379639354}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 379704754}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 380077708}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 380143217}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 380507521}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 380572986}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 380937747}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 381010587}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 381374748}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 381441686}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 381837221}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 381903652}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 382275094}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 382341551}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 382705377}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 382770424}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 383142550}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 383209466}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 383575694}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 383641986}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 384025021}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 384090854}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 384482961}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 384549527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 384913146}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 384978114}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 385343809}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 385408111}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 385763122}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 385827398}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 386190232}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 386254493}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 386609074}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 386673321}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 387035906}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 387100540}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 387483324}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 387547590}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 387902314}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 387966624}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 388331751}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 388396095}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 388750914}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 388815258}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 389189083}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 389253480}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 389608422}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 389672801}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 390063137}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 390127609}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 390482100}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 390546317}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 390901102}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 390965386}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 391328448}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 391392766}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 391747201}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 391811474}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 392174514}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 392238824}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 392593684}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 392658036}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 393049214}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 393113630}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 393470177}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 393534597}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 393890047}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 393954576}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 394326826}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 394391076}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 394745211}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 394809502}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 395171035}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 395235251}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 395617388}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 395681579}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 396044024}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 396108478}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 396462698}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 396526987}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 396881286}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 396945555}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 397308193}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 397372417}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 397726743}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 397791099}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 398153248}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 398217517}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\20\0l\35\1@\0@\6\0028\n\0\4\3\n\0\3A\0\26\f\352\r^~R\203\246\0202P\30.\20\202\223\0\0|;_\340\16W\226\237\177\242\263\203a\244\212\204@\232\31\327mt\355\6l8\201/\323\355\277\212l\v\177\n\t\31n*\370~\374-o\273\306 \6\313\6\370\367\24w\266\351Z(\31p\202\276\346\255\r\351\215"..., 4096) = 122
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 399616392}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 399680932}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\20\0|\35\2@\0@\6\2'\n\0\4\3\n\0\3A\0\26\f\352\r^~\226\203\246\0202P\30.\20\205v\0\0c\253\"U\371lcT\25S\312\211\220\210}y;B\n\366\223o\251F\227\233\364FN\307\257\27\34\317\252\24\243\255\3508\6\362K&\202\fU\274\3407\33\261\1\320\313k\31\306\230\354ni(\271\244\214\6\0107'q\"I\247?\2668\2300m\241\366_\263"..., 4096) = 138
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 400182728}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 400247151}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 400602729}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 400668686}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 401031937}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 401096510}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 401451483}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 401515707}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 401870965}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 401935328}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 402318593}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 402382869}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 402737410}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 402801623}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 403164975}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 403229176}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 403586306}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 403650579}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 404014909}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 404080501}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 404434691}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 404511720}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 404867576}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 404931950}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 405296066}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 405360380}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 405715469}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 405779696}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 406141586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 406205911}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 406560614}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 406624864}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 406981569}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 407055229}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 407409574}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 407473768}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 407828112}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 407892408}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 408256023}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 408320394}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 408675036}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 408739383}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 409103108}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 409167440}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 409522191}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 409599028}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 409954929}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 410027724}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 410382441}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 410446744}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 410801325}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 410865632}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 411229582}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 411293912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 411650564}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 411714954}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 412077279}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 412141744}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 412496713}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 412560937}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 412915684}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 412979953}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 413342320}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 413408833}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 413763479}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 413827827}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 414190348}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 414254644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 414609455}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 414686370}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 415049169}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 415113668}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 415468727}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 415533052}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 415887833}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 415952162}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 416314105}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 416378332}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 416732947}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 416797213}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 417159396}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 417223740}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 417578585}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 417642824}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 417997657}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 418070460}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 418425192}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 418489548}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 418844494}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 418908909}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 419271017}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 419335320}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 419690165}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 419766659}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 420129992}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 420194273}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 420548877}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 420613183}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 420967585}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 421039684}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 421394533}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 421458772}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 421813136}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 421877397}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 422239520}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 422303759}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 422657938}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 422722136}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 423083977}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 423148452}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 423505132}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 423569424}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 423923727}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 423987910}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 424352077}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 424416226}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 424770319}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 424846020}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 425209955}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 425274355}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 425629373}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 425693680}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 426056009}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 426120361}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 426475232}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 426539407}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 426893579}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 426957784}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 427319324}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 427383589}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 427737754}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 427801895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 428164153}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 428228377}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 428582970}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 428647235}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 429008632}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 429074074}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 429428171}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 429492402}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 429847176}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 429922933}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 430285646}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 430350010}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 430705001}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 430769428}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 431132141}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 431196470}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 431551432}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 431615656}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 431970527}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 432043532}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 432398291}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 432462499}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 432816787}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 432880959}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 433244405}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 433308587}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 433665079}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 433729404}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 434091287}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 434155522}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 434509881}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 434574075}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 434928981}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 440332826}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 440691302}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 440755748}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 441119351}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 441183835}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 441539654}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 441604031}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 441960320}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 442032348}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 442387990}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 442452413}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 442808017}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 442872463}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 443236319}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 443300784}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 443658989}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 443723408}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 444087294}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 444151876}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 444507995}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 444572402}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 444927755}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 444992126}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 445355636}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 445436765}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 445792094}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 445856292}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 446218279}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 446282519}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 446636668}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 446700903}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 447063845}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 447128295}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 447482594}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 447546890}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 447901513}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 447965827}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 448329348}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 448393610}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 448748590}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 448812870}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 449175658}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 449239864}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 449594524}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 449658872}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 450020645}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 450085227}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 450451714}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 450516663}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 450872188}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 450936371}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 451299945}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 451364304}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 451718641}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 451782764}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 452144699}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 452208949}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 452563219}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 452627383}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 452982209}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 453054338}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 453410589}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 453474783}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 453829323}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 453893551}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 454269030}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 454333209}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 454686764}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 454750966}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 455112570}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 455176677}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 455542627}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 455607719}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 455962974}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 456036258}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 456391685}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 456456056}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 456810554}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 456874891}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 457237285}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 457301607}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 457656323}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 457720803}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 458082471}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 458146965}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 458501788}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 458566223}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 458921146}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 458985539}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 459348203}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 459412645}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 459767486}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 459831849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 460194103}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 460258433}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 460624942}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 460689907}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 461052353}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 461116712}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 461471065}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 461535360}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 461889307}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 461953451}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 462315755}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 462379783}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 462733579}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 462797754}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 463160644}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 463224928}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 463581299}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 463645467}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 463999834}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 464071873}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 464428323}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 464492585}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 464846708}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 464910955}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 465273009}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 465337215}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 465705495}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 465770490}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 466132218}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 466196378}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 466260456}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 466614759}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 466678877}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 467040951}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 467105202}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 467459141}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 467523172}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 467876409}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 467940445}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 468302183}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 468366295}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 468719730}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 468783838}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 469144817}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 469208955}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 469562255}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 469626336}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 469979665}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 470051321}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 470407132}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 470471142}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 470834757}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 470898906}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 471260784}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 471324816}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 471678402}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 471742633}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 472103609}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 472167800}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 472521618}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 472585673}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 472939040}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 473010452}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 473367402}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 473431787}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 473785663}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 473849800}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 474211239}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 474275398}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 474629018}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 474693122}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 475054409}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 475118758}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 475472155}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 475536342}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 475901028}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 475965294}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 476327484}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 476391677}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 476745902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 476810213}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 477172801}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 477236947}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 477591017}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 477655200}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 478017213}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 478081892}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 478435993}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 478500096}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 478853918}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 478918089}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 479279953}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 479344064}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 479698146}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 479762287}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 480123109}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 480187186}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 480540731}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 480604868}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 480969728}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 481042004}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 481396066}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 481460114}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 481845815}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 481910219}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 482273771}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 482338010}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 482691727}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 482755936}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 483117656}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 483181857}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 483538981}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 483603385}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 483957583}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 484030025}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 484384527}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 484448721}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 484802664}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 484866820}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 485228488}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 485292727}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 485646797}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 485711111}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 486084971}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 486149507}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 486504648}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 486568895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 486923608}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 486987889}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 487350447}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 487414686}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 487769501}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 487833849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 488196419}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 488260610}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 488615138}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 488679460}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 489041891}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 489106348}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 489461200}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 489525447}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 489879912}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 489944170}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 490308199}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 490372648}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 490727229}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 490791589}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 491164226}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 491228567}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 491583261}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 491647527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 492009353}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 492075061}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 492429523}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 492493702}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 492848144}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 492912417}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 493274450}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 493338632}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 493695319}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 493759678}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 494121853}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 494186164}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 494541005}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 494605267}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 494959709}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 495031463}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 495386499}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 495450813}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 495805290}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 495869645}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 496245343}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 496309676}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 496664460}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 496728722}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 497090555}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 497154866}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 497509658}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 497573994}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 497928426}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 497992665}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 498355389}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 498419527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 498774150}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 498838460}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 499202380}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 499266660}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 499620854}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 499685037}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 500048250}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 500112602}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 500468841}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 500533057}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 500887188}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 500951360}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 501325595}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 501389796}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 501743979}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 501808064}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 502170724}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 502234967}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 502588620}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 502652810}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 503013846}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 503078849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 503435039}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 503499113}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 503853172}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 503917328}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 504278973}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 504343021}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 504697020}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 504761184}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 505122810}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 505186959}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 505541206}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 505605351}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 505959275}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 506031371}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 506398132}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 506462356}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 506816931}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 506881012}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 507244409}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 507308565}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 507662684}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 507726818}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 508088888}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 508153037}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 508507363}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 508571361}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 508925304}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 508989434}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 509350586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 509414765}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 509769020}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 509833240}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 510195325}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 510259504}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 510613623}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 510677874}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 511039883}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 511104285}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 511471226}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 511535563}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 511890280}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 511954467}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 512314191}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 512381430}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 512735616}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 512799860}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 513161749}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 513225985}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 513582490}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 513646714}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 514038336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 514102884}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 514456935}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 514521163}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 514875696}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 514940048}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 515302479}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 515366635}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 515727573}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 515791895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 516154545}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 516218817}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 516585324}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 516651893}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 517013241}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 517078187}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 517432957}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 517497222}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 517851905}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 517916167}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 518279128}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 518343348}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 518698162}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 518762394}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 519124919}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 519189140}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 519543815}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 519608114}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 519963049}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 520035307}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 520390155}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 520454387}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 520809198}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 520873553}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 521236033}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 521300336}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 521668195}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 521732401}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 522094106}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 522158278}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 522513073}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 522577278}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 522931514}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 522995783}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 523358342}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 523424352}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 523778576}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 523842653}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 524204807}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 524268895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 524623097}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 524687287}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 525049575}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 525113860}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 525467753}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 525531792}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 525886130}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 525950331}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 526311612}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 526375829}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 526742101}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 526806197}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 527168975}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 527233022}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 527586825}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 527650955}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 528011932}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 528077208}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 528431109}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 528495141}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 528848899}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 528913011}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 529274776}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 529339000}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 529693109}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 529757381}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 530118707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 530182814}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 530538802}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 530602958}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 530957033}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 531029023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 531383022}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 531447088}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 531814165}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 531878356}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 532240847}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 532304950}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 532659450}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 532723621}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 533084943}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 533149208}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 533505955}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 533570104}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 533924238}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 533988319}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 534351554}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 534415692}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 534769612}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 534833780}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 535195598}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 535259615}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 535613716}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 535677733}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 536039254}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 536103591}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 536457161}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 536521288}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 536889519}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 536953818}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 537315948}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 537380161}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 537734878}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 537799091}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 538161303}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 538225622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 538580188}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 538644409}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 538998753}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 539071105}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 539425438}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 539489689}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 539843763}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 539907968}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 540270286}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 540334457}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 540688655}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 540752819}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 541113927}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 541178260}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 541532789}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 541597054}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 541963891}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 542036145}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 542390648}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 542454812}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 542809359}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 542873606}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 543236033}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 543300325}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 543656985}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 543721183}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 544082667}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 544147089}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 544501991}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 544566234}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 544920721}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 544984971}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 545347440}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 545411702}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 545766155}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 545830432}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 546190107}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 546257147}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 546611631}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 546675972}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 547050098}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 547114656}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 547469016}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 547533244}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 547916513}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 547980921}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 548343491}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 548407741}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 548762221}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 548826569}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 549189447}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 549253536}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 549615091}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 549679507}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 550041935}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 550106512}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 550461371}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 550525731}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 550880308}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 550944645}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 551307012}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 551371458}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 551727916}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 551792203}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 552167642}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 552231889}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 552586008}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 552650137}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 553011925}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 553077307}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 553433280}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 553497425}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 553851905}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 553916174}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 554277819}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 554342028}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 554696279}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 554760567}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 555121709}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 555185884}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 555540184}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 555604423}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 555958662}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 556030202}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 556384584}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 556448763}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 556802848}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 556867072}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 557241894}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 557306110}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 557660722}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 557724878}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 558087249}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 558151499}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 558506059}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 558570230}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 558924773}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 558988987}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 559351000}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 559415051}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 559769125}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 559833315}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 560195652}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 560261850}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 560616078}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 560680254}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 561043413}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 561107732}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 561462215}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 561526281}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 561880096}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 561944203}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 562318300}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 562382448}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 562736391}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 562800438}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 563162569}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 563226883}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 563583589}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 563647843}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 564009661}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 564075512}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 564429763}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 564493762}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 564847448}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 564911631}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 565273442}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 565337756}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 565692725}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 565756967}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 566118647}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 566182871}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 566247125}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 566602131}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 566666441}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 567028234}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 567104679}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 567461013}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 567525345}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 567879953}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 567944230}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 568306334}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 568370625}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 568725211}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 568789578}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 569154967}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 569219301}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 569573931}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 569638226}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 569992864}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 570065408}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 570420094}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 570484375}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 570838873}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 570903240}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 571265672}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 571330106}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 571684800}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 571749235}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 572111606}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 572193905}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 572550527}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 572614827}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 572968987}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 573041421}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 573397893}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 573462298}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 573816722}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 573880927}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 574244001}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 574308266}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 574662596}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 574726880}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 575089232}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 575153644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 575507872}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 575572160}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 575926433}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 575990732}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 576352994}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 576417248}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 576771702}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 576836035}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 577197820}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 577272987}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 577628587}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 577693011}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 578055915}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 578120304}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 578475097}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 578539437}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 578893816}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 578958126}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 579320069}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 579384443}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 579738972}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 579803384}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 580165991}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 580230347}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 580584827}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 580649175}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 581011073}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 581076435}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 581430837}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 581495162}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 581849706}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 581914118}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 582276504}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 582351476}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 582706666}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 582770973}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 583132946}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 583197350}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 583554025}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 583618313}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 583972958}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 584045543}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 584400181}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 584464311}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 584818686}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 584882895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 585245566}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 585309780}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 585664872}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 585729115}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 586091678}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 586155992}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 586512543}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 586576767}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 586931600}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 586995854}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 587369579}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 587434547}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 587789944}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 587854341}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 588216358}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 588280647}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 588635398}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 588699840}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 589061969}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 589126468}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 589481587}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 589546010}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 589900580}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 589964899}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 590329912}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 590394410}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 590749146}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 590813502}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 591176414}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 591240833}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 591595626}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 591660030}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 592022867}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 592087580}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 592454906}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 592520077}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 592875234}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 592939691}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 593302073}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 593366372}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 593723261}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 593787520}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 594149815}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 594214084}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 594568501}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 594632852}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 594987216}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 595059236}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 595413969}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 595478298}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 595832801}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 595897130}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 596259448}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 596323646}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 596677889}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 596742195}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 597103916}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 597168159}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 597534424}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 597599502}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 597954516}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 598026901}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 598381223}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 598445515}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 598799863}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 598864170}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 599226176}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 599290430}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 599644778}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 599709153}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 600070099}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 600134488}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 600488622}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 600552846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 600907169}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 600971453}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 601334752}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 601399176}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 601753633}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 601817951}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 602180032}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 602244497}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 602610962}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 602676088}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 603039361}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 603103916}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 603460219}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 603524563}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 603881675}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 603945959}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 604308759}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 604373039}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 604727602}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 604791938}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 605154794}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 605219161}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 605574047}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 605638433}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 605993082}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 606065103}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 606420196}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 606484548}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 606839084}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 606903443}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 607266058}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 607330305}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 607697451}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 607762487}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 608125481}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 608189931}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 608544911}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 608609274}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 608964318}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 609036910}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 609391620}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 609455851}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 609810391}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 609874698}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 610236742}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 610301101}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 610656036}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 610720482}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 611082548}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 611147031}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 611501992}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 611566419}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 611920829}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 611985218}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 612347833}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 612412162}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 612778833}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 612843343}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 613206790}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 613271160}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 613628083}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 613692465}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 614055212}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 614119583}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 614473950}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 614538129}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 614892530}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 614956860}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 615318670}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 615382977}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 615737795}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 615802113}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 616164548}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 616228952}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 616583677}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 616647987}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 617009636}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 617075052}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 617429837}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 617494079}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 617860371}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 617924948}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 618287598}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 618351833}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 618706095}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 618770394}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 619132663}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 619196982}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 619551304}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 619615558}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 619969707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 620042254}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 620398850}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 620463011}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 620817265}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 620881455}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 621245864}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 621310091}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 621665022}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 621729261}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 622091046}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 622155308}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 622509739}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 622574004}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 622940397}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 623012332}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 623368361}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 623434851}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 623789384}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 623853725}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 624215633}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 624279925}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 624634047}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 624698467}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 625094706}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 625159076}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 625512962}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 625577258}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 625931463}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 625995807}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 626357761}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 626422060}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 626776209}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 626840573}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 627202342}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 627266731}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 627621174}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 627685495}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 628060408}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 628124846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 628479574}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 628543802}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 628897929}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 628962122}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 629324200}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 629388285}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 629742565}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 629806767}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 630168822}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 630233016}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 630587150}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 630651427}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 631012990}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 631078274}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 631432314}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 631496474}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 631850826}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 631915106}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 632276917}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 632341228}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 632695761}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 632760071}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 633134377}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 633198849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 633553093}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 633620343}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 633975567}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 634047355}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 634401963}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 634466285}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 634821062}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 634885304}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 635276495}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 635340982}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 635695969}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 635760370}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 636122466}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 636186848}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 636541847}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 636606079}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 636967769}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 637040492}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 637394992}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 637459399}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 637814398}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 637878844}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 638254741}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 638319183}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 638676415}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 638740932}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 639102976}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 639167267}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 639521594}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 639585964}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 639940106}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 640011954}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 640367261}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 640431575}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 640785743}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 640850098}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 641211548}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 641275825}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 641630294}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 641694552}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 642056705}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 642121007}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 642474788}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 642538907}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 642892785}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 642957085}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 643330737}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 643397221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 643752373}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 643816695}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 644178984}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 644243271}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 644597608}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 644661972}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 645023692}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 645088213}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 645442171}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 645506443}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 645860890}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 645925245}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 646287567}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 646351931}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 646706320}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 646770600}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 647132874}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 647197267}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 647551709}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 647616020}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 647970534}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 648043175}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 648409583}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 648473916}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 648828953}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 648893350}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 649255427}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 649319602}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 649673782}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 649738171}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 650099745}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 650163954}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 650520724}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 650585090}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 650939311}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 651010930}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 651366567}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 651430945}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 651785290}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 651849627}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 652211118}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 652275417}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 652629747}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 652694072}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 653056361}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 653120769}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 653489177}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 653553502}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 653908622}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 653972943}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 654335502}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 654399764}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 654754232}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 654818584}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 655179899}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 655244082}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 655598878}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 655663275}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 656025224}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 656091896}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 656446676}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 656511009}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 656865444}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 656929736}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 657292302}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 657357056}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 657711187}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 657775399}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 658137924}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 658202258}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 658569610}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 658634037}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 658988629}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 659060759}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 659414803}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 659479136}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 659833030}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 659897359}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 660259008}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 660323172}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 660677261}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 660741444}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 661102976}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 661167211}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 661521330}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 661585634}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 661939309}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 662011010}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 662366472}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 662430688}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 662784356}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 662848711}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 663210048}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 663274280}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 663642775}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 663707217}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 664068746}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 664133022}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 664487330}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 664551674}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 664905879}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 664970208}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 665332482}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 665396814}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 665751381}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 665815673}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 666178108}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 666242460}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 666306649}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 666661513}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 666726012}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 667088172}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 667152599}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 667507289}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 667571709}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 667925907}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 667990217}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 668352355}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 668416650}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 668783022}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 668847324}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 669209902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 669274291}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 669628475}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 669692725}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 670054336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 670118722}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 670472510}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 670536719}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 670890707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 670954871}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 671317509}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 671381680}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 671735787}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 671800143}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 672161912}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 672226193}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 672580466}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 672644709}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 672999016}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 673071454}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 673427708}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 673494316}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 673860499}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 673924783}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 674286620}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 674350799}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 674704719}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 674768924}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 675130419}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 675194643}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 675548556}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 675612820}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 675966834}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 676038919}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 676392708}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 676456842}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 676810851}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 676875095}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 677236315}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 677300468}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 677654515}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 677718751}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 678080129}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 678144289}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 678498517}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 678562756}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 678930484}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 678994840}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 679356756}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 679420980}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 679774903}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 679839120}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 680201261}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 680267624}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 680621567}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 680685813}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 681046925}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 681111217}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 681465076}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 681529236}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 681880036}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 681947403}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 682308977}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 682373156}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 682727042}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 682791404}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 683152678}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 683216935}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 683602543}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 683666883}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 684041051}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 684105467}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 684459334}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 684523562}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 684877824}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 684942104}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 685310971}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 685375218}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 685728927}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 685793147}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 686154988}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 686219208}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 686573264}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 686637513}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 686991667}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 687063390}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 687417363}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 687481580}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 687835559}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 687899881}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 688261053}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 688325273}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 688679565}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 688743887}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 689117555}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 689181974}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 689536585}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 689600851}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 689955173}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 690026867}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 690380858}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 690445142}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 690798983}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 690863264}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 691227206}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 691291460}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 691645714}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 691709923}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 692070219}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 692134432}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 692488232}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 692552516}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 692906635}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 692970934}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 693333824}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 693399852}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 693754389}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 693818759}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 694192960}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 694257199}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 694611518}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 694675825}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 695038034}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 695102585}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 695456696}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 695520992}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 695875051}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 695939343}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 696302104}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 696366358}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 696720109}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 696784326}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 697145618}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 697209864}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 697563457}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 697627903}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 697981827}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 698053494}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 698407448}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 698471502}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 698825178}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 698889567}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 699263002}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 699327248}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 699681650}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 699745957}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 700107447}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 700171634}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 700525821}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 700590071}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 700943916}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 701015174}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 701369650}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 701433870}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 701788027}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 701852266}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 702213122}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 702277263}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 702631187}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 702695520}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 703056507}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 703120810}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 703476576}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 703540849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 703895062}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 703959413}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 704395877}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 704460240}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 704814487}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 704878839}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 705242991}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 705307102}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 705661334}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 705725517}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 706088651}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 706152796}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 706506927}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 706571147}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 706925318}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 706989426}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 707351387}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 707415509}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 707769012}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 707833180}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 708199449}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 708263692}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 708619495}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 708683651}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 709045861}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 709110273}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 709477076}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 709541356}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 709895791}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 709960019}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 710323864}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 710388023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 710742188}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 710806351}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 711168433}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 711232770}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 711587216}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 711651493}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 712013183}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 712078618}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 712432883}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 712497202}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 712851647}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 712915996}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 713278299}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 713342579}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 713699371}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 713763610}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 714125447}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 714189702}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 714557490}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 714621792}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 714976565}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 715048323}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 715403059}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 715467155}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 715821263}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 715885510}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 716247542}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 716311838}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 716666461}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 716730872}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 717092337}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 717156595}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 717511383}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 717575727}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 717930264}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 717994559}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 718356660}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 718420936}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 718775604}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 718839960}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 719202770}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 719267205}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9994})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 722098715}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 722163544}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 722519776}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 722584297}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 722940010}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 723011993}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 723368887}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 723435355}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 723790948}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 723855386}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 724218757}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 724283372}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 724639033}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 724703437}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 725064962}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 725129603}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 725484583}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 725549089}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 725904704}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 725969282}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 726332796}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 726397219}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 726752515}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 726817028}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 727192959}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 727257277}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 727612512}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 727676928}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 728039912}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 728104380}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 728461638}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 728526223}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 728881222}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 728945582}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 729309362}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 729373785}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 729728750}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 729793087}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 730155638}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 730220073}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 730574929}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 730639352}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 730994174}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 731066567}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 731421476}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 731485760}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 731841334}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 731917486}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 732281751}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 732346032}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 732700918}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 732765330}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 733127701}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 733192038}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 733549074}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 733613403}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 733967928}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 734041062}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 734395095}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 734459379}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 734813709}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 734877944}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 735281284}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 735351636}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 735743543}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 735813895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 736198611}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 736262959}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 736618326}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 736682588}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 737045752}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 737122393}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 737478696}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 737542943}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 737897964}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 737962361}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 738325702}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 738390023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 738744876}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 738809310}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 739172076}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 739236461}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 739591701}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 739656169}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 740018758}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 740083542}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 740438789}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 740503220}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 740858369}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 740922841}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 741285656}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 741350064}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 741705529}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 741769975}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 742132342}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 742208370}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 742565042}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 742629499}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 742984979}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 743057064}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 743414837}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 743479339}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 743834507}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 743898956}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 744261899}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 744326337}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 744681580}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 744746023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 745109686}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 745173937}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 745529267}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 745593694}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 745949011}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 746021916}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 746377828}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 746442297}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 746799807}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 746864177}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 747227416}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 747305885}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 747662218}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 747726615}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 748088824}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 748153270}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 748508382}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 748572744}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 748927695}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 748992155}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 749355199}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 749419694}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 749774885}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 749839270}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 750202321}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 750266703}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 750622135}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 750686629}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 751049237}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 751114073}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 751488963}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 751553375}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 751908314}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 751972718}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 752336600}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 752415462}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 752771902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 752836422}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 753199651}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 753264190}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 753621155}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 753685492}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 754046926}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 754111414}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 754465590}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 754529885}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 754884312}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 754948649}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 755311133}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 755375330}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 755729769}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 755794162}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 756156266}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 756220497}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 756574872}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 756639266}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 756993794}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 757065699}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 757420197}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 757496594}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 757851950}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 757916302}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 758279116}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 758343626}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 758698584}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 758762973}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 759125283}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 759189605}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 759544210}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 759608685}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 759963342}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 760035739}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 760390644}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 760454973}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 760809668}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 760874135}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 761236796}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 761301189}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 761656064}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 761720604}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 762082373}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 762146875}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 762502303}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 762578951}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 762935007}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 762999452}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 763362590}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 763429348}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 763784779}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 763849195}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 764213934}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 764278421}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 764633386}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 764697708}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 765059992}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 765124310}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 765478888}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 765543138}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 765897618}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 765961978}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 766325345}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 766389632}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 766453901}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 766808980}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 766873369}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 767235774}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 767300216}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 767665278}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 767729844}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 768092512}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 768156807}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 768511878}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 768576331}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 768931589}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 768995937}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 769358507}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 769422927}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 769777636}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 769842048}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 770204915}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 770269440}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 770624390}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 770688825}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 771050748}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 771115239}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 771470151}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 771534413}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 771888949}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 771953380}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 772315375}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 772379644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 772745135}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 772809633}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 773172497}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 773236796}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 773594002}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 773658477}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 774020250}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 774085016}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 774439586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 774504043}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 774858610}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 774923007}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 775284194}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 775348519}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 775702969}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 775767433}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 776129699}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 776194119}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 776548899}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 776613300}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 776968096}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 777040793}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 777395243}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 777459539}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 777824473}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 777888938}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 778251252}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 778315446}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 778670336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 778734696}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 779096800}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 779161147}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 779516083}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 779580468}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 779935256}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 779999585}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 780362333}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 780426846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 780781428}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 780845873}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 781209064}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 781273517}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 781630482}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 781694909}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 782056607}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 782121015}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 782475811}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 782540122}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 782905947}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 782970442}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 783333775}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 783398123}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 783755351}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 783819830}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 784182397}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 784246726}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 784601440}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 784665859}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 785028515}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 785093047}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 785447675}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 785512079}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 785866416}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 785930813}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 786293473}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 786357979}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 786712636}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 786777097}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 787139915}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 787204447}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 787558969}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 787623429}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 787990199}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 788061877}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 788416782}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 788480999}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 788835490}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 788899891}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 789261517}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 789325801}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 789680473}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 789744949}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 790107546}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 790171788}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 790526550}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 790591038}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 790945510}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 791017046}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 791372364}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 791436746}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 791791237}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 791855574}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 792217558}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 792281947}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 792636589}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 792700986}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 793073349}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 793137945}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 793495177}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 793559495}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 793914453}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 793978883}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 794340867}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 794405177}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 794759620}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 794823990}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 795185805}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 795250032}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 795604404}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 795668846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 796023093}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 796096380}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 796450977}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 796515419}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 796869779}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 796934164}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 797297020}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 797361424}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 797715773}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 797780279}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 798153642}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 798217964}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 798572462}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 798636691}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 798992948}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 799064729}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 799418712}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 799482854}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 799836890}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 799901189}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 800262816}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 800326958}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 800681114}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 800745409}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 801107540}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 801171767}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 801525924}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 801590268}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 801944542}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 802016393}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\377\377\377\377\377\377\0\6[\361\324\256\210\255\2024\0\21@\17\0\0\2$\0\0\0\0\0\0LSHP\0\0\1\0\1\0\4\0\20\0\0\0$\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6[\361\324\256\1\0\0\v\320A\3\17\20'\0\0\3\24\321\7\5\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 578
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 802691520}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 802756029}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 803119291}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 803183542}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 803540446}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 803604622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\377\377\377\377\377\377\0\6[\361\324\256\210\255\2024\0\21@\17\0\0\2$\0\0\0\0\0\0LSHP\0\0\1\0\1\0\4\0\20\0\0\0$\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6[\361\324\256\1\0\0\v\320@\377\236\20'\0\0\3\24\321\7\5\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 578
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 804271338}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 804335777}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 804690956}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 804755346}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 805118693}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 805183110}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 805538477}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 805602987}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 805958147}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 806030273}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 806397508}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 806461845}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 806816690}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 806881053}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 807244942}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 807309587}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 807664726}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 807729171}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 808091313}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 808155717}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 808510885}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 808575316}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 808929958}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 808994456}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 809356861}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 809421239}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 809775707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 809840014}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 810203389}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 810267797}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 810622288}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 810686727}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 811048947}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 811113344}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 811480027}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 811544330}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 811898618}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 811962876}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 812325010}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 812389260}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 812743319}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 812807596}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 813169854}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 813234059}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 813591133}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 813655451}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 814017055}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 814081760}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 814436165}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 814500532}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 814855189}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 814919589}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 815282329}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 815346756}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 815701623}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 815766001}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 816128211}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 816192638}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 816560835}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 816625254}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 816982032}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 817054018}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 817408691}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 817472922}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 817827447}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 817891810}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 818254342}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 818318747}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 818673404}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 818737756}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 819099472}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 819163749}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 819518015}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 819582355}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 819936396}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 820007781}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 820363381}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 820427613}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 820781826}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 820846272}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 821210312}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 821274652}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 821641252}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 821705619}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 822066411}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 822130801}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 822485664}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 822550215}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 822904752}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 822969069}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 823331699}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 823396116}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 823752829}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 823817143}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 824179766}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 824244012}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 824598533}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 824662855}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 825025455}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 825090187}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 825444975}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 825509184}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 825863875}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 825928290}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 826292097}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 826356434}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 826723380}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 826787634}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 827151084}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 827215289}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 827569961}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 827634396}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 827989150}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 828061460}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 828416019}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 828480382}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 828835091}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 828899507}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 829261273}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 829325482}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 829680195}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 829744528}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 830107343}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 830171705}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 830526791}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 830591180}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 830945762}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 831017538}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 831372578}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 831436867}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 831803602}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 831867969}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 832230482}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 832294740}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 832648915}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 832713267}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 833075300}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 833139715}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 833496861}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 833561160}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 833915753}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 833980078}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 834343994}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 834408343}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 834762631}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 834827013}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 835189000}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 835253280}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 835608013}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 835672398}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 836034483}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 836098981}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 836453281}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 836517618}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 836884711}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 836949040}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 837311854}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 837376157}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 837730487}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 837794839}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 838156833}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 838221170}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 838575530}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 838639912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 838994539}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 839066597}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 839420514}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 839484813}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 839839075}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 839903419}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 840265707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 840329991}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 840684629}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 840748917}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 841111931}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 841176354}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 841530785}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 841595103}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 841962196}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 842034318}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 842389321}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 842453560}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 842807960}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 842872294}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 843235225}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 843299539}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 843656729}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 843721119}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 844083606}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 844148116}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 844503220}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 844567651}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 844922330}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 844986761}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 845349349}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 845413784}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 845768775}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 845833120}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 846195280}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 846259763}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 846614529}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 846678971}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 847053699}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 847117990}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 847472681}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 847536879}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 847891352}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 847955764}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 848318337}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 848382633}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 848737090}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 848801465}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 849163915}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 849228221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 849582772}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 849647256}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 850008627}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 850074136}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 850429026}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 850493412}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 850848193}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 850912548}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 851274720}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 851339110}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 851695277}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 851759671}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 852135255}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 852199622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 852554918}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 852619274}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 852974050}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 853046808}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 853401698}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 853467828}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 853822598}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 853886927}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 854248779}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 854313100}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 854667633}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 854732057}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 855094442}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 855158806}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 855513737}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 855578149}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 855933072}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 855997405}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 856361648}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 856426083}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 856780814}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 856856986}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 857220703}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 857284979}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 857639557}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 857703834}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 858064697}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 858129157}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 858483901}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 858548237}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 858902853}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 858967216}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 859329869}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 859394086}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 859748569}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 859812936}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 860175367}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 860239621}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 860594120}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 860658472}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 861020332}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 861085033}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 861439336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 861503714}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 861858314}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 861934287}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 862297830}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 862362219}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 862717185}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 862781480}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 863143678}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 863207981}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 863564874}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 863629181}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 863983736}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 864058005}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 864412688}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 864476972}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 864830964}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 864895248}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 865257551}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 865321775}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 865676015}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 865740337}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 866102436}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 866166717}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 866230959}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 866585865}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 866650111}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 867024151}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 867089360}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 867443862}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 867508158}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 867862458}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 867926749}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 868288740}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 868353156}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 868707738}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 868772033}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 869136249}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 869200628}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 869555161}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 869619561}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 869974176}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 870046731}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 870401538}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 870465691}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 870820100}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 870884451}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 871245804}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 871309952}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 871663804}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 871728168}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 872101154}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 872166052}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 872520347}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 872584508}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 872938224}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 873009771}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 873365015}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 873431212}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 873785865}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 873850051}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 874211295}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 874275549}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 874629807}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 874694005}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 875056052}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 875120340}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 875474786}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 875538890}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 875892758}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 875957117}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 876319116}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 876383193}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 876737248}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 876802036}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 877175218}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 877240292}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 877595295}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 877659579}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 878021600}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 878086407}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 878441079}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 878505408}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 878860410}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 878924714}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 879286265}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 879350560}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 879705243}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 879769513}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 880131913}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 880196337}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 880551298}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 880615623}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 880970411}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 881043049}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 881397672}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 881462076}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 881816929}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 881881408}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 882256437}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 882321123}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 882676279}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 882740613}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 883103246}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 883167580}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 883524270}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 883588611}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 883943365}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 884014412}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 884369423}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 884433718}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 884788337}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 884852610}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 885214898}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 885279276}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 885634151}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 885698368}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 886061715}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 886126229}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 886483070}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 886547505}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 886902150}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 886966475}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 887341816}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 887406359}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 887761265}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 887825474}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 888187713}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 888251925}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 888606255}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 888670641}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 889032685}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 889097052}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 889451227}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 889515500}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 889869672}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 889933974}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 890296274}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 890360524}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 890714847}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 890779116}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 891140772}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 891205098}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 891559649}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 891624008}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 891978466}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 892050336}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 892417673}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 892482277}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 892837434}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 892901748}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 893264133}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 893328440}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 893685473}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 893749746}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 894112519}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 894176807}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 894531298}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 894595687}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 894950476}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 895022700}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 895377601}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 895441915}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 895796598}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 895860894}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 896222689}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 896287011}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 896641615}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 896705971}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 897066248}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 897130656}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 897497944}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 897562281}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 897917024}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 897981353}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 898343405}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 898407576}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 898761612}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 898825844}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 899187951}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 899252032}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 899605963}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 899670207}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 900031559}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 900095873}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 900449789}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 900513964}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 900868350}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 900932612}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 901305768}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 901369917}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 901724149}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 901788474}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 902151074}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 902215411}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 902582158}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 902646664}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 903008474}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 903073849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 903430118}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 903494587}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 903849029}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 903915557}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 904278087}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 904342228}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 904696606}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 904760902}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 905122705}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 905186985}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 905541326}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 905605644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 905960244}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 906031919}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 906386614}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 906450954}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 906805194}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 906869482}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 907231661}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 907296024}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 907662530}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 907726945}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 908088576}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 908152841}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 908507058}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 908571312}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 908925740}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 908990054}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 909352064}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 909416217}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 909770591}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 909834879}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 910197363}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 910261560}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 910615792}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 910680024}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 911042383}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 911106837}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 911461328}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 911525924}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 911880397}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 911944662}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 912306533}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 912370859}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 912737951}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 912802280}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 913165196}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 913229390}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 913585769}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 913649989}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 914011747}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 914076922}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 914431263}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 914495431}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 914849493}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 914913751}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9988})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 915284761}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 915348906}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 915703292}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 915767501}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 916130594}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 916194791}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 916549283}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 916613458}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 916967720}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 917039808}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 917394540}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 917458787}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 917826026}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 917890464}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 918252591}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 918316931}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 918671603}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 918735876}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 919096942}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 919161102}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 919515571}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 919579803}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 919934264}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 919998623}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 920360998}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 920425166}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 920779288}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 920843527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 921206849}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 921271118}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 921627542}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 921691672}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 922053114}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 922117443}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 922471412}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 922535599}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 922901973}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 922966197}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 923328629}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 923392878}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 923750152}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 923814402}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 924177345}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 924241524}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 924596285}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 924660573}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 925023034}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 925087638}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 925442269}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 925506451}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 925860725}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 925925042}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 926287605}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 926351908}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 926706625}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 926770965}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 927132806}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 927197199}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 927552052}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 927616354}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 927983079}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 928055614}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 928410245}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 928474465}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 928828640}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 928892940}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 929255153}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 929319294}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 929673624}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 929737908}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  write(2, "cirrus vga map change while on lfb mode\n"..., 40) = 40
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 930197355}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 930265121}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 930620954}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 930685261}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 931047553}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 931111965}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 931466550}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 931530721}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 931914171}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 931978451}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 932340837}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 932405034}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 932759229}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 932823453}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 933201312}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 933265664}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 933620170}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 933687075}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 934049675}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 934113846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 934495596}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 934559903}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 934914356}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 934978645}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 935341185}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 935405326}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 935759463}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 935823740}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 936185578}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 936249809}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 936604480}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 936668825}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 937027771}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 937095330}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 937478399}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 937542615}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 937897077}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 937961384}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 938335513}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 938399832}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 938754823}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 938819062}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 939183726}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 939247894}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 939602261}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 939666518}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 940056749}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 940121023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 940499825}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 940567019}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 940922736}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 940987058}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 941349207}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 941413370}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 941768434}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 941832673}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 942195198}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 942259459}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 942613864}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 942678178}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 943067014}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 943131378}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 943500775}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 943565213}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 943978147}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 944052975}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 944408407}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 944472661}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 944827366}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 944891804}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 945254938}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 945319144}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 945702631}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 945766998}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 946130335}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 946194671}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 946549252}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 946613511}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 946967637}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 947039594}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 947391510}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 947458854}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 947813327}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 947877593}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 948240253}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 948332803}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 948698771}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 948763003}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 949126370}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 949190632}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 949544924}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 949609219}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 949963545}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 950035912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 950390512}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 950454556}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 950805799}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 950872534}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 951262949}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 951327136}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 951681184}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 951745438}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 952107786}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 952171912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 952527392}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 952591586}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 952945476}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 953017170}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 953372143}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 953438547}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 953804606}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 953897122}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 954270319}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 954337036}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 954691678}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 954755958}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 955117908}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 955182102}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 955536548}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 955600791}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 955953474}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 956025228}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 6878})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f5883159000
9432  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff8ede1270) = 0
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 960110173}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 960176476}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9995})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 960534828}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 960599267}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f5883059000
9432  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff8ede1270) = 0
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 961326151}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 961390826}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 961744362}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 961809834}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 7827})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 964375358}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 964440609}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 964823103}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 964887530}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9986})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 965282344}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 965346812}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 965703307}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 965767734}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 966131353}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 966195731}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 966260023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 966616105}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 966680588}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 967044285}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 967108822}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 967463603}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 967527943}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 967911016}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 967975477}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 968337607}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 968401914}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 968756762}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 968821088}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 969183308}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 969247638}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 969602686}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 969667018}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 970041750}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 970106256}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 970489314}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 970553628}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 970908537}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 970972961}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 971336083}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 971400299}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 971755193}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 971819590}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 972182202}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 972246486}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 972601327}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 972665742}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 973028444}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 973092957}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 973478005}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 973542435}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 973897190}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 973961504}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 974323525}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 974387809}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 974742902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 974807186}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 975182823}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 975247160}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 975601888}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 975666195}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 976056727}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 976121143}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 976475796}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 976540031}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 976894586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 976959013}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 977321512}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 977385781}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 977740434}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 977804872}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 978166935}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 978231305}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 978586662}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 978651115}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9968})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 979042327}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 979106878}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 979461964}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 979526356}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 979882953}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 979947308}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 980320435}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 980384806}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 980739188}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 980803435}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 981165677}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 981230033}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 981613057}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 981677383}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 982039795}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 982104283}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 982458387}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 982522573}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 982876884}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 982941247}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 983303805}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 983368059}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 983725047}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 983789324}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 984151420}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 984215659}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 984598210}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 984662569}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 985023843}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 985088307}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 985455073}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 985519481}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 985874592}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 985938959}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 986302090}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 986366404}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 986720846}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 986785221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 987175696}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 987240127}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 987594791}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 987659072}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 988063479}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 988128113}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\377\377\377\377\377\377\0\6[\361\324\256\210\255\200H\0\3\345\342\0\0\0008\0\0\0\0\0\0NDFS\0\0\2\0\1\0\4\0\20P\0\0008\0\0\0\0\0\0\0\0\0\0\0\1\0\0\v\320A\3\17\20'\0\0'\20\0\v\320A\3\17\0\0\0\0\0\0\0\0"..., 4096) = 86
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 988589139}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 988653468}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\377\377\377\377\377\377\0\6[\361\324\256\210\255\200H\0\3\345\342\0\0\0008\0\0\0\0\0\0NDFS\0\0\2\0\1\0\4\0\20P\0\0008\0\0\0\0\0\0\0\0\0\0\0\1\0\0\v\320@\377\236\20'\0\0'\20\0\v\320@\377\236\0\0\0\0\0\0\0\0"..., 4096) = 86
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 989119009}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 989183369}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 989538432}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 989602723}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 989998394}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 990071242}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 990426458}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 990490626}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 990845080}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 990909353}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 991273833}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 991338158}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 991692503}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 991756799}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 992118402}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 992182739}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 992537351}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 992629860}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 992984411}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 993056286}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 993410634}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 993477113}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 993831353}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 993895611}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 994259031}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 994323277}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 994677223}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 994741282}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 995113889}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 995178245}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 995560987}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 995625249}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 995979101}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 996050862}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 996405317}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 996469473}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 996822716}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 996886925}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 997248254}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 997312380}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 997668331}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 997732393}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 998093474}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 998185976}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 998539881}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 998604015}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 998957949}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 999029688}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 999383950}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 999448137}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 999802467}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9535, 999866739}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 239392}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 303575}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 657960}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 722154}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 1122164}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 1186433}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 1541427}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 1605674}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 1960391}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 2033728}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 2388667}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 2452766}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 2807111}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 2871271}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 3233097}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 3297208}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 3653433}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 3745987}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 4108459}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 4172661}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 4527294}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 4591553}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 4945893}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 5017332}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 5383187}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 5448046}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 5802835}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 5866893}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 6228505}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 6292665}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 6675246}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 6739458}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 7101303}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 7165485}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 7519571}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 7583656}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 7937779}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 8009161}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 8364505}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 8428530}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 8782423}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 8846490}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 9267081}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 9337407}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 9728705}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 9798902}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 10181175}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 10245711}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 10601135}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 10676956}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 11041538}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 11105953}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 11460603}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 11524849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 11879728}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 11943967}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 12335860}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 12400151}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 12755368}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 12819701}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 13182369}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 13246593}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 13605035}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 13669221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 14031919}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 14096568}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 14451733}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 14515968}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 14899226}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 14963728}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 15326790}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 15390988}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 15745892}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 15821191}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 16187232}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 16251471}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 16606056}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 16670325}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 17032410}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 17096773}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 17451242}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 17543574}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 17898385}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 17962662}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 18325371}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 18389682}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 18744665}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 18808934}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 19171978}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 19236285}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 19591355}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 19655628}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 20017770}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 20082437}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 20465401}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 20529625}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 20884470}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 20959652}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 21322873}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 21386999}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 21741453}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 21805538}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 22174510}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 22238643}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 22592819}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 22657002}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 23018719}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 23083239}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 23439614}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 23504105}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 23858792}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 23922922}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 24284522}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 24348645}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 24703034}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 24767142}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 25129603}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 25193921}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 25548619}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 25612806}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 25966963}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 26049656}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 26405087}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 26469269}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 26823907}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 26888090}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 27249762}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 27313892}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 27668203}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 27732502}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 28094189}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 28158273}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 28513073}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 28577290}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 28931480}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 28995671}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 29357977}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 29422227}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 29776847}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 29841059}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 30203468}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 30267778}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 30622059}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 30686264}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 31047654}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 31112103}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 31478527}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 31542597}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 31896810}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 31961049}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 32323506}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 32387625}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 32741906}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 32806077}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 33168234}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 33232469}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 33591250}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 33655421}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 34017243}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 34081895}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 34436034}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 34500243}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 34854497}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 34918646}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 35281438}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 35345684}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 35700198}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 35764422}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 36126008}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 36190257}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 36558005}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 36622229}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 36976806}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 37048955}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 37403563}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 37467704}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 37821771}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 37885998}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 38247749}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 38311864}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 38666159}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 38730470}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 39092988}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 39157140}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 39511233}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 39575397}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 39929437}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 39993555}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 40356554}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 40420790}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 40775100}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 40839302}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 41201335}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 41265607}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 41646620}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 41710841}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 42072471}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 42136778}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 42491732}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 42556031}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 42910341}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 42974652}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 43336827}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 43400961}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 43758238}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 43822534}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 44184525}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 44248862}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 44603601}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 44667912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 45029681}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 45094104}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 45448046}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 45512237}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 45866780}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 45931012}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 46293214}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 46357457}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 46723658}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 46787908}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 47150670}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 47214838}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 47569047}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 47633173}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 47987206}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 48059190}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 48413422}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 48477514}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 48828866}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 48893079}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9898})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 49348075}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 49412277}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 49766896}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 49831210}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 50195389}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 50259579}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 50642578}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 50706903}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 51070127}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 51134524}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 51489264}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 51553593}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 51920166}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 51984387}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 52346371}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 52410560}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 52764702}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 52828878}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 53219217}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 53283328}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 53639775}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 53703972}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 54064475}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 54128823}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 54483063}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 54547313}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 54901466}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 54965660}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 55327647}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 55391868}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 55745979}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 55810203}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 56200532}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 56264801}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 56619187}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 56683426}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 57056733}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 57121032}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 57474787}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 57538961}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 57892979}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 57957098}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 58318814}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 58383023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 58761364}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 58825607}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 59187297}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 59251578}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 59605960}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 59670139}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 60031652}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 60096053}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 60450612}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 60514791}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 60869000}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 60933251}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 61295656}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 61359789}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 61714107}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 61778377}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 62152337}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 62216768}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 62571624}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 62635856}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 62990369}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 63062440}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 63416930}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 63483192}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 63837624}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 63901881}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 64264455}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 64328765}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 64683757}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 64747947}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 65110506}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 65174782}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 65529277}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 65593456}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 65947700}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 66019649}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 66084486}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 66439583}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 66503754}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 66858358}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 66922638}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 67297554}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 67361812}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 67716231}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 67780485}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 68142010}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 68206366}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 68563098}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 68627352}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 68981847}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 69053665}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 69408190}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 69472381}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 69827308}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 69891637}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 70254790}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 70319183}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 70674216}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 70738624}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 71101175}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 71165546}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 71520108}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 71584419}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 71938899}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 72010484}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 72377535}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 72441797}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 72796533}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 72860847}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 73222778}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 73286927}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 73644447}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 73708724}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 74069888}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 74134195}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 74488664}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 74552914}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 74907571}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 74971911}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 75335561}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 75399770}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 75754340}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 75818718}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 76180739}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 76245121}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 76600154}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 76664562}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 77026854}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 77091468}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 77457813}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 77522079}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 77876604}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 77940831}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 78303364}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 78367644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 78722177}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 78786364}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 79150681}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 79214834}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 79569348}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 79633561}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 79987891}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 80059479}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 80414011}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 80478172}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 80832309}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 80896515}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 81258156}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 81322230}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 81676586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 81740829}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 82102892}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 82167123}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 82532971}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 82597341}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 82952220}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 83024030}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 83379082}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 83443332}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 83799707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 83863972}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 84226384}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 84290673}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 84645269}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 84709550}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 85070766}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 85135005}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 85489308}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 85553537}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 85909539}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 85973902}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 86336863}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 86401238}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 86756041}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 86820385}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 87182316}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 87246683}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 87614276}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 87678688}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 88041889}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 88106527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 88461732}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 88526043}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 88880654}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 88945074}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 89307824}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 89372173}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 89727006}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 89791361}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 90154311}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 90218776}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 90573842}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 90638265}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 90992915}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 91065292}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 91420348}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 91484745}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 91839401}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 91903817}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 92265824}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 92330179}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 92695971}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 92760218}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 93122457}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 93186692}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 93543251}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 93607456}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 93961715}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 94033664}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 94388234}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 94452492}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 94806897}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 94871132}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 95233683}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 95297945}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 95652534}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 95716769}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 96077821}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 96142112}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 96496964}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 96561313}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 96916109}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 96980453}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 97342538}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 97406844}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 97772820}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 97837191}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 98199757}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 98264128}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 98618902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 98683294}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 99046387}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 99110912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 99465523}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 99529777}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 99884419}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 99948767}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 100311352}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 100375787}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 100730643}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 100794964}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 101157697}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 101222044}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 101576787}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 101641162}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 101996108}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 102068396}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 102423195}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 102487514}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 102853395}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 102917680}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 103282487}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 103346849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 103703304}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 103767689}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 104130319}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 104194874}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 104549587}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 104613946}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 104968408}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 105041324}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 105395849}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 105460121}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 105814488}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 105878758}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 106241602}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 106305830}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 106660295}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 106724658}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 107086931}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 107151275}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 107505515}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 107569788}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 107936584}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 108007905}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 108364220}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 108428647}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 108783311}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 108847760}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 109213435}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 109277927}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 109633249}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 109697747}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 110059727}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 110124188}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 110478822}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 110543121}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 110897823}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 110962209}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 111324406}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 111388687}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 111743491}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 111807850}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 112170164}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 112234674}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 112589699}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 112654088}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 113028888}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 113093375}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 113447843}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 113514244}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 113868762}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 113933106}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 114295849}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 114360332}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 114715200}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 114779552}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 115141509}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 115205759}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 115559818}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 115624133}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 115978417}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 116050242}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 116404971}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 116469236}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 116823547}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 116887834}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 117249349}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 117313633}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 117667887}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 117732262}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 118105662}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 118169860}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 118524295}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 118588466}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 118942626}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 119013685}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 119368623}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 119432859}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 119787196}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 119851416}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 120213505}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 120277699}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 120631912}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 120698324}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 121059902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 121124164}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 121478557}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 121542706}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 121897182}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 121961440}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 122322766}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 122387031}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 122741350}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 122805626}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 123181286}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 123245544}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 123602156}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 123666320}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 124028479}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 124092933}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 124446680}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 124510761}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 124864786}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 124928883}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 125290302}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 125354421}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 125708563}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 125772760}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 126135004}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 126199246}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 126553655}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 126617774}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 126972186}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 127044786}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 127399085}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 127463253}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 127817496}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 127881675}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 128255561}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 128319762}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 128674280}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 128738436}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 129100194}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 129164381}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 129518613}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 129582829}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 129937042}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 130008221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 130363483}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 130427669}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 130781720}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 130845967}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 131208605}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 131272893}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 131627271}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 131691499}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 132053017}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 132117357}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 132471443}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 132535659}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 132890135}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 132954337}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 133326572}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 133390729}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 133747833}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 133812094}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 134174502}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 134238869}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 134593413}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 134657675}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 135019335}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 135083928}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 135438363}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 135502639}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 135856822}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 135921046}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 136283951}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 136348228}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 136702851}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 136767105}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 137129099}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 137193271}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 137547695}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 137611929}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 137966286}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 138038562}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 138405775}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 138470179}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 138825110}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 138889466}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 139253683}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 139318023}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 139672360}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 139736641}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 140098538}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 140162709}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 140517046}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 140581346}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 140935717}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 140999941}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 141362413}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 141426652}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 141780982}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 141845187}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 142208370}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 142272602}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 142627002}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 142691204}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 143052691}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 143117092}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 143485042}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 143549337}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 143903712}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 143967894}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 144330510}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 144394711}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 144748687}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 144812941}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 145175486}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 145239619}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 145593761}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 145658011}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 146019333}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 146084065}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 146438575}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 146502912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 146857237}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 146921435}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 147283986}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 147348245}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 147702687}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 147766929}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 148129530}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 148193874}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 148559790}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 148623976}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 148978486}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 149050590}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 149405089}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 149469256}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 149823488}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 149887622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 150248693}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 150312912}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 150667163}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 150731372}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 151092777}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 151157004}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 151511361}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 151575622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 151929682}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 151993856}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 152355859}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 152420053}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 152774165}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 152838374}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 153200440}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 153264622}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 153632685}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 153696924}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 154058685}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 154122924}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 154476675}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 154540877}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 154895116}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 154959310}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 155321459}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 155385544}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 155741799}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 155805853}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 156167465}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 156231738}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 156585989}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 156650261}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 157011805}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 157077108}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 157431468}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 157495669}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 157849717}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 157913964}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9995})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 158276113}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 158340382}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 158705782}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 158769905}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 159131945}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 159196169}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 159550067}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 159614261}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 159968203}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 160040949}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 160395042}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 160459055}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 160812859}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 160876967}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 161239161}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 161303275}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 161657045}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 161721145}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 162082238}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 162146435}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 162500622}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 162564783}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 162918484}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 162982690}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 163344425}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 163408559}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 163776207}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 163840398}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 164202374}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 164266586}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 164620262}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 164684486}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 165046534}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 165110946}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 165464659}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 165528668}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 165882547}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 165946621}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 166308454}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 166372517}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 166436496}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 166790281}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 166854335}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 167215782}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 167279976}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 167633745}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 167697863}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 168058746}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 168122898}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 168476721}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 168540967}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 168907462}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 168971757}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 169336647}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 169400762}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 169754565}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 169818741}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 170179735}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 170243989}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 170597665}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 170661765}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 171023516}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 171087991}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 171441994}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 171506056}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 171859706}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 171923775}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 172284996}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 172349145}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 172702876}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 172767037}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 173131204}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 173195433}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 173551525}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 173626418}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 173981842}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 174053953}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 174408463}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 174472758}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 174826784}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 174890910}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 175251837}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 175316020}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 175670097}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 175734340}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 176095880}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 176160150}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 176514362}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 176578598}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 176932728}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 176996919}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 177358707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 177422949}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 177776832}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 177841022}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 178202829}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 178267019}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 178620954}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 178696922}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 179059872}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 179124152}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 179478124}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 179542308}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 179896415}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 179960564}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 180322547}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 180386768}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 180741143}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 180805374}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 181167426}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 181231725}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 181585904}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 181650094}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 182011687}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 182076877}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 182431112}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 182495367}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 182849516}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 182913729}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9989})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 183276791}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 183340940}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 183697033}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 183771929}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 184134439}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 184198678}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 184552681}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 184616913}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 184970464}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 185042785}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 185396864}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 185461110}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 185815082}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 185879254}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 186241568}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 186305822}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 186659648}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 186723872}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 187084901}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 187149200}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 187503019}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 187567299}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 187921343}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 187985597}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 188346682}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 188410876}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 188764664}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 188839562}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 189202936}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 189267220}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 189621546}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 189685898}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 190047385}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 190111722}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 190467728}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 190532057}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 190886414}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 190950776}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 191312542}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 191376951}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 191731446}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 191795771}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 192158623}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 192223028}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 192577305}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 192641679}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 192996340}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 193068639}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 193422709}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 193489549}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 193844480}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 201192530}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 201587629}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 201651940}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 202006709}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 202079880}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 202434989}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 202499246}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 202853911}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 202918289}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 203281194}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 203345628}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 203702446}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 203766674}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 204142609}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 204207103}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 204562222}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 204626634}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 204981531}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 205053759}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 205408856}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 205473200}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 205828041}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 205892389}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 206255647}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 206331555}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 206687272}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 206751560}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 207113374}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 207177775}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 207532233}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 207596385}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 207950756}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 208023025}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 208377704}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 208442015}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 208796588}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 208860805}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 209222668}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 209286862}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 209641437}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 209705676}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 210066336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 210130751}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 210484953}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 210549275}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 210903669}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 210967934}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 211331083}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 211406442}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 211762027}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 211826331}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 212188848}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 212253000}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 212607297}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 212671490}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 213033395}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 213097844}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 213451941}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 213518097}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 213872449}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 213936726}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 214299604}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 214363791}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 214717831}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 214782116}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 215146189}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 215210966}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 215565187}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 215629437}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 215983297}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 216055460}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 216409387}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 216484371}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 216839419}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 216903665}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 217265585}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 217329778}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 217684293}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 217748513}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 218111707}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 218176043}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 218530828}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 218594947}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 218949322}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 219020857}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 219375841}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 219440032}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 219794342}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 219858581}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 220220637}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 220284789}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 220639096}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 220703505}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 221064657}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 221129126}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 221494459}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 221559412}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 221914836}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 221979173}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 222342077}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 222406512}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 222761465}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 222825802}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 223188891}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 223253307}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 223610632}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 223675059}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 224038118}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 224102670}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 224457518}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 224523114}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 224878124}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 224942630}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 225305689}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 225370075}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 225724611}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 225788944}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 226151567}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 226215851}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 226582304}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 226647382}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 227009772}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 227075495}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 227429408}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 227493628}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 227847766}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 227911953}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 228273556}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 228337803}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 228692069}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 228756353}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 229118039}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 229182425}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 229536773}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 229600956}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 229955049}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 230026600}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 230381129}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 230445413}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 230799551}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 230863726}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 231227533}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 231291772}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 231656804}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 231721867}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 232084388}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 232148676}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 232505731}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 232569962}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 232923758}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 232987945}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 233349557}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 233413724}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 233769715}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 233833962}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 234195487}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 234259861}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 234614326}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 234678542}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 235041037}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 235105476}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 235459749}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 235524015}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 235878145}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 235942369}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 236304890}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 236369110}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 236733970}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 236798863}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 237162053}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 237226274}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 237580491}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 237644711}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 237998928}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 238071347}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 238425586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 238489908}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 238844355}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 238908785}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 239270987}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 239335218}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 239689570}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 239753791}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 240115613}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 240179954}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 240534422}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 240598751}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 240953190}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 241025515}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 241380281}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 241444543}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 241810022}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 241874374}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 242236418}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 242300499}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 242654622}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 242718790}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 243079552}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 243143731}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 243500101}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 243564390}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 243918933}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 243983146}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 244345148}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 244409234}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 244763258}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 244827392}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 245189316}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 245253457}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 245319911}) = 0
9432  select(14, [3 6 10 11 12 13], [], [], {0, 10000}) = 2 (in [11 12], left {0, 9991})
9432  read(11, 0x7fff8ede17c0, 1)       = -1 EIO (Input/output error)
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 245551299}) = 0
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 245815075}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 245879133}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 246241760}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 246305867}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 246659956}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 246724132}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 247098878}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 247163121}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 247517537}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 247581637}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 247935865}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 248000067}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 248362227}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 248426316}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 248780300}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 248844404}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 249206921}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 249271096}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 249625117}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 249689251}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 250052475}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 250116849}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 250470492}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 250534633}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 250888477}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 250952563}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 251314869}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 251379071}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 251732757}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 251796970}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 252173378}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 252237610}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 252591680}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 252655777}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 253016602}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 253081221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 253435404}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 253501782}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 253855999}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 253920092}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 254282015}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 254346119}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 254700091}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 254764221}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 255126212}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 255190440}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 255544939}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 255609148}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 255963278}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 256035280}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 256389433}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 256453642}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 256807893}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 256871985}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 257245758}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 257309982}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 257664417}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 257728536}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 258091715}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 258155886}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 258510246}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 258574365}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 258928409}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 258992607}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 259355045}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 259419066}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 259773050}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 259837191}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 260198904}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 260263075}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 260617409}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 260681648}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 261044278}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 261108649}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 261464738}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 261528943}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 261883051}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 261947275}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 262319145}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 262383343}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 262737440}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 262801506}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 263162911}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 263227153}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 263583156}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 263647320}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 264008048}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 264073403}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 264427161}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 264491167}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 264845080}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 264909154}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 265270630}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 265334718}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 265688634}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 265752727}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 266113654}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 266177743}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 266241876}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 266596233}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 266660347}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 267022448}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 267096845}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 267453644}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 267517853}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 267872029}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 267936290}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 268299116}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 268363378}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 268717523}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 268781679}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 269143490}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 269207665}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 269561705}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 269625798}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 269979902}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 270051675}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 270405993}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 270470086}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 270824099}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 270888248}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 271249679}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 271313745}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 271667812}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 271731923}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 272103613}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 272168292}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 272522482}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 272586545}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 272940176}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 273011922}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 273367082}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 273431302}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 273787429}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 273851574}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 274213656}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 274277827}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 274631574}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 274695730}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 275056500}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 275120885}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 275474835}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 275538965}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 275893002}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 275957147}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 276318935}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 276383152}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 276737113}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 276801322}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 277173429}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 277238259}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 277592836}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 277657049}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 278018563}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 278083234}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 278437793}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 278502066}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 278856257}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 278920435}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 279282893}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 279347147}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 279701446}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 279765644}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 280127835}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 280192190}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 280546539}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 280610766}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 280964964}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 281037000}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 281391586}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 281455828}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 281809876}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 281874066}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 282246568}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 282311338}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 282666054}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 282730200}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 283091589}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 283155761}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 283512271}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 283576570}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 283930614}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 283994905}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 284356584}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 284420733}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 284776702}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 284841008}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 285203019}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 285267321}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 285621633}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 285685852}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 286046976}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 286111429}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 286465269}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 286529448}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 286883542}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 286948277}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 287320373}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 287385026}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 287739705}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 287803763}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 288165559}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 288229602}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 288583921}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 288648070}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 289009302}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 289074747}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 289428866}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 289493034}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 289847266}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 289911445}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 290273293}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 290337442}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 290691640}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 290755830}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 291117171}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 291183737}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 291538112}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 291602321}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 291956327}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 292027885}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 292392715}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 292457466}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 292812096}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 292876373}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 293239401}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 293303663}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 293659973}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 293724250}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 294086005}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 294150330}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 294504536}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 294568846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 294922604}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 294986893}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 295348970}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 295413254}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 295767182}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 295831473}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 296193246}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 296257576}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 296611751}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 296676062}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 297038271}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 297102796}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 297467647}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 297532195}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 297887314}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 297951527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 298313856}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 298378136}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 298732613}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 298796848}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 299158283}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 299222533}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 299576961}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 299641346}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 299995946}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 300068208}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 300423030}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 300487280}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 300841667}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 300905898}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 301267427}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 301331756}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 301686120}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 301750370}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 302114842}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 302179299}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 302545478}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 302609962}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 302964385}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 303036669}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 303390818}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 303454941}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 303810951}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 303875009}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 304236534}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 304300492}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 304654288}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 304718444}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 305079074}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 305143234}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 305497124}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 305561231}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 305915260}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 305979383}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 306340908}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 306405241}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 306758931}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 306822994}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 307184354}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 307248461}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 307615817}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 307680247}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 308043318}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 308107767}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 308461917}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 308526076}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 308880353}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 308944540}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 309305934}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 309370153}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 309724115}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 309788331}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 310150853}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 310215133}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 310569429}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 310633728}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 310987817}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 311059353}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 311413863}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 311478114}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 311832552}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 311896795}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 312258403}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 312322514}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 312688523}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 312752834}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 313115412}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 313179689}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 313536191}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 313600464}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 313954966}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 314026638}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 314380967}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 314445229}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 314799596}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 314863771}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 315225240}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 315289411}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 315643617}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 315707803}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 316067731}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 316131977}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 316486021}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 316550260}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 316904304}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 316968483}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 317330921}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 317395180}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 317760584}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 317824834}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 318186769}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 318250876}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 318604744}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 318668863}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 319030215}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 319094785}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 319450919}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 319515266}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 319869345}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 319933418}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 320295120}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 320359273}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 320713478}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 320777536}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 321141712}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 321206015}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 321560239}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 321624448}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 321978579}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 322050291}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 322404790}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 322468871}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 322836648}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 322900905}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 323262690}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 323326817}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 323683146}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 323747340}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 324109662}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 324173961}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 324528148}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 324592270}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 324946446}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 325017835}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 325372424}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 325436615}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 325995574}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 326068227}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 2 (in [3 12], left {0, 9997})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  read(3, "\0\25\27\34X^\0\32\240\325N\271\10\0E\20\0\\\35\3@\0@\6\2F\n\0\4\3\n\0\3A\0\26\f\352\r^~\352\203\246\20fP\30.\20\275\337\0\00048Q:_K\0\307\353\240\377m[%\24\252iSnP\276\214j\310,\372\221\312\224\367ele\2628'Y\246m\0045H\251\232@?!\373\302I\30\240"..., 4096) = 106
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 326532640}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 326596842}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 326952239}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 327023985}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 327378560}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 327442686}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 327808259}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 327873228}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 328236456}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 328300593}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 328654604}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 328718692}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 329080435}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 329144719}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 329499245}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 329563457}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 329917994}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 329982150}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 330344039}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 330408230}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 330762601}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 330826821}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 331189579}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 331253848}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 331608622}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 331672831}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 332035449}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 332099778}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 332453665}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 332517863}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 332883072}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 332947953}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 333310798}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 333374947}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 333731566}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 333795846}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 334158672}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 334222881}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 334577534}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 334641694}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 334996396}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 335068736}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 335423336}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 335487527}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 335842202}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 335906381}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 336268338}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 336332619}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 336687249}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 336751319}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 337114983}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 337179192}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 337533653}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 337597851}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 337962978}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 338035577}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 338390802}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 338454996}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 338809340}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 338873523}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 339235766}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 339299888}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 339654230}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 339718449}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 340080189}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 340144379}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 340498776}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 340562982}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 340917352}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 340981498}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 341343639}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 341407916}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 341762268}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 341826560}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 342188995}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 342253189}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 342607559}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 342671813}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 343045240}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 343109818}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 343464433}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 343531000}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 343885735}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 343949944}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 344312066}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 344376313}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 344730669}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 344794882}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 345157396}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 345221605}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 345575829}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 345640046}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 345994451}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 346066633}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 346420925}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 346485164}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 346839433}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 346903594}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 347265660}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 347329892}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 347683751}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 347747960}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 348122575}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 348187096}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 348542080}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 348606229}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 348960491}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 349032151}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 349386759}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 349450885}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 349804921}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 349869096}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 350231095}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 350295142}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 350649209}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 350713376}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 351075108}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 351141385}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 351495921}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 351560107}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 351914298}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 351978485}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 352340254}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 352404512}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 352758755}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 352822900}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 353195910}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 353260306}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 353617467}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 353681676}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 354044983}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 354109301}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 354465946}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 354530159}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 354884497}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 354948683}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 355311058}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 355375206}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 355729727}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 355793888}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 356155646}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 356219817}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 356574102}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 356638382}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 356993016}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 357064838}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 357419453}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 357483752}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 357838281}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 357902558}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 358282590}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 358346931}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 358702602}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 358766758}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 359129671}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 359193868}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 359547965}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 359612095}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 359966090}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 360038243}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 360393031}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 360457131}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 360811618}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 360875729}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 361237457}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 361301535}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 361655782}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 361719867}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 362081118}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 362145405}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 362499848}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 362563933}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 362918394}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 362982558}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 363355500}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 363419810}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 363776583}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 363840706}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 364202712}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 364266974}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 364621194}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 364685328}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 365047835}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 365112182}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 365466339}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 365530405}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 365884371}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 365948497}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 366310514}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 366374719}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 366438771}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 366793028}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 366857110}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 367218725}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 367282938}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 367637125}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 367701269}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 368062223}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 368126417}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 368491882}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 368556188}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 368910631}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 368974704}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 369336199}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 369400408}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 369754813}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 369818969}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 370180732}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 370244929}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 370599800}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 370663991}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 371025978}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 371090507}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 371445175}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 371509334}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 371865766}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 371929952}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 372291729}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 372355938}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 372710275}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 372774446}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 373136457}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 373200736}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 373569352}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 373633610}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 373988195}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 374060324}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 374414632}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 374478893}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 374833245}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 374897368}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 375259540}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 375323820}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 375677977}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 375742156}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 376103936}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 376168134}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 376522592}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 376586691}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 376940938}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 377012354}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 377367575}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 377431753}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 377786110}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 377850266}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 378211539}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 378275725}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 378641179}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 378705456}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 379065733}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 379130028}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 379484136}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 379548529}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 379902825}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 379967004}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 380329246}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 380393606}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 380748199}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 380812566}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 381177290}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 381241522}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 381596235}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 381660650}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 382023288}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 382087955}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 382442466}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 382506690}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 382861159}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 382925443}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 383287498}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 383351842}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  ioctl(12, EVIOCGKEYCODE, 0x7fff8ede1b90) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 383714976}) = 0
9432  clock_gettime(CLOCK_MONOTONIC, {9536, 383782241}) = 0
9432  select(14, [3 6 10 12 13], [], [], {0, 10000}) = 1 (in [12], left {0, 9996})
9432  read(12, "\33\0\0\0"..., 4)       = 4
9432  write(12, "\33\0\0\0"..., 4)      = 4
9432  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f5882f59000
9432  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff8ede1270) = 0
9432  --- SIGBUS (Bus error) @ 0 (0) ---
9530  +++ killed by SIGBUS +++

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures
  2009-02-23 19:45                     ` Andrew Lyon
@ 2009-02-23 20:02                       ` Boris Derzhavets
  0 siblings, 0 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-23 20:02 UTC (permalink / raw)
  To: Andrew Lyon; +Cc: xen-devel@lists.xensource.com, Ian Jackson


[-- Attachment #1.1: Type: text/plain, Size: 2621 bytes --]

root@ServerXen331:~# which strace
/usr/bin/strace


--- On Mon, 2/23/09, Andrew Lyon <andrew.lyon@gmail.com> wrote:
From: Andrew Lyon <andrew.lyon@gmail.com>
Subject: Re: [Xen-devel] HVM pvops failures
To: bderzhavets@yahoo.com
Cc: "Ian Jackson" <Ian.Jackson@eu.citrix.com>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Monday, February 23, 2009, 2:45 PM

On Mon, Feb 23, 2009 at 6:47 PM, Boris Derzhavets <bderzhavets@yahoo.com>
wrote:
> I've tried that :-
>
> name = "Ubuntu810HVM"
> builder = "hvm"
> memory = "2048"
> disk =
['phy:/dev/loop0,hdc:cdrom,r','phy:/dev/sdb7,hda,w']
> vif = [ 'type=ioemu,bridge=eth0' ]
> # device_model = "/usr/lib64/xen/bin/qemu-dm"
> device_model = "device_model_wrap.sh"
> kernel = "/usr/lib/xen/boot/hvmloader"
> vnc=1
> boot="d"
> usb=1
> usbdevice="tablet"
> vcpus=1
> on_reboot = "restart"
> on_crash = "restart"
>
> cat device_model_wrap.sh
> #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o ~boris/vm/qemu-dm.strace \
>   /usr/lib64/xen/bin/qemu-dm "$@"
>
>
> Same behavior. File qemu-dm.strace has not been created at all.
> Content of log file under /var/log/xen is just the same.
> xm dmesg is much less informative. Just 2-3 HVM lines

Worked for me, I've attached the 1mb strace logfile.

Perhaps you don't have strace installed?

Andy
>
>
> --- On Mon, 2/23/09, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
>
> From: Ian Jackson <Ian.Jackson@eu.citrix.com>
> Subject: Re: [Xen-devel] HVM pvops failures
> To: "Andrew Lyon" <andrew.lyon@gmail.com>
> Cc: "xen-devel@lists.xensource.com"
<xen-devel@lists.xensource.com>
> Date: Monday, February 23, 2009, 11:21 AM
>
> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
[PATCH]
> ioemu: Cleanup the code of PCI passthrough.)"):
>> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson
> <Ian.Jackson@eu.citrix.com> wrote:
>> > These messages are not very surprising.  Is it working ?
>>
>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
this
> error:
>
> Ah.  This is rather odd.  Normally I would hope that xend would report
> an exit status.  (I haven't tried pvops with
>  qemu.)
>
> I would suggest running qemu-dm under strace.  This can be done easily
> enough with a simple wrapper script, something like:
>   #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>     /usr/lib/xen/bin/qemu-dm "$@"
> and then give the name of the script as device_model in your config file.
>
> Ian.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>



      

[-- Attachment #1.2: Type: text/html, Size: 3430 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.
  2009-02-23 11:36         ` Ian Jackson
  2009-02-23 14:23           ` Boris Derzhavets
@ 2009-02-23 22:30           ` Simon Horman
  1 sibling, 0 replies; 36+ messages in thread
From: Simon Horman @ 2009-02-23 22:30 UTC (permalink / raw)
  To: Ian Jackson; +Cc: Yuji Shimada, xen-devel@lists.xensource.com

On Mon, Feb 23, 2009 at 11:36:01AM +0000, Ian Jackson wrote:
> Simon Horman writes ("Re: [Xen-devel] Re: [PATCH] ioemu: Cleanup the code of PCI passthrough."):
> > On Mon, Feb 23, 2009 at 10:40:22AM +0900, Yuji Shimada wrote:
> > > Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp>
> > 
> > Tested-by: Simon Horman <horms@verge.net.au>
> 
> Thanks, I have applied this.
> 
> The problem causing it to be rejected was that hw/passthrough.[ch] and
> hw/pt-msi.[ch] were full of trailing whitespace, which Yuji Shimada's
> mailer evidently removes.  I think the mailer was right and the code
> was wrong.
> 
> So I have removed all of that trailing whitespace with a trivial perl
> one-liner and then committed the cleanup patch on top.  I haven't
> tested the pass-through but the tree does build.

It seems to work in my environment (2.6.27.5 dom0, not pv_ops).

-- 
Simon Horman
  VA Linux Systems Japan K.K., Sydney, Australia Satellite Office
  H: www.vergenet.net/~horms/             W: www.valinux.co.jp/en

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures
  2009-02-23 16:21                 ` HVM pvops failures Ian Jackson
  2009-02-23 18:47                   ` Boris Derzhavets
@ 2009-02-24  0:12                   ` Jeremy Fitzhardinge
  2009-02-24 11:21                     ` HVM pvops failures (one more qemu-dm.strace obtained) Boris Derzhavets
  2009-02-24 11:38                     ` Boris Derzhavets
  1 sibling, 2 replies; 36+ messages in thread
From: Jeremy Fitzhardinge @ 2009-02-24  0:12 UTC (permalink / raw)
  To: Ian Jackson; +Cc: Andrew Lyon, xen-devel@lists.xensource.com, Ian Campbell

[-- Attachment #1: Type: text/plain, Size: 2065 bytes --]

Ian Jackson wrote:
> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>   
>> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
>>     
>>> These messages are not very surprising.  Is it working ?
>>>       
>> No, when try to start HVM on Xen unstable with pv_ops kernel I get this error:
>>     
>
> Ah.  This is rather odd.  Normally I would hope that xend would report
> an exit status.  (I haven't tried pvops with qemu.)
>
>   
Hm, I'm getting:
[2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model 
failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log

Hm, signal 7 - SIGBUS.  I wonder if

Using stub domains doesn't work either.

> I would suggest running qemu-dm under strace.  This can be done easily
> enough with a simple wrapper script, something like:
>   #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>     /usr/lib/xen/bin/qemu-dm "$@"
> and then give the name of the script as device_model in your config file.
>   
I see:

...
5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539747423}) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539837298}) = 0
5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0, 9995})
5079  read(10, "\36\0\0\0"..., 4)       = 4
5079  write(10, "\36\0\0\0"..., 4)      = 4
5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540495964}) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540591278}) = 0
5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0, 9995})
5079  read(10, "\36\0\0\0"..., 4)       = 4
5079  write(10, "\36\0\0\0"..., 4)      = 4
5079  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7f1ad5f2b000
5079  ioctl(4, SNDCTL_DSP_STEREO, 0x7fffdfd52230) = 0
5079  --- SIGBUS (Bus error) @ 0 (0) ---
5157  +++ killed by SIGBUS +++


This mmap and ioctl is from /proc/xen/privcmd.

    J

[-- Attachment #2: qemu-dm.strace.gz --]
[-- Type: application/x-gzip, Size: 55627 bytes --]

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-24  0:12                   ` Jeremy Fitzhardinge
@ 2009-02-24 11:21                     ` Boris Derzhavets
  2009-02-24 11:38                     ` Boris Derzhavets
  1 sibling, 0 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-24 11:21 UTC (permalink / raw)
  To: Ian Jackson, Jeremy Fitzhardinge
  Cc: Andrew Lyon, xen-devel@lists.xensource.com, Ian Campbell


[-- Attachment #1.1: Type: text/plain, Size: 963551 bytes --]

6310  execve("/usr/lib64/xen/bin/qemu-dm", ["/usr/lib64/xen/bin/qemu-dm", "-d", "1", "-domain-name", "U810HVM", "-videoram", "4", "-vnc", "127.0.0.1:0", "-vncunused", "-vcpus", "1", "-boot", "d", "-acpi", "-usb", "-usbdevice", "tablet", "-net", "nic,vlan=1,macaddr=00:16:3e:0d:1e:12,model=rtl8139", "-net", "tap,vlan=1,ifname=tap1.0,bridge=eth0", "-M", "xenfv"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "_=/usr/sbin/xend", "UPSTART_JOB_ID=11", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "UPSTART_EVENT=runlevel", "XAUTHORITY=/root/.Xauthority", "previous=N", "PWD=/", "VERBOSE=no"]) = 0
6310  brk(0)                            = 0x2a0f000
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd6000
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd4000
6310  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6310  open("/etc/ld.so.cache", O_RDONLY) = 3
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6310  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fae2ecc2000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libm.so.6", O_RDONLY)  = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P>\0\0\0\0\0\0@\0\0\0\0\0\0\0\230A\10\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0000\347\7\0\0\0\0\0000\347\7\0\0\0\0\0000\347\7\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3305\10\0\0\0\0\0\3305\10\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\300=\10\0\0\0\0\0\300=(\0\0\0\0\0\300=(\0\0\0\0\0\320\2\0\0\0\0\0\0\30\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\350=\10\0\0\0\0\0\350=(\0\0\0\0\0\350=(\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0L\347\7\0\0\0\0\0L\347\7\0\0\0\0\0L\347\7\0\0\0\0\0\\\16\0\0\0\0\0\0\\\16\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491529, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=1072, st_size=542936, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2638040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e834000
6310  mprotect(0x7fae2e8b8000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2eab7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x83000) = 0x7fae2eab7000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libz.so.1", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\"\0\0\0\0\0\0@\0\0\0\0\0\0\0\0s\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\244a\1\0\0\0\0\0\244a\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\240l\1\0\0\0\0\0\240l!\0\0\0\0\0\240l!\0\0\0\0\0`\5\0\0\0\0\0\0p\5\0\0\0\0\0\0\0\0
 \0\0\0\0\0\2\0\0\0\6\0\0\0\320m\1\0\0\0\0\0\320m!\0\0\0\0\0\320m!\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\0T\1\0\0\0\0\0\0T\1\0\0\0\0\0\0T\1\0\0\0\0\0\324\2\0\0\0\0\0\0\324\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\240l\1\0\0\0\0\0\240l!\0\0\0\0\0\240l!\0\0\0\0\0H\3\0\0\0\0\0\0H\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0a\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\31\0\0\0\r\0\0\0:\0\0\0\30\0\0\0\0\0\0\0a\0\0\0\0\0\0\0\0\0\0\0O\0\0\0\0\0\0\0P\0\0\0\0\0\0\0[\0\0\0\20\0\0\0U\0\0\0^\0\0\0C\0\0\0#\0\0\0001\0\0\0\0\0\0\0+\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2008942, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=200, st_size=96768, st_atime=2009/02/14-05:26:11, st_mtime=2008/05/06-06:09:54, st_ctime=2009/02/14-05:26:07}) = 0
6310  mmap(NULL, 2191888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e61c000
6310  mprotect(0x7fae2e633000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e832000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fae2e832000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/librt.so.1", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\"\0\0\0\0\0\0@\0\0\0\0\0\0\0\250\203\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0 \0\37\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@d\0\0\0\0\0\0@d\0\0\0\0\0\0@d\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204t\0\0\0\0\0\0\204t\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0x}\0\0\0\0\0\0x} \0\0\0\0\0x} \0\0\0\0\0\364\4\0\0\0\0\0\0x\16\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\260}\0\0\0\0\0\0\260} \0\0\0\0\0\260} \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\\d\0\0\0\0\0\0\\d\0\0\0\0\0\0\\d\0\0\0\0\0\0D\2\0\0\0\0\0\0D\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491541, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=35752, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:32, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecc1000
6310  mmap(NULL, 2132976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e413000
6310  mprotect(0x7fae2e41b000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e61a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fae2e61a000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libpthread.so.0", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320W\0\0\0\0\0\0@\0\0\0\0\0\0\0\240t\1\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0#\0 \0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\360\27\1\0\0\0\0\0\360\27\1\0\0\0\0\0\360\27\1\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ld\1\0\0\0\0\0Ld\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\320k\1\0\0\0\0\0\320k!\0\0\0\0\0\320k!\0\0\0\0\0\200\6\0\0\0\0\0\0\240G\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\250m\1\0\0\0\0\0\250m!\0\0\0\0\0\250m!\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\f\30\1\0\0\0\0\0\f\30\1\0\0\0\0\0\f\30\1\0\0\0\0\0\274\t\0\0\0\0\0\0\274\t\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491539, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=264, st_size=130214, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:37, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2208624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e1f7000
6310  mprotect(0x7fae2e20e000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e40d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fae2e40d000
6310  mmap(0x7fae2e40f000, 13168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2e40f000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libutil.so.1", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\"\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0P\27\0\0\0\0\0\0P\27\0\0\0\0\0\0P\27\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0x\32\0\0\0\0\0\0x\32\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\350\35\0\0\0\0\0\0\350\35 \0\0\0\0\0\350\35 \0\0\0\0\0\20\3\0\0\0\0\0\0 \3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\20\36\0\0\0\0\0\0\20\36 \0\0\0\0\0\20\36 \0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0l\27\0\0\0\0\0\0l\27\0\0\0\0\0\0l\27\0\0\0\0\0\0<\0\0\0\0\0\0\0<\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491544, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=24, st_size=10560, st_atime=2009/02/14-07:15:46, st_mtime=2009/01/29-12:56:32, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2105608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2dff4000
6310  mprotect(0x7fae2dff6000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e1f5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fae2e1f5000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libxenctrl.so.3.4", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340H\0\0\0\0\0\0@\0\0\0\0\0\0\0\250\313\5\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0&\0#\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\374L\1\0\0\0\0\0\374L\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\260\\\1\0\0\0\0\0\260\\!\0\0\0\0\0\260\\!\0\0\0\0\0\214\6\0\0\0\0\0\0000\237\2\0\0\0\0\0\0\0
 \0\0\0\0\0\2\0\0\0\6\0\0\0\0^\1\0\0\0\0\0\0^!\0\0\0\0\0\0^!\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\340+\1\0\0\0\0\0\340+\1\0\0\0\0\0\340+\1\0\0\0\0\0L\6\0\0\0\0\0\0L\6\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\260\\\1\0\0\0\0\0\260\\!\0\0\0\0\0\260\\!\0\0\0\0\0P\3\0\0\0\0\0\0P\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0\305\0\0\0\346\0\0\0\274\0\0\0.\0\0\0\0\0\0\0O\0\0\0\0\0\0\0$\0\0\0\0\0\0\0\313\0\0\0\\\0\0\0\0\0\0\0\0\0\0\0\206\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0a\0\0\0\30\0\0\0\332\0\0\0T\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312722, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=792, st_size=398038, st_atime=2009/02/23-08:57:01, st_mtime=2009/02/23-07:58:31, st_ctime=2009/02/23-08:28:42}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecc0000
6310  mmap(NULL, 2358240, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2ddb4000
6310  mprotect(0x7fae2ddc9000, 2097152, PROT_NONE) = 0
6310  mmap(0x7fae2dfc9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fae2dfc9000
6310  mmap(0x7fae2dfcb000, 166880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2dfcb000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libxenguest.so.3.4", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`I\0\0\0\0\0\0@\0\0\0\0\0\0\0h\200\5\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0&\0#\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\241\1\0\0\0\0\0l\241\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10\246\1\0\0\0\0\0\10\246!\0\0\0\0\0\10\246!\0\0\0\0\0\210\22\0\0\0\0\0\0\200\23\0\0\0\0\0\0\0\0
 \0\0\0\0\0\2\0\0\0\6\0\0\0\300\255\1\0\0\0\0\0\300\255!\0\0\0\0\0\300\255!\0\0\0\0\0\320\1\0\0\0\0\0\0\320\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\324\211\1\0\0\0\0\0\324\211\1\0\0\0\0\0\324\211\1\0\0\0\0\0d\4\0\0\0\0\0\0d\4\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\10\246\1\0\0\0\0\0\10\246!\0\0\0\0\0\10\246!\0\0\0\0\0\370\t\0\0\0\0\0\0\370\t\0\0\0\0\0\0\1\0\0\0\0\0\0\0\203\0\0\0\254\0\0\0\0\0\0\0\214\0\0\0000\0\0\0M\0\0\0:\0\0\0\235\0\0\0Z\0\0\0k\0\0\0>\0\0\0r\0\0\0\0\0\0\0A\0\0\0\247\0\0\0\233\0\0\0\234\0\0\0E\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312726, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=752, st_size=378254, st_atime=2009/02/23-08:57:01, st_mtime=2009/02/23-07:58:36, st_ctime=2009/02/23-08:28:42}) = 0
6310  mmap(NULL, 2210184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2db98000
6310  mprotect(0x7fae2dbb3000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2ddb2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7fae2ddb2000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libxenstore.so.3.0", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \34\0\0\0\0\0\0@\0\0\0\0\0\0\0\330\342\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0&\0#\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0tC\0\0\0\0\0\0tC\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\30M\0\0\0\0\0\0\30M \0\0\0\0\0\30M \0\0\0\0\0h\4\0\0\0\0\0\0\2204\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0 N\0\0\0\0\0\0 N \0\0\0\0\0 N \0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\224;\0\0\0\0\0\0\224;\0\0\0\0\0\0\224;\0\0\0\0\0\0\204\1\0\0\0\0\0\0\204\1\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\30M\0\0\0\0\0\0\30M \0\0\0\0\0\30M \0\0\0\0\0\350\2\0\0\0\0\0\0\350\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0C\0\0\0T\0\0\0002\0\0\0004\0\0\0\0\0\0\0H\0\0\0\0\0\0\0:\0\0\0\0\0\0\0M\0\0\0\0\0\0\0\'\0\0\0%\0\0\0G\0\0\0J\0\0\0\22\0\0\0\0\0\0\0\34\0\0\0
 \0\0\0\5\0\0\0\0\0\0\0\"\0\0\0?\0\0\0,\0\0\0\17\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312734, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=144, st_size=66323, st_atime=2009/02/23-08:57:01, st_mtime=2009/02/23-07:58:37, st_ctime=2009/02/23-08:28:42}) = 0
6310  mmap(NULL, 2130344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d98f000
6310  mprotect(0x7fae2d994000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2db93000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fae2db93000
6310  mmap(0x7fae2db95000, 8616, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2db95000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libblktap.so.3.0", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\22\0\0\0\0\0\0@\0\0\0\0\0\0\0\200\237\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0%\0\"\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\354,\0\0\0\0\0\0\354,\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\370-\0\0\0\0\0\0\370- \0\0\0\0\0\370- \0\0\0\0\0H\3\0\0\0\0\0\0\210#\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0 .\0\0\0\0\0\0 . \0\0\0\0\0 . \0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\260(\0\0\0\0\0\0\260(\0\0\0\0\0\0\260(\0\0\0\0\0\0\324\0\0\0\0\0\0\0\324\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\370-\0\0\0\0\0\0\370- \0\0\0\0\0\370- \0\0\0\0\0\10\2\0\0\0\0\0\0\10\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0%\0\0\0005\0\0\0\0\0\0\0\33\0\0\0
 \0\0\0\36\0\0\0\"\0\0\0/\0\0\0004\0\0\0\0\0\0\0\32\0\0\0\n\0\0\0\0\0\0\0*\0\0\0\34\0\0\0\0\0\0\0\21\0\0\0\20\0\0\0000\0\0\0\31\0\0\0,\0\0\0$\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312739, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=96, st_size=47471, st_atime=2009/02/23-08:57:25, st_mtime=2009/02/23-07:58:54, st_ctime=2009/02/23-08:28:45}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbf000
6310  mmap(NULL, 2118016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d789000
6310  mprotect(0x7fae2d78c000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2d98b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fae2d98b000
6310  mmap(0x7fae2d98d000, 4480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2d98d000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libncurses.so.5", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\6\1\0\0\0\0\0@\0\0\0\0\0\0\0@\250\3\0\0\0\0\0\0\0\0\0@\0008\0\5\0@\0\33\0\32\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$m\3\0\0\0\0\0$m\3\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0(m\3\0\0\0\0\0(m#\0\0\0\0\0(m#\0\0\0\0\0(:\0\0\0\0\0\0X@\0\0\0\0\0\0\0\0
 \0\0\0\0\0\2\0\0\0\6\0\0\0\230\234\3\0\0\0\0\0\230\234#\0\0\0\0\0\230\234#\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\220\26\3\0\0\0\0\0\220\26\3\0\0\0\0\0\220\26\3\0\0\0\0\0\f\20\0\0\0\0\0\0\f\20\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\t\2\0\0\'\2\0\0{\1\0\0\272\1\0\0\0\0\0\0J\0\0\0$\0\0\0\334\1\0\0\0\0\0\0\0\0\0\0\n\2\0\0\26\0\0\0F\1\0\0\0\0\0\0\0\0\0\0U\0\0\0\370\1\0\0\0\0\0\0\0\0\0\0\307\1\0\0M\1\0\0\204\0\0\0\237\1\0\0\0\0\0\0\0\0\0\0\321\0\0\0\24\0\0\0\234\1\0\0\376\0\0\0\266\0\0\0\0\0\0\0\270\0\0\0\0\0\0\0\247\1\0\0\34"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2818114, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=480, st_size=241408, st_atime=2009/02/14-05:26:07, st_mtime=2008/02/23-18:39:14, st_ctime=2009/02/14-05:26:06}) = 0
6310  mmap(NULL, 2338176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d54e000
6310  mprotect(0x7fae2d585000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2d784000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x36000) = 0x7fae2d784000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libc.so.6", O_RDONLY)  = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d1dc000
6310  mprotect(0x7fae2d345000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2d544000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x168000) = 0x7fae2d544000
6310  mmap(0x7fae2d549000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2d549000
6310  close(3)                          = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbe000
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libdl.so.2", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\2201\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\36\0\35\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\220\32\0\0\0\0\0\0\220\32\0\0\0\0\0\0\220\32\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\37\0\0\0\0\0\0`\37\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0h-\0\0\0\0\0\0h- \0\0\0\0\0h- \0\0\0\0\0\30\3\0\0\0\0\0\0\230\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\240-\0\0\0\0\0\0\240- \0\0\0\0\0\240- \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\254\32\0\0\0\0\0\0\254\32\0\0\0\0\0\0\254\32\0\0\0\0\0\0\264\0\0\0\0\0\0\0\264\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491528, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=32, st_size=14608, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2cfd8000
6310  mprotect(0x7fae2cfda000, 2097152, PROT_NONE) = 0
6310  mmap(0x7fae2d1da000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fae2d1da000
6310  close(3)                          = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbd000
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbc000
6310  arch_prctl(ARCH_SET_FS, 0x7fae2ecbc6e0) = 0
6310  mprotect(0x7fae2d1da000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2d544000, 16384, PROT_READ) = 0
6310  mprotect(0x7fae2d98b000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2db93000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2ddb2000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2dfc9000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2e1f5000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2e40d000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2e61a000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2eab7000, 4096, PROT_READ) = 0
6310  mprotect(0x6e7000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2ecd7000, 4096, PROT_READ) = 0
6310  munmap(0x7fae2ecc2000, 72620)     = 0
6310  set_tid_address(0x7fae2ecbc770)   = 6310
6310  set_robust_list(0x7fae2ecbc780, 0x18) = 0
6310  futex(0x7fff36cd5dec, 0x81 /* FUTEX_??? */, 1) = 0
6310  rt_sigaction(SIGRTMIN, {0x7fae2e1fc660, [], SA_RESTORER|SA_SIGINFO, 0x7fae2e2060f0}, NULL, 8) = 0
6310  rt_sigaction(SIGRT_1, {0x7fae2e1fc6f0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7fae2e2060f0}, NULL, 8) = 0
6310  rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
6310  getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
6310  getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_STACK, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  getrlimit(RLIMIT_DATA, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_DATA, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_RSS, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_MEMLOCK, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "domid: 1\n", 9)         = 9
6310  write(2, "qemu: the number of cpus is 1\n", 30) = 30
6310  clock_gettime(CLOCK_MONOTONIC, {179, 140243822}) = 0
6310  brk(0)                            = 0x2a0f000
6310  brk(0x2a30000)                    = 0x2a30000
6310  open("/dev/net/tun", O_RDWR)      = 3
6310  ioctl(3, TUNSETIFF, 0x7fff36cd5390) = 0
6310  fcntl(3, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
6310  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fae2ecbc770) = 6412
6412  getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
6412  close(4)                          = -1 EBADF (Bad file descriptor)
6412  close(5)                          = -1 EBADF (Bad file descriptor)
6412  close(6)                          = -1 EBADF (Bad file descriptor)
6412  close(7)                          = -1 EBADF (Bad file descriptor)
6412  close(8)                          = -1 EBADF (Bad file descriptor)
6412  close(9)                          = -1 EBADF (Bad file descriptor)
6412  close(10)                         = -1 EBADF (Bad file descriptor)
6412  close(11)                         = -1 EBADF (Bad file descriptor)
6412  close(12)                         = -1 EBADF (Bad file descriptor)
6412  close(13)                         = -1 EBADF (Bad file descriptor)
6412  close(14)                         = -1 EBADF (Bad file descriptor)
6412  close(15)                         = -1 EBADF (Bad file descriptor)
6412  close(16)                         = -1 EBADF (Bad file descriptor)
6412  close(17)                         = 0
6412  close(18)                         = 0
6412  close(19)                         = -1 EBADF (Bad file descriptor)
6412  close(20)                         = -1 EBADF (Bad file descriptor)
6412  close(21)                         = -1 EBADF (Bad file descriptor)
6412  close(22)                         = -1 EBADF (Bad file descriptor)
6412  close(23)                         = -1 EBADF (Bad file descriptor)
6412  close(24)                         = -1 EBADF (Bad file descriptor)
6412  close(25)                         = 0
6412  close(26)                         = -1 EBADF (Bad file descriptor)
6412  close(27)                         = -1 EBADF (Bad file descriptor)
6412  close(28)                         = -1 EBADF (Bad file descriptor)
6412  close(29)                         = -1 EBADF (Bad file descriptor)
6412  close(30)                         = -1 EBADF (Bad file descriptor)
6412  close(31)                         = -1 EBADF (Bad file descriptor)
6412  close(32)                         = -1 EBADF (Bad file descriptor)
6412  close(33)                         = -1 EBADF (Bad file descriptor)
6412  close(34)                         = -1 EBADF (Bad file descriptor)
6412  close(35)                         = -1 EBADF (Bad file descriptor)
6412  close(36)                         = -1 EBADF (Bad file descriptor)
6412  close(37)                         = -1 EBADF (Bad file descriptor)
6412  close(38)                         = -1 EBADF (Bad file descriptor)
6412  close(39)                         = -1 EBADF (Bad file descriptor)
6412  close(40)                         = -1 EBADF (Bad file descriptor)
6412  close(41)                         = -1 EBADF (Bad file descriptor)
6412  close(42)                         = -1 EBADF (Bad file descriptor)
6412  close(43)                         = -1 EBADF (Bad file descriptor)
6412  close(44)                         = -1 EBADF (Bad file descriptor)
6412  close(45)                         = -1 EBADF (Bad file descriptor)
6412  close(46)                         = -1 EBADF (Bad file descriptor)
6412  close(47)                         = -1 EBADF (Bad file descriptor)
6412  close(48)                         = -1 EBADF (Bad file descriptor)
6412  close(49)                         = -1 EBADF (Bad file descriptor)
6412  close(50)                         = -1 EBADF (Bad file descriptor)
6412  close(51)                         = -1 EBADF (Bad file descriptor)
6412  close(52)                         = -1 EBADF (Bad file descriptor)
6412  close(53)                         = -1 EBADF (Bad file descriptor)
6412  close(54)                         = -1 EBADF (Bad file descriptor)
6412  close(55)                         = -1 EBADF (Bad file descriptor)
6412  close(56)                         = -1 EBADF (Bad file descriptor)
6412  close(57)                         = -1 EBADF (Bad file descriptor)
6412  close(58)                         = -1 EBADF (Bad file descriptor)
6412  close(59)                         = -1 EBADF (Bad file descriptor)
6412  close(60)                         = -1 EBADF (Bad file descriptor)
6412  close(61)                         = -1 EBADF (Bad file descriptor)
6412  close(62)                         = -1 EBADF (Bad file descriptor)
6412  close(63)                         = -1 EBADF (Bad file descriptor)
6412  close(64)                         = -1 EBADF (Bad file descriptor)
6412  close(65)                         = -1 EBADF (Bad file descriptor)
6412  close(66)                         = -1 EBADF (Bad file descriptor)
6412  close(67)                         = -1 EBADF (Bad file descriptor)
6412  close(68)                         = -1 EBADF (Bad file descriptor)
6412  close(69)                         = -1 EBADF (Bad file descriptor)
6412  close(70)                         = -1 EBADF (Bad file descriptor)
6412  close(71)                         = -1 EBADF (Bad file descriptor)
6412  close(72)                         = -1 EBADF (Bad file descriptor)
6412  close(73)                         = -1 EBADF (Bad file descriptor)
6412  close(74)                         = -1 EBADF (Bad file descriptor)
6412  close(75)                         = -1 EBADF (Bad file descriptor)
6412  close(76)                         = -1 EBADF (Bad file descriptor)
6412  close(77)                         = -1 EBADF (Bad file descriptor)
6412  close(78)                         = -1 EBADF (Bad file descriptor)
6412  close(79)                         = -1 EBADF (Bad file descriptor)
6412  close(80)                         = -1 EBADF (Bad file descriptor)
6412  close(81)                         = -1 EBADF (Bad file descriptor)
6412  close(82)                         = -1 EBADF (Bad file descriptor)
6412  close(83)                         = -1 EBADF (Bad file descriptor)
6412  close(84)                         = -1 EBADF (Bad file descriptor)
6412  close(85)                         = -1 EBADF (Bad file descriptor)
6412  close(86)                         = -1 EBADF (Bad file descriptor)
6412  close(87)                         = -1 EBADF (Bad file descriptor)
6412  close(88)                         = -1 EBADF (Bad file descriptor)
6412  close(89)                         = -1 EBADF (Bad file descriptor)
6412  close(90)                         = -1 EBADF (Bad file descriptor)
6412  close(91)                         = -1 EBADF (Bad file descriptor)
6412  close(92)                         = -1 EBADF (Bad file descriptor)
6412  close(93)                         = -1 EBADF (Bad file descriptor)
6412  close(94)                         = -1 EBADF (Bad file descriptor)
6412  close(95)                         = -1 EBADF (Bad file descriptor)
6412  close(96)                         = -1 EBADF (Bad file descriptor)
6412  close(97)                         = -1 EBADF (Bad file descriptor)
6412  close(98)                         = -1 EBADF (Bad file descriptor)
6412  close(99)                         = -1 EBADF (Bad file descriptor)
6412  close(100)                        = -1 EBADF (Bad file descriptor)
6412  close(101)                        = -1 EBADF (Bad file descriptor)
6412  close(102)                        = -1 EBADF (Bad file descriptor)
6412  close(103)                        = -1 EBADF (Bad file descriptor)
6412  close(104)                        = -1 EBADF (Bad file descriptor)
6412  close(105)                        = -1 EBADF (Bad file descriptor)
6412  close(106)                        = -1 EBADF (Bad file descriptor)
6412  close(107)                        = -1 EBADF (Bad file descriptor)
6412  close(108)                        = -1 EBADF (Bad file descriptor)
6412  close(109)                        = -1 EBADF (Bad file descriptor)
6412  close(110)                        = -1 EBADF (Bad file descriptor)
6412  close(111)                        = -1 EBADF (Bad file descriptor)
6412  close(112)                        = -1 EBADF (Bad file descriptor)
6412  close(113)                        = -1 EBADF (Bad file descriptor)
6412  close(114)                        = -1 EBADF (Bad file descriptor)
6412  close(115)                        = -1 EBADF (Bad file descriptor)
6412  close(116)                        = -1 EBADF (Bad file descriptor)
6412  close(117)                        = -1 EBADF (Bad file descriptor)
6412  close(118)                        = -1 EBADF (Bad file descriptor)
6412  close(119)                        = -1 EBADF (Bad file descriptor)
6412  close(120)                        = -1 EBADF (Bad file descriptor)
6412  close(121)                        = -1 EBADF (Bad file descriptor)
6412  close(122)                        = -1 EBADF (Bad file descriptor)
6412  close(123)                        = -1 EBADF (Bad file descriptor)
6412  close(124)                        = -1 EBADF (Bad file descriptor)
6412  close(125)                        = -1 EBADF (Bad file descriptor)
6412  close(126)                        = -1 EBADF (Bad file descriptor)
6412  close(127)                        = -1 EBADF (Bad file descriptor)
6412  close(128)                        = -1 EBADF (Bad file descriptor)
6412  close(129)                        = -1 EBADF (Bad file descriptor)
6412  close(130)                        = -1 EBADF (Bad file descriptor)
6412  close(131)                        = -1 EBADF (Bad file descriptor)
6412  close(132)                        = -1 EBADF (Bad file descriptor)
6412  close(133)                        = -1 EBADF (Bad file descriptor)
6412  close(134)                        = -1 EBADF (Bad file descriptor)
6412  close(135)                        = -1 EBADF (Bad file descriptor)
6412  close(136)                        = -1 EBADF (Bad file descriptor)
6412  close(137)                        = -1 EBADF (Bad file descriptor)
6412  close(138)                        = -1 EBADF (Bad file descriptor)
6412  close(139)                        = -1 EBADF (Bad file descriptor)
6412  close(140)                        = -1 EBADF (Bad file descriptor)
6412  close(141)                        = -1 EBADF (Bad file descriptor)
6412  close(142)                        = -1 EBADF (Bad file descriptor)
6412  close(143)                        = -1 EBADF (Bad file descriptor)
6412  close(144)                        = -1 EBADF (Bad file descriptor)
6412  close(145)                        = -1 EBADF (Bad file descriptor)
6412  close(146)                        = -1 EBADF (Bad file descriptor)
6412  close(147)                        = -1 EBADF (Bad file descriptor)
6412  close(148)                        = -1 EBADF (Bad file descriptor)
6412  close(149)                        = -1 EBADF (Bad file descriptor)
6412  close(150)                        = -1 EBADF (Bad file descriptor)
6412  close(151)                        = -1 EBADF (Bad file descriptor)
6412  close(152)                        = -1 EBADF (Bad file descriptor)
6412  close(153)                        = -1 EBADF (Bad file descriptor)
6412  close(154)                        = -1 EBADF (Bad file descriptor)
6412  close(155)                        = -1 EBADF (Bad file descriptor)
6412  close(156)                        = -1 EBADF (Bad file descriptor)
6412  close(157)                        = -1 EBADF (Bad file descriptor)
6412  close(158)                        = -1 EBADF (Bad file descriptor)
6412  close(159)                        = -1 EBADF (Bad file descriptor)
6412  close(160)                        = -1 EBADF (Bad file descriptor)
6412  close(161)                        = -1 EBADF (Bad file descriptor)
6412  close(162)                        = -1 EBADF (Bad file descriptor)
6412  close(163)                        = -1 EBADF (Bad file descriptor)
6412  close(164)                        = -1 EBADF (Bad file descriptor)
6412  close(165)                        = -1 EBADF (Bad file descriptor)
6412  close(166)                        = -1 EBADF (Bad file descriptor)
6412  close(167)                        = -1 EBADF (Bad file descriptor)
6412  close(168)                        = -1 EBADF (Bad file descriptor)
6412  close(169)                        = -1 EBADF (Bad file descriptor)
6412  close(170)                        = -1 EBADF (Bad file descriptor)
6412  close(171)                        = -1 EBADF (Bad file descriptor)
6412  close(172)                        = -1 EBADF (Bad file descriptor)
6412  close(173)                        = -1 EBADF (Bad file descriptor)
6412  close(174)                        = -1 EBADF (Bad file descriptor)
6412  close(175)                        = -1 EBADF (Bad file descriptor)
6412  close(176)                        = -1 EBADF (Bad file descriptor)
6412  close(177)                        = -1 EBADF (Bad file descriptor)
6412  close(178)                        = -1 EBADF (Bad file descriptor)
6412  close(179)                        = -1 EBADF (Bad file descriptor)
6412  close(180)                        = -1 EBADF (Bad file descriptor)
6412  close(181)                        = -1 EBADF (Bad file descriptor)
6412  close(182)                        = -1 EBADF (Bad file descriptor)
6412  close(183)                        = -1 EBADF (Bad file descriptor)
6412  close(184)                        = -1 EBADF (Bad file descriptor)
6412  close(185)                        = -1 EBADF (Bad file descriptor)
6412  close(186)                        = -1 EBADF (Bad file descriptor)
6412  close(187)                        = -1 EBADF (Bad file descriptor)
6412  close(188)                        = -1 EBADF (Bad file descriptor)
6412  close(189)                        = -1 EBADF (Bad file descriptor)
6412  close(190)                        = -1 EBADF (Bad file descriptor)
6412  close(191)                        = -1 EBADF (Bad file descriptor)
6412  close(192)                        = -1 EBADF (Bad file descriptor)
6412  close(193)                        = -1 EBADF (Bad file descriptor)
6412  close(194)                        = -1 EBADF (Bad file descriptor)
6412  close(195)                        = -1 EBADF (Bad file descriptor)
6412  close(196)                        = -1 EBADF (Bad file descriptor)
6412  close(197)                        = -1 EBADF (Bad file descriptor)
6412  close(198)                        = -1 EBADF (Bad file descriptor)
6412  close(199)                        = -1 EBADF (Bad file descriptor)
6412  close(200)                        = -1 EBADF (Bad file descriptor)
6412  close(201)                        = -1 EBADF (Bad file descriptor)
6412  close(202)                        = -1 EBADF (Bad file descriptor)
6412  close(203)                        = -1 EBADF (Bad file descriptor)
6412  close(204)                        = -1 EBADF (Bad file descriptor)
6412  close(205)                        = -1 EBADF (Bad file descriptor)
6412  close(206)                        = -1 EBADF (Bad file descriptor)
6412  close(207)                        = -1 EBADF (Bad file descriptor)
6412  close(208)                        = -1 EBADF (Bad file descriptor)
6412  close(209)                        = -1 EBADF (Bad file descriptor)
6412  close(210)                        = -1 EBADF (Bad file descriptor)
6412  close(211)                        = -1 EBADF (Bad file descriptor)
6412  close(212)                        = -1 EBADF (Bad file descriptor)
6412  close(213)                        = -1 EBADF (Bad file descriptor)
6412  close(214)                        = -1 EBADF (Bad file descriptor)
6412  close(215)                        = -1 EBADF (Bad file descriptor)
6412  close(216)                        = -1 EBADF (Bad file descriptor)
6412  close(217)                        = -1 EBADF (Bad file descriptor)
6412  close(218)                        = -1 EBADF (Bad file descriptor)
6412  close(219)                        = -1 EBADF (Bad file descriptor)
6412  close(220)                        = -1 EBADF (Bad file descriptor)
6412  close(221)                        = -1 EBADF (Bad file descriptor)
6412  close(222)                        = -1 EBADF (Bad file descriptor)
6412  close(223)                        = -1 EBADF (Bad file descriptor)
6412  close(224)                        = -1 EBADF (Bad file descriptor)
6412  close(225)                        = -1 EBADF (Bad file descriptor)
6412  close(226)                        = -1 EBADF (Bad file descriptor)
6412  close(227)                        = -1 EBADF (Bad file descriptor)
6412  close(228)                        = -1 EBADF (Bad file descriptor)
6412  close(229)                        = -1 EBADF (Bad file descriptor)
6412  close(230)                        = -1 EBADF (Bad file descriptor)
6412  close(231)                        = -1 EBADF (Bad file descriptor)
6412  close(232)                        = -1 EBADF (Bad file descriptor)
6412  close(233)                        = -1 EBADF (Bad file descriptor)
6412  close(234)                        = -1 EBADF (Bad file descriptor)
6412  close(235)                        = -1 EBADF (Bad file descriptor)
6412  close(236)                        = -1 EBADF (Bad file descriptor)
6412  close(237)                        = -1 EBADF (Bad file descriptor)
6412  close(238)                        = -1 EBADF (Bad file descriptor)
6412  close(239)                        = -1 EBADF (Bad file descriptor)
6412  close(240)                        = -1 EBADF (Bad file descriptor)
6412  close(241)                        = -1 EBADF (Bad file descriptor)
6412  close(242)                        = -1 EBADF (Bad file descriptor)
6412  close(243)                        = -1 EBADF (Bad file descriptor)
6412  close(244)                        = -1 EBADF (Bad file descriptor)
6412  close(245)                        = -1 EBADF (Bad file descriptor)
6412  close(246)                        = -1 EBADF (Bad file descriptor)
6412  close(247)                        = -1 EBADF (Bad file descriptor)
6412  close(248)                        = -1 EBADF (Bad file descriptor)
6412  close(249)                        = -1 EBADF (Bad file descriptor)
6412  close(250)                        = -1 EBADF (Bad file descriptor)
6412  close(251)                        = -1 EBADF (Bad file descriptor)
6412  close(252)                        = -1 EBADF (Bad file descriptor)
6412  close(253)                        = -1 EBADF (Bad file descriptor)
6412  close(254)                        = -1 EBADF (Bad file descriptor)
6412  close(255)                        = -1 EBADF (Bad file descriptor)
6412  close(256)                        = -1 EBADF (Bad file descriptor)
6412  close(257)                        = -1 EBADF (Bad file descriptor)
6412  close(258)                        = -1 EBADF (Bad file descriptor)
6412  close(259)                        = -1 EBADF (Bad file descriptor)
6412  close(260)                        = -1 EBADF (Bad file descriptor)
6412  close(261)                        = -1 EBADF (Bad file descriptor)
6412  close(262)                        = -1 EBADF (Bad file descriptor)
6412  close(263)                        = -1 EBADF (Bad file descriptor)
6412  close(264)                        = -1 EBADF (Bad file descriptor)
6412  close(265)                        = -1 EBADF (Bad file descriptor)
6412  close(266)                        = -1 EBADF (Bad file descriptor)
6412  close(267)                        = -1 EBADF (Bad file descriptor)
6412  close(268)                        = -1 EBADF (Bad file descriptor)
6412  close(269)                        = -1 EBADF (Bad file descriptor)
6412  close(270)                        = -1 EBADF (Bad file descriptor)
6412  close(271)                        = -1 EBADF (Bad file descriptor)
6412  close(272)                        = -1 EBADF (Bad file descriptor)
6412  close(273)                        = -1 EBADF (Bad file descriptor)
6412  close(274)                        = -1 EBADF (Bad file descriptor)
6412  close(275)                        = -1 EBADF (Bad file descriptor)
6412  close(276)                        = -1 EBADF (Bad file descriptor)
6412  close(277)                        = -1 EBADF (Bad file descriptor)
6412  close(278)                        = -1 EBADF (Bad file descriptor)
6412  close(279)                        = -1 EBADF (Bad file descriptor)
6412  close(280)                        = -1 EBADF (Bad file descriptor)
6412  close(281)                        = -1 EBADF (Bad file descriptor)
6412  close(282)                        = -1 EBADF (Bad file descriptor)
6412  close(283)                        = -1 EBADF (Bad file descriptor)
6412  close(284)                        = -1 EBADF (Bad file descriptor)
6412  close(285)                        = -1 EBADF (Bad file descriptor)
6412  close(286)                        = -1 EBADF (Bad file descriptor)
6412  close(287)                        = -1 EBADF (Bad file descriptor)
6412  close(288)                        = -1 EBADF (Bad file descriptor)
6412  close(289)                        = -1 EBADF (Bad file descriptor)
6412  close(290)                        = -1 EBADF (Bad file descriptor)
6412  close(291)                        = -1 EBADF (Bad file descriptor)
6412  close(292)                        = -1 EBADF (Bad file descriptor)
6412  close(293)                        = -1 EBADF (Bad file descriptor)
6412  close(294)                        = -1 EBADF (Bad file descriptor)
6412  close(295)                        = -1 EBADF (Bad file descriptor)
6412  close(296)                        = -1 EBADF (Bad file descriptor)
6412  close(297)                        = -1 EBADF (Bad file descriptor)
6412  close(298)                        = -1 EBADF (Bad file descriptor)
6412  close(299)                        = -1 EBADF (Bad file descriptor)
6412  close(300)                        = -1 EBADF (Bad file descriptor)
6412  close(301)                        = -1 EBADF (Bad file descriptor)
6412  close(302)                        = -1 EBADF (Bad file descriptor)
6412  close(303)                        = -1 EBADF (Bad file descriptor)
6412  close(304)                        = -1 EBADF (Bad file descriptor)
6412  close(305)                        = -1 EBADF (Bad file descriptor)
6412  close(306)                        = -1 EBADF (Bad file descriptor)
6412  close(307)                        = -1 EBADF (Bad file descriptor)
6412  close(308)                        = -1 EBADF (Bad file descriptor)
6412  close(309)                        = -1 EBADF (Bad file descriptor)
6412  close(310)                        = -1 EBADF (Bad file descriptor)
6412  close(311)                        = -1 EBADF (Bad file descriptor)
6412  close(312)                        = -1 EBADF (Bad file descriptor)
6412  close(313)                        = -1 EBADF (Bad file descriptor)
6412  close(314)                        = -1 EBADF (Bad file descriptor)
6412  close(315)                        = -1 EBADF (Bad file descriptor)
6412  close(316)                        = -1 EBADF (Bad file descriptor)
6412  close(317)                        = -1 EBADF (Bad file descriptor)
6412  close(318)                        = -1 EBADF (Bad file descriptor)
6412  close(319)                        = -1 EBADF (Bad file descriptor)
6412  close(320)                        = -1 EBADF (Bad file descriptor)
6412  close(321)                        = -1 EBADF (Bad file descriptor)
6412  close(322)                        = -1 EBADF (Bad file descriptor)
6412  close(323)                        = -1 EBADF (Bad file descriptor)
6412  close(324)                        = -1 EBADF (Bad file descriptor)
6412  close(325)                        = -1 EBADF (Bad file descriptor)
6412  close(326)                        = -1 EBADF (Bad file descriptor)
6412  close(327)                        = -1 EBADF (Bad file descriptor)
6412  close(328)                        = -1 EBADF (Bad file descriptor)
6412  close(329)                        = -1 EBADF (Bad file descriptor)
6412  close(330)                        = -1 EBADF (Bad file descriptor)
6412  close(331)                        = -1 EBADF (Bad file descriptor)
6412  close(332)                        = -1 EBADF (Bad file descriptor)
6412  close(333)                        = -1 EBADF (Bad file descriptor)
6412  close(334)                        = -1 EBADF (Bad file descriptor)
6412  close(335)                        = -1 EBADF (Bad file descriptor)
6412  close(336)                        = -1 EBADF (Bad file descriptor)
6412  close(337)                        = -1 EBADF (Bad file descriptor)
6412  close(338)                        = -1 EBADF (Bad file descriptor)
6412  close(339)                        = -1 EBADF (Bad file descriptor)
6412  close(340)                        = -1 EBADF (Bad file descriptor)
6412  close(341)                        = -1 EBADF (Bad file descriptor)
6412  close(342)                        = -1 EBADF (Bad file descriptor)
6412  close(343)                        = -1 EBADF (Bad file descriptor)
6412  close(344)                        = -1 EBADF (Bad file descriptor)
6412  close(345)                        = -1 EBADF (Bad file descriptor)
6412  close(346)                        = -1 EBADF (Bad file descriptor)
6412  close(347)                        = -1 EBADF (Bad file descriptor)
6412  close(348)                        = -1 EBADF (Bad file descriptor)
6412  close(349)                        = -1 EBADF (Bad file descriptor)
6412  close(350)                        = -1 EBADF (Bad file descriptor)
6412  close(351)                        = -1 EBADF (Bad file descriptor)
6412  close(352)                        = -1 EBADF (Bad file descriptor)
6412  close(353)                        = -1 EBADF (Bad file descriptor)
6412  close(354)                        = -1 EBADF (Bad file descriptor)
6412  close(355)                        = -1 EBADF (Bad file descriptor)
6412  close(356)                        = -1 EBADF (Bad file descriptor)
6412  close(357)                        = -1 EBADF (Bad file descriptor)
6412  close(358)                        = -1 EBADF (Bad file descriptor)
6412  close(359)                        = -1 EBADF (Bad file descriptor)
6412  close(360)                        = -1 EBADF (Bad file descriptor)
6412  close(361)                        = -1 EBADF (Bad file descriptor)
6412  close(362)                        = -1 EBADF (Bad file descriptor)
6412  close(363)                        = -1 EBADF (Bad file descriptor)
6412  close(364)                        = -1 EBADF (Bad file descriptor)
6412  close(365)                        = -1 EBADF (Bad file descriptor)
6412  close(366)                        = -1 EBADF (Bad file descriptor)
6412  close(367)                        = -1 EBADF (Bad file descriptor)
6412  close(368)                        = -1 EBADF (Bad file descriptor)
6412  close(369)                        = -1 EBADF (Bad file descriptor)
6412  close(370)                        = -1 EBADF (Bad file descriptor)
6412  close(371)                        = -1 EBADF (Bad file descriptor)
6412  close(372)                        = -1 EBADF (Bad file descriptor)
6412  close(373)                        = -1 EBADF (Bad file descriptor)
6412  close(374)                        = -1 EBADF (Bad file descriptor)
6412  close(375)                        = -1 EBADF (Bad file descriptor)
6412  close(376)                        = -1 EBADF (Bad file descriptor)
6412  close(377)                        = -1 EBADF (Bad file descriptor)
6412  close(378)                        = -1 EBADF (Bad file descriptor)
6412  close(379)                        = -1 EBADF (Bad file descriptor)
6412  close(380)                        = -1 EBADF (Bad file descriptor)
6412  close(381)                        = -1 EBADF (Bad file descriptor)
6412  close(382)                        = -1 EBADF (Bad file descriptor)
6412  close(383)                        = -1 EBADF (Bad file descriptor)
6412  close(384)                        = -1 EBADF (Bad file descriptor)
6412  close(385)                        = -1 EBADF (Bad file descriptor)
6412  close(386)                        = -1 EBADF (Bad file descriptor)
6412  close(387)                        = -1 EBADF (Bad file descriptor)
6412  close(388)                        = -1 EBADF (Bad file descriptor)
6412  close(389)                        = -1 EBADF (Bad file descriptor)
6412  close(390)                        = -1 EBADF (Bad file descriptor)
6412  close(391)                        = -1 EBADF (Bad file descriptor)
6412  close(392)                        = -1 EBADF (Bad file descriptor)
6412  close(393)                        = -1 EBADF (Bad file descriptor)
6412  close(394)                        = -1 EBADF (Bad file descriptor)
6412  close(395)                        = -1 EBADF (Bad file descriptor)
6412  close(396)                        = -1 EBADF (Bad file descriptor)
6412  close(397)                        = -1 EBADF (Bad file descriptor)
6412  close(398)                        = -1 EBADF (Bad file descriptor)
6412  close(399)                        = -1 EBADF (Bad file descriptor)
6412  close(400)                        = -1 EBADF (Bad file descriptor)
6412  close(401)                        = -1 EBADF (Bad file descriptor)
6412  close(402)                        = -1 EBADF (Bad file descriptor)
6412  close(403)                        = -1 EBADF (Bad file descriptor)
6412  close(404)                        = -1 EBADF (Bad file descriptor)
6412  close(405)                        = -1 EBADF (Bad file descriptor)
6412  close(406)                        = -1 EBADF (Bad file descriptor)
6412  close(407)                        = -1 EBADF (Bad file descriptor)
6412  close(408)                        = -1 EBADF (Bad file descriptor)
6412  close(409)                        = -1 EBADF (Bad file descriptor)
6412  close(410)                        = -1 EBADF (Bad file descriptor)
6412  close(411)                        = -1 EBADF (Bad file descriptor)
6412  close(412)                        = -1 EBADF (Bad file descriptor)
6412  close(413)                        = -1 EBADF (Bad file descriptor)
6412  close(414)                        = -1 EBADF (Bad file descriptor)
6412  close(415)                        = -1 EBADF (Bad file descriptor)
6412  close(416)                        = -1 EBADF (Bad file descriptor)
6412  close(417)                        = -1 EBADF (Bad file descriptor)
6412  close(418)                        = -1 EBADF (Bad file descriptor)
6412  close(419)                        = -1 EBADF (Bad file descriptor)
6412  close(420)                        = -1 EBADF (Bad file descriptor)
6412  close(421)                        = -1 EBADF (Bad file descriptor)
6412  close(422)                        = -1 EBADF (Bad file descriptor)
6412  close(423)                        = -1 EBADF (Bad file descriptor)
6412  close(424)                        = -1 EBADF (Bad file descriptor)
6412  close(425)                        = -1 EBADF (Bad file descriptor)
6412  close(426)                        = -1 EBADF (Bad file descriptor)
6412  close(427)                        = -1 EBADF (Bad file descriptor)
6412  close(428)                        = -1 EBADF (Bad file descriptor)
6412  close(429)                        = -1 EBADF (Bad file descriptor)
6412  close(430)                        = -1 EBADF (Bad file descriptor)
6412  close(431)                        = -1 EBADF (Bad file descriptor)
6412  close(432)                        = -1 EBADF (Bad file descriptor)
6412  close(433)                        = -1 EBADF (Bad file descriptor)
6412  close(434)                        = -1 EBADF (Bad file descriptor)
6412  close(435)                        = -1 EBADF (Bad file descriptor)
6412  close(436)                        = -1 EBADF (Bad file descriptor)
6412  close(437)                        = -1 EBADF (Bad file descriptor)
6412  close(438)                        = -1 EBADF (Bad file descriptor)
6412  close(439)                        = -1 EBADF (Bad file descriptor)
6412  close(440)                        = -1 EBADF (Bad file descriptor)
6412  close(441)                        = -1 EBADF (Bad file descriptor)
6412  close(442)                        = -1 EBADF (Bad file descriptor)
6412  close(443)                        = -1 EBADF (Bad file descriptor)
6412  close(444)                        = -1 EBADF (Bad file descriptor)
6412  close(445)                        = -1 EBADF (Bad file descriptor)
6412  close(446)                        = -1 EBADF (Bad file descriptor)
6412  close(447)                        = -1 EBADF (Bad file descriptor)
6412  close(448)                        = -1 EBADF (Bad file descriptor)
6412  close(449)                        = -1 EBADF (Bad file descriptor)
6412  close(450)                        = -1 EBADF (Bad file descriptor)
6412  close(451)                        = -1 EBADF (Bad file descriptor)
6412  close(452)                        = -1 EBADF (Bad file descriptor)
6412  close(453)                        = -1 EBADF (Bad file descriptor)
6412  close(454)                        = -1 EBADF (Bad file descriptor)
6412  close(455)                        = -1 EBADF (Bad file descriptor)
6412  close(456)                        = -1 EBADF (Bad file descriptor)
6412  close(457)                        = -1 EBADF (Bad file descriptor)
6412  close(458)                        = -1 EBADF (Bad file descriptor)
6412  close(459)                        = -1 EBADF (Bad file descriptor)
6412  close(460)                        = -1 EBADF (Bad file descriptor)
6412  close(461)                        = -1 EBADF (Bad file descriptor)
6412  close(462)                        = -1 EBADF (Bad file descriptor)
6412  close(463)                        = -1 EBADF (Bad file descriptor)
6412  close(464)                        = -1 EBADF (Bad file descriptor)
6412  close(465)                        = -1 EBADF (Bad file descriptor)
6412  close(466)                        = -1 EBADF (Bad file descriptor)
6412  close(467)                        = -1 EBADF (Bad file descriptor)
6412  close(468)                        = -1 EBADF (Bad file descriptor)
6412  close(469)                        = -1 EBADF (Bad file descriptor)
6412  close(470)                        = -1 EBADF (Bad file descriptor)
6412  close(471)                        = -1 EBADF (Bad file descriptor)
6412  close(472)                        = -1 EBADF (Bad file descriptor)
6412  close(473)                        = -1 EBADF (Bad file descriptor)
6412  close(474)                        = -1 EBADF (Bad file descriptor)
6412  close(475)                        = -1 EBADF (Bad file descriptor)
6412  close(476)                        = -1 EBADF (Bad file descriptor)
6412  close(477)                        = -1 EBADF (Bad file descriptor)
6412  close(478)                        = -1 EBADF (Bad file descriptor)
6412  close(479)                        = -1 EBADF (Bad file descriptor)
6412  close(480)                        = -1 EBADF (Bad file descriptor)
6412  close(481)                        = -1 EBADF (Bad file descriptor)
6412  close(482)                        = -1 EBADF (Bad file descriptor)
6412  close(483)                        = -1 EBADF (Bad file descriptor)
6412  close(484)                        = -1 EBADF (Bad file descriptor)
6412  close(485)                        = -1 EBADF (Bad file descriptor)
6412  close(486)                        = -1 EBADF (Bad file descriptor)
6412  close(487)                        = -1 EBADF (Bad file descriptor)
6412  close(488)                        = -1 EBADF (Bad file descriptor)
6412  close(489)                        = -1 EBADF (Bad file descriptor)
6412  close(490)                        = -1 EBADF (Bad file descriptor)
6412  close(491)                        = -1 EBADF (Bad file descriptor)
6412  close(492)                        = -1 EBADF (Bad file descriptor)
6412  close(493)                        = -1 EBADF (Bad file descriptor)
6412  close(494)                        = -1 EBADF (Bad file descriptor)
6412  close(495)                        = -1 EBADF (Bad file descriptor)
6412  close(496)                        = -1 EBADF (Bad file descriptor)
6412  close(497)                        = -1 EBADF (Bad file descriptor)
6412  close(498)                        = -1 EBADF (Bad file descriptor)
6412  close(499)                        = -1 EBADF (Bad file descriptor)
6412  close(500)                        = -1 EBADF (Bad file descriptor)
6412  close(501)                        = -1 EBADF (Bad file descriptor)
6412  close(502)                        = -1 EBADF (Bad file descriptor)
6412  close(503)                        = -1 EBADF (Bad file descriptor)
6412  close(504)                        = -1 EBADF (Bad file descriptor)
6412  close(505)                        = -1 EBADF (Bad file descriptor)
6412  close(506)                        = -1 EBADF (Bad file descriptor)
6412  close(507)                        = -1 EBADF (Bad file descriptor)
6412  close(508)                        = -1 EBADF (Bad file descriptor)
6412  close(509)                        = -1 EBADF (Bad file descriptor)
6412  close(510)                        = -1 EBADF (Bad file descriptor)
6412  close(511)                        = -1 EBADF (Bad file descriptor)
6412  close(512)                        = -1 EBADF (Bad file descriptor)
6412  close(513)                        = -1 EBADF (Bad file descriptor)
6412  close(514)                        = -1 EBADF (Bad file descriptor)
6412  close(515)                        = -1 EBADF (Bad file descriptor)
6412  close(516)                        = -1 EBADF (Bad file descriptor)
6412  close(517)                        = -1 EBADF (Bad file descriptor)
6412  close(518)                        = -1 EBADF (Bad file descriptor)
6412  close(519)                        = -1 EBADF (Bad file descriptor)
6412  close(520)                        = -1 EBADF (Bad file descriptor)
6412  close(521)                        = -1 EBADF (Bad file descriptor)
6412  close(522)                        = -1 EBADF (Bad file descriptor)
6412  close(523)                        = -1 EBADF (Bad file descriptor)
6412  close(524)                        = -1 EBADF (Bad file descriptor)
6412  close(525)                        = -1 EBADF (Bad file descriptor)
6412  close(526)                        = -1 EBADF (Bad file descriptor)
6412  close(527)                        = -1 EBADF (Bad file descriptor)
6412  close(528)                        = -1 EBADF (Bad file descriptor)
6412  close(529)                        = -1 EBADF (Bad file descriptor)
6412  close(530)                        = -1 EBADF (Bad file descriptor)
6412  close(531)                        = -1 EBADF (Bad file descriptor)
6412  close(532)                        = -1 EBADF (Bad file descriptor)
6412  close(533)                        = -1 EBADF (Bad file descriptor)
6412  close(534)                        = -1 EBADF (Bad file descriptor)
6412  close(535)                        = -1 EBADF (Bad file descriptor)
6412  close(536)                        = -1 EBADF (Bad file descriptor)
6412  close(537)                        = -1 EBADF (Bad file descriptor)
6412  close(538)                        = -1 EBADF (Bad file descriptor)
6412  close(539)                        = -1 EBADF (Bad file descriptor)
6412  close(540)                        = -1 EBADF (Bad file descriptor)
6412  close(541)                        = -1 EBADF (Bad file descriptor)
6412  close(542)                        = -1 EBADF (Bad file descriptor)
6412  close(543)                        = -1 EBADF (Bad file descriptor)
6412  close(544)                        = -1 EBADF (Bad file descriptor)
6412  close(545)                        = -1 EBADF (Bad file descriptor)
6412  close(546)                        = -1 EBADF (Bad file descriptor)
6412  close(547)                        = -1 EBADF (Bad file descriptor)
6412  close(548)                        = -1 EBADF (Bad file descriptor)
6412  close(549)                        = -1 EBADF (Bad file descriptor)
6412  close(550)                        = -1 EBADF (Bad file descriptor)
6412  close(551)                        = -1 EBADF (Bad file descriptor)
6412  close(552)                        = -1 EBADF (Bad file descriptor)
6412  close(553)                        = -1 EBADF (Bad file descriptor)
6412  close(554)                        = -1 EBADF (Bad file descriptor)
6412  close(555)                        = -1 EBADF (Bad file descriptor)
6412  close(556)                        = -1 EBADF (Bad file descriptor)
6412  close(557)                        = -1 EBADF (Bad file descriptor)
6412  close(558)                        = -1 EBADF (Bad file descriptor)
6412  close(559)                        = -1 EBADF (Bad file descriptor)
6412  close(560)                        = -1 EBADF (Bad file descriptor)
6412  close(561)                        = -1 EBADF (Bad file descriptor)
6412  close(562)                        = -1 EBADF (Bad file descriptor)
6412  close(563)                        = -1 EBADF (Bad file descriptor)
6412  close(564)                        = -1 EBADF (Bad file descriptor)
6412  close(565)                        = -1 EBADF (Bad file descriptor)
6412  close(566)                        = -1 EBADF (Bad file descriptor)
6412  close(567)                        = -1 EBADF (Bad file descriptor)
6412  close(568)                        = -1 EBADF (Bad file descriptor)
6412  close(569)                        = -1 EBADF (Bad file descriptor)
6412  close(570)                        = -1 EBADF (Bad file descriptor)
6412  close(571)                        = -1 EBADF (Bad file descriptor)
6412  close(572)                        = -1 EBADF (Bad file descriptor)
6412  close(573)                        = -1 EBADF (Bad file descriptor)
6412  close(574)                        = -1 EBADF (Bad file descriptor)
6412  close(575)                        = -1 EBADF (Bad file descriptor)
6412  close(576)                        = -1 EBADF (Bad file descriptor)
6412  close(577)                        = -1 EBADF (Bad file descriptor)
6412  close(578)                        = -1 EBADF (Bad file descriptor)
6412  close(579)                        = -1 EBADF (Bad file descriptor)
6412  close(580)                        = -1 EBADF (Bad file descriptor)
6412  close(581)                        = -1 EBADF (Bad file descriptor)
6412  close(582)                        = -1 EBADF (Bad file descriptor)
6412  close(583)                        = -1 EBADF (Bad file descriptor)
6412  close(584)                        = -1 EBADF (Bad file descriptor)
6412  close(585)                        = -1 EBADF (Bad file descriptor)
6412  close(586)                        = -1 EBADF (Bad file descriptor)
6412  close(587)                        = -1 EBADF (Bad file descriptor)
6412  close(588)                        = -1 EBADF (Bad file descriptor)
6412  close(589)                        = -1 EBADF (Bad file descriptor)
6412  close(590)                        = -1 EBADF (Bad file descriptor)
6412  close(591)                        = -1 EBADF (Bad file descriptor)
6412  close(592)                        = -1 EBADF (Bad file descriptor)
6412  close(593)                        = -1 EBADF (Bad file descriptor)
6412  close(594)                        = -1 EBADF (Bad file descriptor)
6412  close(595)                        = -1 EBADF (Bad file descriptor)
6412  close(596)                        = -1 EBADF (Bad file descriptor)
6412  close(597)                        = -1 EBADF (Bad file descriptor)
6412  close(598)                        = -1 EBADF (Bad file descriptor)
6412  close(599)                        = -1 EBADF (Bad file descriptor)
6412  close(600)                        = -1 EBADF (Bad file descriptor)
6412  close(601)                        = -1 EBADF (Bad file descriptor)
6412  close(602)                        = -1 EBADF (Bad file descriptor)
6412  close(603)                        = -1 EBADF (Bad file descriptor)
6412  close(604)                        = -1 EBADF (Bad file descriptor)
6412  close(605)                        = -1 EBADF (Bad file descriptor)
6412  close(606)                        = -1 EBADF (Bad file descriptor)
6412  close(607)                        = -1 EBADF (Bad file descriptor)
6412  close(608)                        = -1 EBADF (Bad file descriptor)
6412  close(609)                        = -1 EBADF (Bad file descriptor)
6412  close(610)                        = -1 EBADF (Bad file descriptor)
6412  close(611)                        = -1 EBADF (Bad file descriptor)
6412  close(612)                        = -1 EBADF (Bad file descriptor)
6412  close(613)                        = -1 EBADF (Bad file descriptor)
6412  close(614)                        = -1 EBADF (Bad file descriptor)
6412  close(615)                        = -1 EBADF (Bad file descriptor)
6412  close(616)                        = -1 EBADF (Bad file descriptor)
6412  close(617)                        = -1 EBADF (Bad file descriptor)
6412  close(618)                        = -1 EBADF (Bad file descriptor)
6412  close(619)                        = -1 EBADF (Bad file descriptor)
6412  close(620)                        = -1 EBADF (Bad file descriptor)
6412  close(621)                        = -1 EBADF (Bad file descriptor)
6412  close(622)                        = -1 EBADF (Bad file descriptor)
6412  close(623)                        = -1 EBADF (Bad file descriptor)
6412  close(624)                        = -1 EBADF (Bad file descriptor)
6412  close(625)                        = -1 EBADF (Bad file descriptor)
6412  close(626)                        = -1 EBADF (Bad file descriptor)
6412  close(627)                        = -1 EBADF (Bad file descriptor)
6412  close(628)                        = -1 EBADF (Bad file descriptor)
6412  close(629)                        = -1 EBADF (Bad file descriptor)
6412  close(630)                        = -1 EBADF (Bad file descriptor)
6412  close(631)                        = -1 EBADF (Bad file descriptor)
6412  close(632)                        = -1 EBADF (Bad file descriptor)
6412  close(633)                        = -1 EBADF (Bad file descriptor)
6412  close(634)                        = -1 EBADF (Bad file descriptor)
6412  close(635)                        = -1 EBADF (Bad file descriptor)
6412  close(636)                        = -1 EBADF (Bad file descriptor)
6412  close(637)                        = -1 EBADF (Bad file descriptor)
6412  close(638)                        = -1 EBADF (Bad file descriptor)
6412  close(639)                        = -1 EBADF (Bad file descriptor)
6412  close(640)                        = -1 EBADF (Bad file descriptor)
6412  close(641)                        = -1 EBADF (Bad file descriptor)
6412  close(642)                        = -1 EBADF (Bad file descriptor)
6412  close(643)                        = -1 EBADF (Bad file descriptor)
6412  close(644)                        = -1 EBADF (Bad file descriptor)
6412  close(645)                        = -1 EBADF (Bad file descriptor)
6412  close(646)                        = -1 EBADF (Bad file descriptor)
6412  close(647)                        = -1 EBADF (Bad file descriptor)
6412  close(648)                        = -1 EBADF (Bad file descriptor)
6412  close(649)                        = -1 EBADF (Bad file descriptor)
6412  close(650)                        = -1 EBADF (Bad file descriptor)
6412  close(651)                        = -1 EBADF (Bad file descriptor)
6412  close(652)                        = -1 EBADF (Bad file descriptor)
6412  close(653)                        = -1 EBADF (Bad file descriptor)
6412  close(654)                        = -1 EBADF (Bad file descriptor)
6412  close(655)                        = -1 EBADF (Bad file descriptor)
6412  close(656)                        = -1 EBADF (Bad file descriptor)
6412  close(657)                        = -1 EBADF (Bad file descriptor)
6412  close(658)                        = -1 EBADF (Bad file descriptor)
6412  close(659)                        = -1 EBADF (Bad file descriptor)
6412  close(660)                        = -1 EBADF (Bad file descriptor)
6412  close(661)                        = -1 EBADF (Bad file descriptor)
6412  close(662)                        = -1 EBADF (Bad file descriptor)
6412  close(663)                        = -1 EBADF (Bad file descriptor)
6412  close(664)                        = -1 EBADF (Bad file descriptor)
6412  close(665)                        = -1 EBADF (Bad file descriptor)
6412  close(666)                        = -1 EBADF (Bad file descriptor)
6412  close(667)                        = -1 EBADF (Bad file descriptor)
6412  close(668)                        = -1 EBADF (Bad file descriptor)
6412  close(669)                        = -1 EBADF (Bad file descriptor)
6412  close(670)                        = -1 EBADF (Bad file descriptor)
6412  close(671)                        = -1 EBADF (Bad file descriptor)
6412  close(672)                        = -1 EBADF (Bad file descriptor)
6412  close(673)                        = -1 EBADF (Bad file descriptor)
6412  close(674)                        = -1 EBADF (Bad file descriptor)
6412  close(675)                        = -1 EBADF (Bad file descriptor)
6412  close(676)                        = -1 EBADF (Bad file descriptor)
6412  close(677)                        = -1 EBADF (Bad file descriptor)
6412  close(678)                        = -1 EBADF (Bad file descriptor)
6412  close(679)                        = -1 EBADF (Bad file descriptor)
6412  close(680)                        = -1 EBADF (Bad file descriptor)
6412  close(681)                        = -1 EBADF (Bad file descriptor)
6412  close(682)                        = -1 EBADF (Bad file descriptor)
6412  close(683)                        = -1 EBADF (Bad file descriptor)
6412  close(684)                        = -1 EBADF (Bad file descriptor)
6412  close(685)                        = -1 EBADF (Bad file descriptor)
6412  close(686)                        = -1 EBADF (Bad file descriptor)
6412  close(687)                        = -1 EBADF (Bad file descriptor)
6412  close(688)                        = -1 EBADF (Bad file descriptor)
6412  close(689)                        = -1 EBADF (Bad file descriptor)
6412  close(690)                        = -1 EBADF (Bad file descriptor)
6412  close(691)                        = -1 EBADF (Bad file descriptor)
6412  close(692)                        = -1 EBADF (Bad file descriptor)
6412  close(693)                        = -1 EBADF (Bad file descriptor)
6412  close(694)                        = -1 EBADF (Bad file descriptor)
6412  close(695)                        = -1 EBADF (Bad file descriptor)
6412  close(696)                        = -1 EBADF (Bad file descriptor)
6412  close(697)                        = -1 EBADF (Bad file descriptor)
6412  close(698)                        = -1 EBADF (Bad file descriptor)
6412  close(699)                        = -1 EBADF (Bad file descriptor)
6412  close(700)                        = -1 EBADF (Bad file descriptor)
6412  close(701)                        = -1 EBADF (Bad file descriptor)
6412  close(702)                        = -1 EBADF (Bad file descriptor)
6412  close(703)                        = -1 EBADF (Bad file descriptor)
6412  close(704)                        = -1 EBADF (Bad file descriptor)
6412  close(705)                        = -1 EBADF (Bad file descriptor)
6412  close(706)                        = -1 EBADF (Bad file descriptor)
6412  close(707)                        = -1 EBADF (Bad file descriptor)
6412  close(708)                        = -1 EBADF (Bad file descriptor)
6412  close(709)                        = -1 EBADF (Bad file descriptor)
6412  close(710)                        = -1 EBADF (Bad file descriptor)
6412  close(711)                        = -1 EBADF (Bad file descriptor)
6412  close(712)                        = -1 EBADF (Bad file descriptor)
6412  close(713)                        = -1 EBADF (Bad file descriptor)
6412  close(714)                        = -1 EBADF (Bad file descriptor)
6412  close(715)                        = -1 EBADF (Bad file descriptor)
6412  close(716)                        = -1 EBADF (Bad file descriptor)
6412  close(717)                        = -1 EBADF (Bad file descriptor)
6412  close(718)                        = -1 EBADF (Bad file descriptor)
6412  close(719)                        = -1 EBADF (Bad file descriptor)
6412  close(720)                        = -1 EBADF (Bad file descriptor)
6412  close(721)                        = -1 EBADF (Bad file descriptor)
6412  close(722)                        = -1 EBADF (Bad file descriptor)
6412  close(723)                        = -1 EBADF (Bad file descriptor)
6412  close(724)                        = -1 EBADF (Bad file descriptor)
6412  close(725)                        = -1 EBADF (Bad file descriptor)
6412  close(726)                        = -1 EBADF (Bad file descriptor)
6412  close(727)                        = -1 EBADF (Bad file descriptor)
6412  close(728)                        = -1 EBADF (Bad file descriptor)
6412  close(729)                        = -1 EBADF (Bad file descriptor)
6412  close(730)                        = -1 EBADF (Bad file descriptor)
6412  close(731)                        = -1 EBADF (Bad file descriptor)
6412  close(732)                        = -1 EBADF (Bad file descriptor)
6412  close(733)                        = -1 EBADF (Bad file descriptor)
6412  close(734)                        = -1 EBADF (Bad file descriptor)
6412  close(735)                        = -1 EBADF (Bad file descriptor)
6412  close(736)                        = -1 EBADF (Bad file descriptor)
6412  close(737)                        = -1 EBADF (Bad file descriptor)
6412  close(738)                        = -1 EBADF (Bad file descriptor)
6412  close(739)                        = -1 EBADF (Bad file descriptor)
6412  close(740)                        = -1 EBADF (Bad file descriptor)
6412  close(741)                        = -1 EBADF (Bad file descriptor)
6412  close(742)                        = -1 EBADF (Bad file descriptor)
6412  close(743)                        = -1 EBADF (Bad file descriptor)
6412  close(744)                        = -1 EBADF (Bad file descriptor)
6412  close(745)                        = -1 EBADF (Bad file descriptor)
6412  close(746)                        = -1 EBADF (Bad file descriptor)
6412  close(747)                        = -1 EBADF (Bad file descriptor)
6412  close(748)                        = -1 EBADF (Bad file descriptor)
6412  close(749)                        = -1 EBADF (Bad file descriptor)
6412  close(750)                        = -1 EBADF (Bad file descriptor)
6412  close(751)                        = -1 EBADF (Bad file descriptor)
6412  close(752)                        = -1 EBADF (Bad file descriptor)
6412  close(753)                        = -1 EBADF (Bad file descriptor)
6412  close(754)                        = -1 EBADF (Bad file descriptor)
6412  close(755)                        = -1 EBADF (Bad file descriptor)
6412  close(756)                        = -1 EBADF (Bad file descriptor)
6412  close(757)                        = -1 EBADF (Bad file descriptor)
6412  close(758)                        = -1 EBADF (Bad file descriptor)
6412  close(759)                        = -1 EBADF (Bad file descriptor)
6412  close(760)                        = -1 EBADF (Bad file descriptor)
6412  close(761)                        = -1 EBADF (Bad file descriptor)
6412  close(762)                        = -1 EBADF (Bad file descriptor)
6412  close(763)                        = -1 EBADF (Bad file descriptor)
6412  close(764)                        = -1 EBADF (Bad file descriptor)
6412  close(765)                        = -1 EBADF (Bad file descriptor)
6412  close(766)                        = -1 EBADF (Bad file descriptor)
6412  close(767)                        = -1 EBADF (Bad file descriptor)
6412  close(768)                        = -1 EBADF (Bad file descriptor)
6412  close(769)                        = -1 EBADF (Bad file descriptor)
6412  close(770)                        = -1 EBADF (Bad file descriptor)
6412  close(771)                        = -1 EBADF (Bad file descriptor)
6412  close(772)                        = -1 EBADF (Bad file descriptor)
6412  close(773)                        = -1 EBADF (Bad file descriptor)
6412  close(774)                        = -1 EBADF (Bad file descriptor)
6412  close(775)                        = -1 EBADF (Bad file descriptor)
6412  close(776)                        = -1 EBADF (Bad file descriptor)
6412  close(777)                        = -1 EBADF (Bad file descriptor)
6412  close(778)                        = -1 EBADF (Bad file descriptor)
6412  close(779)                        = -1 EBADF (Bad file descriptor)
6412  close(780)                        = -1 EBADF (Bad file descriptor)
6412  close(781)                        = -1 EBADF (Bad file descriptor)
6412  close(782)                        = -1 EBADF (Bad file descriptor)
6412  close(783)                        = -1 EBADF (Bad file descriptor)
6412  close(784)                        = -1 EBADF (Bad file descriptor)
6412  close(785)                        = -1 EBADF (Bad file descriptor)
6412  close(786)                        = -1 EBADF (Bad file descriptor)
6412  close(787)                        = -1 EBADF (Bad file descriptor)
6412  close(788)                        = -1 EBADF (Bad file descriptor)
6412  close(789)                        = -1 EBADF (Bad file descriptor)
6412  close(790)                        = -1 EBADF (Bad file descriptor)
6412  close(791)                        = -1 EBADF (Bad file descriptor)
6412  close(792)                        = -1 EBADF (Bad file descriptor)
6412  close(793)                        = -1 EBADF (Bad file descriptor)
6412  close(794)                        = -1 EBADF (Bad file descriptor)
6412  close(795)                        = -1 EBADF (Bad file descriptor)
6412  close(796)                        = -1 EBADF (Bad file descriptor)
6412  close(797)                        = -1 EBADF (Bad file descriptor)
6412  close(798)                        = -1 EBADF (Bad file descriptor)
6412  close(799)                        = -1 EBADF (Bad file descriptor)
6412  close(800)                        = -1 EBADF (Bad file descriptor)
6412  close(801)                        = -1 EBADF (Bad file descriptor)
6412  close(802)                        = -1 EBADF (Bad file descriptor)
6412  close(803)                        = -1 EBADF (Bad file descriptor)
6412  close(804)                        = -1 EBADF (Bad file descriptor)
6412  close(805)                        = -1 EBADF (Bad file descriptor)
6412  close(806)                        = -1 EBADF (Bad file descriptor)
6412  close(807)                        = -1 EBADF (Bad file descriptor)
6412  close(808)                        = -1 EBADF (Bad file descriptor)
6412  close(809)                        = -1 EBADF (Bad file descriptor)
6412  close(810)                        = -1 EBADF (Bad file descriptor)
6412  close(811)                        = -1 EBADF (Bad file descriptor)
6412  close(812)                        = -1 EBADF (Bad file descriptor)
6412  close(813)                        = -1 EBADF (Bad file descriptor)
6412  close(814)                        = -1 EBADF (Bad file descriptor)
6412  close(815)                        = -1 EBADF (Bad file descriptor)
6412  close(816)                        = -1 EBADF (Bad file descriptor)
6412  close(817)                        = -1 EBADF (Bad file descriptor)
6412  close(818)                        = -1 EBADF (Bad file descriptor)
6412  close(819)                        = -1 EBADF (Bad file descriptor)
6412  close(820)                        = -1 EBADF (Bad file descriptor)
6412  close(821)                        = -1 EBADF (Bad file descriptor)
6412  close(822)                        = -1 EBADF (Bad file descriptor)
6412  close(823)                        = -1 EBADF (Bad file descriptor)
6412  close(824)                        = -1 EBADF (Bad file descriptor)
6412  close(825)                        = -1 EBADF (Bad file descriptor)
6412  close(826)                        = -1 EBADF (Bad file descriptor)
6412  close(827)                        = -1 EBADF (Bad file descriptor)
6412  close(828)                        = -1 EBADF (Bad file descriptor)
6412  close(829)                        = -1 EBADF (Bad file descriptor)
6412  close(830)                        = -1 EBADF (Bad file descriptor)
6412  close(831)                        = -1 EBADF (Bad file descriptor)
6412  close(832)                        = -1 EBADF (Bad file descriptor)
6412  close(833)                        = -1 EBADF (Bad file descriptor)
6412  close(834)                        = -1 EBADF (Bad file descriptor)
6412  close(835)                        = -1 EBADF (Bad file descriptor)
6412  close(836)                        = -1 EBADF (Bad file descriptor)
6412  close(837)                        = -1 EBADF (Bad file descriptor)
6412  close(838)                        = -1 EBADF (Bad file descriptor)
6412  close(839)                        = -1 EBADF (Bad file descriptor)
6412  close(840)                        = -1 EBADF (Bad file descriptor)
6412  close(841)                        = -1 EBADF (Bad file descriptor)
6412  close(842)                        = -1 EBADF (Bad file descriptor)
6412  close(843)                        = -1 EBADF (Bad file descriptor)
6412  close(844)                        = -1 EBADF (Bad file descriptor)
6412  close(845)                        = -1 EBADF (Bad file descriptor)
6412  close(846)                        = -1 EBADF (Bad file descriptor)
6412  close(847)                        = -1 EBADF (Bad file descriptor)
6412  close(848)                        = -1 EBADF (Bad file descriptor)
6412  close(849)                        = -1 EBADF (Bad file descriptor)
6412  close(850)                        = -1 EBADF (Bad file descriptor)
6412  close(851)                        = -1 EBADF (Bad file descriptor)
6412  close(852)                        = -1 EBADF (Bad file descriptor)
6412  close(853)                        = -1 EBADF (Bad file descriptor)
6412  close(854)                        = -1 EBADF (Bad file descriptor)
6412  close(855)                        = -1 EBADF (Bad file descriptor)
6412  close(856)                        = -1 EBADF (Bad file descriptor)
6412  close(857)                        = -1 EBADF (Bad file descriptor)
6412  close(858)                        = -1 EBADF (Bad file descriptor)
6412  close(859)                        = -1 EBADF (Bad file descriptor)
6412  close(860)                        = -1 EBADF (Bad file descriptor)
6412  close(861)                        = -1 EBADF (Bad file descriptor)
6412  close(862)                        = -1 EBADF (Bad file descriptor)
6412  close(863)                        = -1 EBADF (Bad file descriptor)
6412  close(864)                        = -1 EBADF (Bad file descriptor)
6412  close(865)                        = -1 EBADF (Bad file descriptor)
6412  close(866)                        = -1 EBADF (Bad file descriptor)
6412  close(867)                        = -1 EBADF (Bad file descriptor)
6412  close(868)                        = -1 EBADF (Bad file descriptor)
6412  close(869)                        = -1 EBADF (Bad file descriptor)
6412  close(870)                        = -1 EBADF (Bad file descriptor)
6412  close(871)                        = -1 EBADF (Bad file descriptor)
6412  close(872)                        = -1 EBADF (Bad file descriptor)
6412  close(873)                        = -1 EBADF (Bad file descriptor)
6412  close(874)                        = -1 EBADF (Bad file descriptor)
6412  close(875)                        = -1 EBADF (Bad file descriptor)
6412  close(876)                        = -1 EBADF (Bad file descriptor)
6412  close(877)                        = -1 EBADF (Bad file descriptor)
6412  close(878)                        = -1 EBADF (Bad file descriptor)
6412  close(879)                        = -1 EBADF (Bad file descriptor)
6412  close(880)                        = -1 EBADF (Bad file descriptor)
6412  close(881)                        = -1 EBADF (Bad file descriptor)
6412  close(882)                        = -1 EBADF (Bad file descriptor)
6412  close(883)                        = -1 EBADF (Bad file descriptor)
6412  close(884)                        = -1 EBADF (Bad file descriptor)
6412  close(885)                        = -1 EBADF (Bad file descriptor)
6412  close(886)                        = -1 EBADF (Bad file descriptor)
6412  close(887)                        = -1 EBADF (Bad file descriptor)
6412  close(888)                        = -1 EBADF (Bad file descriptor)
6412  close(889)                        = -1 EBADF (Bad file descriptor)
6412  close(890)                        = -1 EBADF (Bad file descriptor)
6412  close(891)                        = -1 EBADF (Bad file descriptor)
6412  close(892)                        = -1 EBADF (Bad file descriptor)
6412  close(893)                        = -1 EBADF (Bad file descriptor)
6412  close(894)                        = -1 EBADF (Bad file descriptor)
6412  close(895)                        = -1 EBADF (Bad file descriptor)
6412  close(896)                        = -1 EBADF (Bad file descriptor)
6412  close(897)                        = -1 EBADF (Bad file descriptor)
6412  close(898)                        = -1 EBADF (Bad file descriptor)
6412  close(899)                        = -1 EBADF (Bad file descriptor)
6412  close(900)                        = -1 EBADF (Bad file descriptor)
6412  close(901)                        = -1 EBADF (Bad file descriptor)
6412  close(902)                        = -1 EBADF (Bad file descriptor)
6412  close(903)                        = -1 EBADF (Bad file descriptor)
6412  close(904)                        = -1 EBADF (Bad file descriptor)
6412  close(905)                        = -1 EBADF (Bad file descriptor)
6412  close(906)                        = -1 EBADF (Bad file descriptor)
6412  close(907)                        = -1 EBADF (Bad file descriptor)
6412  close(908)                        = -1 EBADF (Bad file descriptor)
6412  close(909)                        = -1 EBADF (Bad file descriptor)
6412  close(910)                        = -1 EBADF (Bad file descriptor)
6412  close(911)                        = -1 EBADF (Bad file descriptor)
6412  close(912)                        = -1 EBADF (Bad file descriptor)
6412  close(913)                        = -1 EBADF (Bad file descriptor)
6412  close(914)                        = -1 EBADF (Bad file descriptor)
6412  close(915)                        = -1 EBADF (Bad file descriptor)
6412  close(916)                        = -1 EBADF (Bad file descriptor)
6412  close(917)                        = -1 EBADF (Bad file descriptor)
6412  close(918)                        = -1 EBADF (Bad file descriptor)
6412  close(919)                        = -1 EBADF (Bad file descriptor)
6412  close(920)                        = -1 EBADF (Bad file descriptor)
6412  close(921)                        = -1 EBADF (Bad file descriptor)
6412  close(922)                        = -1 EBADF (Bad file descriptor)
6412  close(923)                        = -1 EBADF (Bad file descriptor)
6412  close(924)                        = -1 EBADF (Bad file descriptor)
6412  close(925)                        = -1 EBADF (Bad file descriptor)
6412  close(926)                        = -1 EBADF (Bad file descriptor)
6412  close(927)                        = -1 EBADF (Bad file descriptor)
6412  close(928)                        = -1 EBADF (Bad file descriptor)
6412  close(929)                        = -1 EBADF (Bad file descriptor)
6412  close(930)                        = -1 EBADF (Bad file descriptor)
6412  close(931)                        = -1 EBADF (Bad file descriptor)
6412  close(932)                        = -1 EBADF (Bad file descriptor)
6412  close(933)                        = -1 EBADF (Bad file descriptor)
6412  close(934)                        = -1 EBADF (Bad file descriptor)
6412  close(935)                        = -1 EBADF (Bad file descriptor)
6412  close(936)                        = -1 EBADF (Bad file descriptor)
6412  close(937)                        = -1 EBADF (Bad file descriptor)
6412  close(938)                        = -1 EBADF (Bad file descriptor)
6412  close(939)                        = -1 EBADF (Bad file descriptor)
6412  close(940)                        = -1 EBADF (Bad file descriptor)
6412  close(941)                        = -1 EBADF (Bad file descriptor)
6412  close(942)                        = -1 EBADF (Bad file descriptor)
6412  close(943)                        = -1 EBADF (Bad file descriptor)
6412  close(944)                        = -1 EBADF (Bad file descriptor)
6412  close(945)                        = -1 EBADF (Bad file descriptor)
6412  close(946)                        = -1 EBADF (Bad file descriptor)
6412  close(947)                        = -1 EBADF (Bad file descriptor)
6412  close(948)                        = -1 EBADF (Bad file descriptor)
6412  close(949)                        = -1 EBADF (Bad file descriptor)
6412  close(950)                        = -1 EBADF (Bad file descriptor)
6412  close(951)                        = -1 EBADF (Bad file descriptor)
6412  close(952)                        = -1 EBADF (Bad file descriptor)
6412  close(953)                        = -1 EBADF (Bad file descriptor)
6412  close(954)                        = -1 EBADF (Bad file descriptor)
6412  close(955)                        = -1 EBADF (Bad file descriptor)
6412  close(956)                        = -1 EBADF (Bad file descriptor)
6412  close(957)                        = -1 EBADF (Bad file descriptor)
6412  close(958)                        = -1 EBADF (Bad file descriptor)
6412  close(959)                        = -1 EBADF (Bad file descriptor)
6412  close(960)                        = -1 EBADF (Bad file descriptor)
6412  close(961)                        = -1 EBADF (Bad file descriptor)
6412  close(962)                        = -1 EBADF (Bad file descriptor)
6412  close(963)                        = -1 EBADF (Bad file descriptor)
6412  close(964)                        = -1 EBADF (Bad file descriptor)
6412  close(965)                        = -1 EBADF (Bad file descriptor)
6412  close(966)                        = -1 EBADF (Bad file descriptor)
6412  close(967)                        = -1 EBADF (Bad file descriptor)
6412  close(968)                        = -1 EBADF (Bad file descriptor)
6412  close(969)                        = -1 EBADF (Bad file descriptor)
6412  close(970)                        = -1 EBADF (Bad file descriptor)
6412  close(971)                        = -1 EBADF (Bad file descriptor)
6412  close(972)                        = -1 EBADF (Bad file descriptor)
6412  close(973)                        = -1 EBADF (Bad file descriptor)
6412  close(974)                        = -1 EBADF (Bad file descriptor)
6412  close(975)                        = -1 EBADF (Bad file descriptor)
6412  close(976)                        = -1 EBADF (Bad file descriptor)
6412  close(977)                        = -1 EBADF (Bad file descriptor)
6412  close(978)                        = -1 EBADF (Bad file descriptor)
6412  close(979)                        = -1 EBADF (Bad file descriptor)
6412  close(980)                        = -1 EBADF (Bad file descriptor)
6412  close(981)                        = -1 EBADF (Bad file descriptor)
6412  close(982)                        = -1 EBADF (Bad file descriptor)
6412  close(983)                        = -1 EBADF (Bad file descriptor)
6412  close(984)                        = -1 EBADF (Bad file descriptor)
6412  close(985)                        = -1 EBADF (Bad file descriptor)
6412  close(986)                        = -1 EBADF (Bad file descriptor)
6412  close(987)                        = -1 EBADF (Bad file descriptor)
6412  close(988)                        = -1 EBADF (Bad file descriptor)
6412  close(989)                        = -1 EBADF (Bad file descriptor)
6412  close(990)                        = -1 EBADF (Bad file descriptor)
6412  close(991)                        = -1 EBADF (Bad file descriptor)
6412  close(992)                        = -1 EBADF (Bad file descriptor)
6412  close(993)                        = -1 EBADF (Bad file descriptor)
6412  close(994)                        = -1 EBADF (Bad file descriptor)
6412  close(995)                        = -1 EBADF (Bad file descriptor)
6412  close(996)                        = -1 EBADF (Bad file descriptor)
6412  close(997)                        = -1 EBADF (Bad file descriptor)
6412  close(998)                        = -1 EBADF (Bad file descriptor)
6412  close(999)                        = -1 EBADF (Bad file descriptor)
6412  close(1000)                       = -1 EBADF (Bad file descriptor)
6412  close(1001)                       = -1 EBADF (Bad file descriptor)
6412  close(1002)                       = -1 EBADF (Bad file descriptor)
6412  close(1003)                       = -1 EBADF (Bad file descriptor)
6412  close(1004)                       = -1 EBADF (Bad file descriptor)
6412  close(1005)                       = -1 EBADF (Bad file descriptor)
6412  close(1006)                       = -1 EBADF (Bad file descriptor)
6412  close(1007)                       = -1 EBADF (Bad file descriptor)
6412  close(1008)                       = -1 EBADF (Bad file descriptor)
6412  close(1009)                       = -1 EBADF (Bad file descriptor)
6412  close(1010)                       = -1 EBADF (Bad file descriptor)
6412  close(1011)                       = -1 EBADF (Bad file descriptor)
6412  close(1012)                       = -1 EBADF (Bad file descriptor)
6412  close(1013)                       = -1 EBADF (Bad file descriptor)
6412  close(1014)                       = -1 EBADF (Bad file descriptor)
6412  close(1015)                       = -1 EBADF (Bad file descriptor)
6412  close(1016)                       = -1 EBADF (Bad file descriptor)
6412  close(1017)                       = -1 EBADF (Bad file descriptor)
6412  close(1018)                       = -1 EBADF (Bad file descriptor)
6412  close(1019)                       = -1 EBADF (Bad file descriptor)
6412  close(1020)                       = -1 EBADF (Bad file descriptor)
6412  close(1021)                       = -1 EBADF (Bad file descriptor)
6412  close(1022)                       = -1 EBADF (Bad file descriptor)
6412  close(1023)                       = -1 EBADF (Bad file descriptor)
6412  execve("/etc/xen/qemu-ifup", ["/etc/xen/qemu-ifup", "tap1.0", "eth0"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "_=/usr/sbin/xend", "UPSTART_JOB_ID=11", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "UPSTART_EVENT=runlevel", "XAUTHORITY=/root/.Xauthority", "previous=N", "PWD=/", "VERBOSE=no"] <unfinished ...>
6310  wait4(6412,  <unfinished ...>
6412  <... execve resumed> )            = 0
6412  brk(0)                            = 0x16b9000
6412  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2adb465d3000
6412  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6412  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2adb465d4000
6412  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6412  open("/etc/ld.so.cache", O_RDONLY) = 4
6412  fstat(4, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6412  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2adb465d6000
6412  close(4)                          = 0
6412  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6412  open("/lib/libc.so.6", O_RDONLY)  = 4
6412  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6412  fstat(4, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6412  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2adb467d4000
6412  mprotect(0x2adb4693d000, 2093056, PROT_NONE) = 0
6412  mmap(0x2adb46b3c000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x168000) = 0x2adb46b3c000
6412  mmap(0x2adb46b41000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2adb46b41000
6412  close(4)                          = 0
6412  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2adb46b46000
6412  arch_prctl(ARCH_SET_FS, 0x2adb46b466e0) = 0
6412  mprotect(0x2adb46b3c000, 16384, PROT_READ) = 0
6412  mprotect(0x618000, 4096, PROT_READ) = 0
6412  mprotect(0x2adb467d2000, 4096, PROT_READ) = 0
6412  munmap(0x2adb465d6000, 72620)     = 0
6412  getpid()                          = 6412
6412  rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) = 0
6412  geteuid()                         = 0
6412  brk(0)                            = 0x16b9000
6412  brk(0x16da000)                    = 0x16da000
6412  getppid()                         = 6310
6412  stat("/", {st_dev=makedev(8, 30), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=21, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/14-11:31:35, st_mtime=2009/02/14-08:21:57, st_ctime=2009/02/14-08:21:57}) = 0
6412  stat(".", {st_dev=makedev(8, 30), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=21, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/14-11:31:35, st_mtime=2009/02/14-08:21:57, st_ctime=2009/02/14-08:21:57}) = 0
6412  open("/etc/xen/qemu-ifup", O_RDONLY) = 4
6412  fcntl(4, F_DUPFD, 10)             = 10
6412  close(4)                          = 0
6412  fcntl(10, F_SETFD, FD_CLOEXEC)    = 0
6412  rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) = 0
6412  rt_sigaction(SIGINT, {0x40f820, ~[RTMIN RT_1], SA_RESTORER, 0x2adb468070a0}, NULL, 8) = 0
6412  rt_sigaction(SIGQUIT, NULL, {SIG_DFL}, 8) = 0
6412  rt_sigaction(SIGQUIT, {SIG_DFL}, NULL, 8) = 0
6412  rt_sigaction(SIGTERM, NULL, {SIG_DFL}, 8) = 0
6412  rt_sigaction(SIGTERM, {SIG_DFL}, NULL, 8) = 0
6412  read(10, "#!/bin/sh\n\n#. /etc/rc.d/init.d/functions\n#ulimit -c unlimited\n\necho \'config qemu network with xen bridge for \' $*\n\nbridge=$2\n\n#\n# Old style bridge setup with netloop, used to have a bridge name\n# of xenbrX, enslaving pethX and vif0.X, and then configuring\n# eth0.\n#\n# New style bridge setup does not use netloop, so the bridge name\n# is ethX and the physical device is enslaved pethX\n#\n# So if...\n#\n#   - User asks for xenbrX\n#   - AND xenbrX doesn\'t exist\n#   - AND there is a ethX device which is a"..., 8192) = 840
6412  write(1, "config qemu network with xen bridge for  tap1.0 eth0\n", 53) = 53
6412  stat("/sys/class/net/eth0", {st_dev=makedev(0, 0), st_ino=13342, st_mode=S_IFDIR|0755, st_nlink=6, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/24-06:06:52, st_mtime=2009/02/24-06:06:52, st_ctime=2009/02/24-06:06:52}) = 0
6412  stat("/sbin/ifconfig", {st_dev=makedev(8, 30), st_ino=311375, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72560, st_atime=2009/02/14-05:40:06, st_mtime=2008/07/17-05:12:26, st_ctime=2009/02/14-05:26:13}) = 0
6412  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x2adb46b46770) = 6417
6417  close(10)                         = 0
6417  execve("/sbin/ifconfig", ["ifconfig", "tap1.0", "0.0.0.0", "up"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "UPSTART_JOB_ID=11", "_=/usr/sbin/xend", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "XAUTHORITY=/root/.Xauthority", "UPSTART_EVENT=runlevel", "PWD=/", "previous=N", "VERBOSE=no"]) = 0
6417  brk(0)                            = 0x2092000
6417  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b452a656000
6417  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6417  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b452a657000
6417  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6417  open("/etc/ld.so.cache", O_RDONLY) = 4
6417  fstat(4, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6417  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2b452a659000
6417  close(4)                          = 0
6417  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6417  open("/lib/libc.so.6", O_RDONLY)  = 4
6417  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6417  fstat(4, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6417  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2b452a857000
6417  mprotect(0x2b452a9c0000, 2093056, PROT_NONE) = 0
6417  mmap(0x2b452abbf000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x168000) = 0x2b452abbf000
6417  mmap(0x2b452abc4000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b452abc4000
6417  close(4)                          = 0
6417  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b452abc9000
6417  arch_prctl(ARCH_SET_FS, 0x2b452abc96e0) = 0
6417  mprotect(0x2b452abbf000, 16384, PROT_READ) = 0
6417  mprotect(0x60f000, 4096, PROT_READ) = 0
6417  mprotect(0x2b452a855000, 4096, PROT_READ) = 0
6417  munmap(0x2b452a659000, 72620)     = 0
6417  brk(0)                            = 0x2092000
6417  brk(0x20b3000)                    = 0x20b3000
6417  uname({sysname="Linux", nodename="ServerXen331", release="2.6.29-rc5-tip", version="#3 SMP Mon Feb 23 05:40:41 EST 2009", machine="x86_64"}) = 0
6417  access("/proc/net", R_OK)         = 0
6417  access("/proc/net/unix", R_OK)    = 0
6417  socket(PF_FILE, SOCK_DGRAM, 0)    = 4
6417  socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 5
6417  access("/proc/net/if_inet6", R_OK) = 0
6417  socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP) = 6
6417  access("/proc/net/ax25", R_OK)    = -1 ENOENT (No such file or directory)
6417  access("/proc/net/nr", R_OK)      = -1 ENOENT (No such file or directory)
6417  access("/proc/net/rose", R_OK)    = -1 ENOENT (No such file or directory)
6417  access("/proc/net/ipx", R_OK)     = -1 ENOENT (No such file or directory)
6417  access("/proc/net/appletalk", R_OK) = -1 ENOENT (No such file or directory)
6417  access("/proc/sys/net/econet", R_OK) = -1 ENOENT (No such file or directory)
6417  access("/proc/sys/net/ash", R_OK) = -1 ENOENT (No such file or directory)
6417  access("/proc/net/x25", R_OK)     = -1 ENOENT (No such file or directory)
6417  ioctl(5, SIOCSIFADDR, 0x7fff8046ffc0) = 0
6417  ioctl(5, SIOCGIFFLAGS, {ifr_name="tap1.0", ifr_flags=IFF_BROADCAST|IFF_MULTICAST}) = 0
6417  ioctl(5, SIOCSIFFLAGS, 0x7fff8046feb0) = 0
6417  ioctl(5, SIOCGIFFLAGS, {ifr_name="tap1.0", ifr_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_MULTICAST}) = 0
6417  ioctl(5, SIOCSIFFLAGS, 0x7fff8046feb0) = 0
6417  exit_group(0)                     = ?
6412  --- SIGCHLD (Child exited) @ 0 (0) ---
6412  wait4(4294967295, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 6417
6412  stat("/sbin/brctl", 0x7fff644f2da0) = -1 ENOENT (No such file or directory)
6412  stat("/usr/sbin/brctl", {st_dev=makedev(8, 30), st_ino=2009461, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=64, st_size=31584, st_atime=2009/02/14-14:33:26, st_mtime=2008/06/17-02:02:56, st_ctime=2009/02/14-14:33:16}) = 0
6412  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x2adb46b46770) = 6418
6418  close(10)                         = 0
6418  execve("/usr/sbin/brctl", ["brctl", "addif", "eth0", "tap1.0"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "UPSTART_JOB_ID=11", "_=/usr/sbin/xend", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "XAUTHORITY=/root/.Xauthority", "UPSTART_EVENT=runlevel", "PWD=/", "previous=N", "VERBOSE=no"]) = 0
6418  brk(0)                            = 0x1117000
6418  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b75b9505000
6418  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6418  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b75b9506000
6418  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6418  open("/etc/ld.so.cache", O_RDONLY) = 4
6418  fstat(4, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6418  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2b75b9508000
6418  close(4)                          = 0
6418  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6418  open("/lib/libc.so.6", O_RDONLY)  = 4
6418  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0
 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6418  fstat(4, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6418  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2b75b9706000
6418  mprotect(0x2b75b986f000, 2093056, PROT_NONE) = 0
6418  mmap(0x2b75b9a6e000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x168000) = 0x2b75b9a6e000
6418  mmap(0x2b75b9a73000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b75b9a73000
6418  close(4)                          = 0
6418  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b75b9a78000
6418  arch_prctl(ARCH_SET_FS, 0x2b75b9a786e0) = 0
6418  mprotect(0x2b75b9a6e000, 16384, PROT_READ) = 0
6418  mprotect(0x606000, 4096, PROT_READ) = 0
6418  mprotect(0x2b75b9704000, 4096, PROT_READ) = 0
6418  munmap(0x2b75b9508000, 72620)     = 0
6418  socket(PF_FILE, SOCK_STREAM, 0)   = 4
6418  access("/proc/net", R_OK)         = 0
6418  access("/proc/net/unix", R_OK)    = 0
6418  socket(PF_FILE, SOCK_DGRAM, 0)    = 5
6418  ioctl(5, SIOCGIFINDEX, {ifr_name="tap1.0", ifr_index=9}) = 0
6418  close(5)                          = 0
6418  ioctl(4, 0x89a2, 0x7ffff15c3190)  = 0
6418  exit_group(0)                     = ?
6412  --- SIGCHLD (Child exited) @ 0 (0) ---
6412  wait4(4294967295, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 6418
6412  read(10, "", 8192)                = 0
6412  exit_group(0)                     = ?
6310  <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 6412
6310  --- SIGCHLD (Child exited) @ 0 (0) ---
6310  open("/proc/xen/privcmd", O_RDWR) = 4
6310  fcntl(4, F_GETFD)                 = 0
6310  fcntl(4, F_SETFD, FD_CLOEXEC)     = 0
6310  stat("/var/run/xenstored/socket", {st_dev=makedev(0, 16), st_ino=18376, st_mode=S_IFSOCK|0600, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/24-06:07:05, st_mtime=2009/02/24-06:07:04, st_ctime=2009/02/24-06:07:04}) = 0
6310  socket(PF_FILE, SOCK_STREAM, 0)   = 5
6310  fcntl(5, F_GETFD)                 = 0
6310  fcntl(5, F_SETFD, FD_CLOEXEC)     = 0
6310  connect(5, {sa_family=AF_FILE, path="/var/run/xenstored/socket"}, 110) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2)                = 2
6310  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6310  read(5, "/local/domain/1\0", 16)  = 16
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd\0", 27) = 27
6310  read(5, "\1\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0", 16) = 16
6310  read(5, "5632\000768\0", 9)       = 9
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/5632/backend\0", 40) = 40
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0", 16) = 16
6310  read(5, "/local/domain/0/backend/vbd/1/5632", 34) = 34
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "0\0", 2)                = 2
6310  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6310  read(5, "/local/domain/0\0", 16)  = 16
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/frontend\0", 44) = 44
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0", 16) = 16
6310  read(5, "/local/domain/1/device/vbd/5632", 31) = 31
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/dev\0", 39) = 39
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6310  read(5, "hdc", 3)                 = 3
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/5632/backend\0", 40) = 40
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0", 16) = 16
6310  read(5, "/local/domain/0/backend/vbd/1/5632", 34) = 34
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "0\0", 2)                = 2
6310  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6310  read(5, "/local/domain/0\0", 16)  = 16
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/frontend\0", 44) = 44
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0", 16) = 16
6310  read(5, "/local/domain/1/device/vbd/5632", 31) = 31
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/dev\0", 39) = 39
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6310  read(5, "hdc", 3)                 = 3
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/5632/device-type\0", 44) = 44
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0", 16) = 16
6310  read(5, "cdrom", 5)               = 5
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0*\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/params\0", 42) = 42
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0", 16) = 16
6310  read(5, "/dev/loop0", 10)         = 10
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/type\0", 40) = 40
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6310  read(5, "phy", 3)                 = 3
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|0x40, -1, 0) = 0x418b7000
6310  mprotect(0x418b7000, 4096, PROT_NONE) = 0
6310  clone(child_stack=0x420b7260, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x420b79e0, tls=0x420b7950, child_tidptr=0x420b79e0) = 6423
6423  set_robust_list(0x420b79f0, 0x18) = 0
6423  read(5,  <unfinished ...>
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0.\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/params\0", 42) = 42
6310  write(5, "hdc\0", 4 <unfinished ...>
6423  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0.\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/backend/vbd/1/5632/params\0hdc\0", 46) = 46
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 4
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigprocmask(SIG_UNBLOCK, [USR2], NULL, 8) = 0
6310  rt_sigaction(SIGUSR2, {0x416006, ~[RTMIN RT_1], SA_RESTORER, 0x7fae2e2060f0}, NULL, 8) = 0
6310  pipe([6, 7])                      = 0
6310  fcntl(6, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
6310  fcntl(7, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
6310  open("/dev/loop0", O_RDWR|O_SYNC) = 8
6310  lseek(8, 0, SEEK_END)             = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/768/backend\0", 39 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0!\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/backend/vbd/1/768", 33) = 33
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 39
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "0\0", 2 <unfinished ...>
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/0\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 2
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/frontend\0", 43 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\36\0\0\0", 16) = 16
6423  read(5, "/local/domain/1/device/vbd/768", 30) = 30
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 43
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0&\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/dev\0", 38 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "hda", 3)                 = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 38
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/768/device-type\0", 43 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0", 16) = 16
6423  read(5, "disk", 4)                = 4
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 43
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0)\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/params\0", 41 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0", 16) = 16
6423  read(5, "/dev/sdb7", 9)           = 9
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 41
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/type\0", 39 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "phy", 3)                 = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 39
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  open("/dev/sdb7", O_RDWR|O_SYNC)  = 9
6310  lseek(9, 0, SEEK_END)             = 16458753024
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0=\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/logdirty/next-active\0", 52) = 52
6310  write(5, "logdirty\0", 9 <unfinished ...>
6423  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0=\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/device-model/1/logdirty/next-active\0logdirty\0", 61) = 61
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 9
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Watching /local/domain/0/device-model/1/logdirty/next-active\n", 61) = 61
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0002\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/command\0", 39) = 39
6310  write(5, "dm-command\0", 11 <unfinished ...>
6423  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0002\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/device-model/1/command\0dm-command\0", 50) = 50
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 11
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Watching /local/domain/0/device-model/1/command\n", 48) = 48
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0)\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/pci/1/0/num_devs\0", 41 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 41
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  open("/usr/share/xen/qemu/keymaps/en-us", O_RDONLY) = 10
6310  fstat(10, {st_dev=makedev(8, 30), st_ino=623077, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=609, st_atime=2009/02/23-08:59:33, st_mtime=2009/02/23-08:28:48, st_ctime=2009/02/23-08:28:48}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd3000
6310  read(10, "# generated from XKB map us\ninclude common\nmap 0x409\nexclam 0x02 shift\nat 0x03 shift\nnumbersign 0x04 shift\ndollar 0x05 shift\npercent 0x06 shift\nasciicircum 0x07 shift\nampersand 0x08 shift\nasterisk 0x09 shift\nparenleft 0x0a shift\nparenright 0x0b shift\nminus 0x0c\nunderscore 0x0c shift\nequal 0x0d\nplus 0x0d shift\nbracketleft 0x1a\nbraceleft 0x1a shift\nbracketright 0x1b\nbraceright 0x1b shift\nsemicolon 0x27\ncolon 0x27 shift\napostrophe 0x28\nquotedbl 0x28 shift\ngrave 0x29\nasciitilde 0x29 shift\nbackslash "..., 4096) = 609
6310  open("/usr/share/xen/qemu/keymaps/common", O_RDONLY) = 11
6310  fstat(11, {st_dev=makedev(8, 30), st_ino=623087, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2077, st_atime=2009/02/23-08:59:33, st_mtime=2009/02/23-08:28:48, st_ctime=2009/02/23-08:28:48}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd2000
6310  read(11, "include modifiers\n\n#\n# Top row\n#\n1 0x2\n2 0x3\n3 0x4\n4 0x5\n5 0x6\n6 0x7\n7 0x8\n8 0x9\n9 0xa\n0 0xb\nBackSpace 0xe\n\n#\n# QWERTY first row\n#\nTab 0xf localstate\nISO_Left_Tab 0xf shift\nq 0x10 addupper\nw 0x11 addupper\ne 0x12 addupper\nr 0x13 addupper\nt 0x14 addupper\ny 0x15 addupper\nu 0x16 addupper\ni 0x17 addupper\no 0x18 addupper\np 0x19 addupper\n\n#\n# QWERTY second row\n#\na 0x1e addupper\ns 0x1f addupper\nd 0x20 addupper\nf 0x21 addupper\ng 0x22 addupper\nh 0x23 addupper\nj 0x24 addupper\nk 0x25 addupper\nl 0x26 adduppe"..., 4096) = 2077
6310  open("/usr/share/xen/qemu/keymaps/modifiers", O_RDONLY) = 12
6310  fstat(12, {st_dev=makedev(8, 30), st_ino=623071, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=293, st_atime=2009/02/23-08:59:33, st_mtime=2009/02/23-08:28:48, st_ctime=2009/02/23-08:28:48}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(12, "Shift_R 0x36\nShift_L 0x2a\n\nAlt_R 0xb8\nMode_switch 0xb8\nISO_Level3_Shift 0xb8\nAlt_L 0x38\n\nControl_R 0x9d\nControl_L 0x1d\n\n# Translate Super to Windows keys.\n# This is hardcoded. See documentation for details.\nSuper_R 0xdc\nSuper_L 0xdb\n\n# Translate Menu to the Windows Application key.\nMenu 0xdd\n", 4096) = 293
6310  read(12, "", 4096)                = 0
6310  close(12)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  read(11, "", 4096)                = 0
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd2000, 4096)      = 0
6310  read(10, "", 4096)                = 0
6310  close(10)                         = 0
6310  munmap(0x7fae2ecd3000, 4096)      = 0
6310  mmap(NULL, 1028096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ebc1000
6310  mmap(NULL, 1028096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2cedd000
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2 <unfinished ...>
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/1\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 2
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/vm\0", 19 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6423  read(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40", 40) = 40
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 19
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0003\0\0\0", 16) = 16
6310  write(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40/vncpasswd\0", 51 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 51
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "xs_read(): vncpasswd get error. /vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40/vncpasswd.\n", 84) = 84
6310  socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 10
6310  setsockopt(10, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
6310  bind(10, {sa_family=AF_INET, sin_port=htons(5900), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
6310  listen(10, 1)                     = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2 <unfinished ...>
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/1\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 2
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0%\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/console/vnc-port\0", 33) = 33
6310  write(5, "5900", 4 <unfinished ...>
6423  <... read resumed> "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 4
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGINT, {SIG_DFL}, NULL, 8) = 0
6310  rt_sigaction(SIGHUP, {SIG_DFL}, NULL, 8) = 0
6310  rt_sigaction(SIGTERM, {SIG_DFL}, NULL, 8) = 0
6310  brk(0x2a54000)                    = 0x2a54000
6310  brk(0x2a91000)                    = 0x2a91000
6310  write(2, "qemu_map_cache_init nr_buckets = 10000 size 3145728\n", 52) = 52
6310  mmap(NULL, 3145728, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANONYMOUS, -1, 0) = 0x7fae2cbdd000
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5320) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  write(2, "shared page at pfn feffd\n", 25) = 25
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2ecd3000
6310  ioctl(4, SNDCTL_DSP_SPEED or SOUND_PCM_READ_RATE, 0x7fff36cd5340) = 0
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5320) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  write(2, "buffered io page at pfn feffb\n", 30) = 30
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2ecd2000
6310  ioctl(4, SNDCTL_DSP_SPEED or SOUND_PCM_READ_RATE, 0x7fff36cd5340) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2)                = 2
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/1\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/vm\0", 19) = 19
6310  futex(0x2a0fb04, 0x80 /* FUTEX_??? */, 1 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6423  read(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40", 40) = 40
6423  futex(0x2a0fb04, 0x85 /* FUTEX_??? */, 1) = 0
6423  read(5,  <unfinished ...>
6310  <... futex resumed> )             = -1 EAGAIN (Resource temporarily unavailable)
6310  futex(0x2a0fad8, 0x81 /* FUTEX_??? */, 1) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Guest uuid = 8ea65fd4-7b13-95a1-82e6-d9bd93c50f40\n", 50) = 50
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0008\0\0\0", 16) = 16
6310  write(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40/rtc/timeoffset\0", 56) = 56
6310  futex(0x2a0fb04, 0x80 /* FUTEX_??? */, 3 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0", 16) = 16
6423  read(5, "0", 1)                   = 1
6423  futex(0x2a0fb04, 0x85 /* FUTEX_??? */, 1) = 0
6423  read(5,  <unfinished ...>
6310  <... futex resumed> )             = -1 EAGAIN (Resource temporarily unavailable)
6310  futex(0x2a0fad8, 0x81 /* FUTEX_??? */, 1) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Time offset set 0\n", 18) = 18
6310  open("/proc/mounts", O_RDONLY)    = 11
6310  fstat(11, {st_dev=makedev(0, 3), st_ino=19324, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/24-06:09:17, st_mtime=2009/02/24-06:09:17, st_ctime=2009/02/24-06:09:17}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(11, "rootfs / rootfs rw 0 0\nnone /sys sysfs rw,nosuid,nodev,noexec 0 0\nnone /proc proc rw,nosuid,nodev,noexec 0 0\nudev /dev tmpfs rw,mode=755 0 0\nfusectl /sys/fs/fuse/connections fusectl rw 0 0\n/dev/sdb14 / ext3 rw,relatime,errors=remount-ro,data=ordered 0 0\n/dev/sdb14 /dev/.static/dev ext3 ro,errors=remount-ro,data=ordered 0 0\ntmpfs /lib/init/rw tmpfs rw,nosuid,mode=755 0 0\nvarrun /var/run tmpfs rw,nosuid,mode=755 0 0\nvarlock /var/lock tmpfs rw,nosuid,nodev,noexec 0 0\ntmpfs /dev/shm tmpfs rw,nosuid,"..., 1024) = 723
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  open("/sys/class/xen/evtchn/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
6310  open("/proc/mounts", O_RDONLY)    = 11
6310  fstat(11, {st_dev=makedev(0, 3), st_ino=19324, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/24-06:09:17, st_mtime=2009/02/24-06:09:17, st_ctime=2009/02/24-06:09:17}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(11, "rootfs / rootfs rw 0 0\nnone /sys sysfs rw,nosuid,nodev,noexec 0 0\nnone /proc proc rw,nosuid,nodev,noexec 0 0\nudev /dev tmpfs rw,mode=755 0 0\nfusectl /sys/fs/fuse/connections fusectl rw 0 0\n/dev/sdb14 / ext3 rw,relatime,errors=remount-ro,data=ordered 0 0\n/dev/sdb14 /dev/.static/dev ext3 ro,errors=remount-ro,data=ordered 0 0\ntmpfs /lib/init/rw tmpfs rw,nosuid,mode=755 0 0\nvarrun /var/run tmpfs rw,nosuid,mode=755 0 0\nvarlock /var/lock tmpfs rw,nosuid,nodev,noexec 0 0\ntmpfs /dev/shm tmpfs rw,nosuid,"..., 1024) = 723
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  open("/sys/class/misc/evtchn/dev", O_RDONLY) = 11
6310  fstat(11, {st_dev=makedev(0, 0), st_ino=2083, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/24-06:06:31, st_mtime=2009/02/24-06:06:31, st_ctime=2009/02/24-06:06:31}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(11, "10:63\n", 4096)         = 6
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  lstat("/dev/xen/evtchn", {st_dev=makedev(0, 12), st_ino=7935, st_mode=S_IFCHR|0660, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_rdev=makedev(10, 63), st_atime=2009/02/24-06:06:31, st_mtime=2009/02/24-06:06:31, st_ctime=2009/02/24-06:06:31}) = 0
6310  open("/dev/xen/evtchn", O_RDWR)   = 11
6310  ioctl(11, EVIOCGVERSION, 0x7fff36cd5220) = 28
6310  brk(0x2ab3000)                    = 0x2ab3000
6310  write(2, "populating video RAM at ff000000\n", 33) = 33
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  mlock(0x2a92000, 12288)           = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5100) = 1024
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  munlock(0x2a92000, 12288)         = 0
6310  write(2, "mapping video RAM from ff000000\n", 32) = 32
6310  mmap(NULL, 4194304, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c7dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd50e0) = 0
6310  gettimeofday({1235473757, 244375}, NULL) = 0
6310  open("/etc/localtime", O_RDONLY)  = 12
6310  fstat(12, {st_dev=makedev(8, 30), st_ino=90285, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3519, st_atime=2009/02/14-05:26:30, st_mtime=2009/02/14-05:26:29, st_ctime=2009/02/14-05:26:29}) = 0
6310  fstat(12, {st_dev=makedev(8, 30), st_ino=90285, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3519, st_atime=2009/02/14-05:26:30, st_mtime=2009/02/14-05:26:29, st_ctime=2009/02/14-05:26:29}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(12, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\0\0\0\0\353\0\0\0\4\0\0\0\20\236\246\36p\237\272\353`\240\206\0p\241\232\315`\242e\342p\243\203\351\340\244j\256p\2455\247`\246S\312\360\247\25\211`\2503\254\360\250\376\245\340\252\23\216\360\252\336\207\340\253\363p\360\254\276i\340\255\323R\360\256\236K\340\257\2634\360\260~-\340\261\234Qp\262gJ`\263|3p\264G,`\265\\\25p\266\'\16`\267;\367p\270\6\360`\271\33\331p\271\346\322`\273\4\365\360\273\306\264`\274\344\327\360\275\257\320\340\276\304\271\360\277\217\262\340\300\244\233\360\301o\224\340\302\204}\360\303Ov\340\304d_\360\305/X\340\306M|p\307\17:\340\310-^p\310\370W`\312\r@p\312\3309`\313\210\360p\322#\364p\322`\373\340\323u\344\360\324@\335\340\325U\306\360\326
 \277\340\3275\250\360\330\0\241\340\331\25\212\360\331\340\203\340\332\376\247p\333\300e\340\334\336\211p\335\251\202`\336\276kp\337\211d`\340\236Mp\341iF`\342~/p\343I(`\344^\21p\345W.\340\346G-\360\3477\20\340\350\'\17\360\351\26\362\340\352\6\361\360\352"..., 4096) = 3519
6310  lseek(12, -2252, SEEK_CUR)        = 1267
6310  read(12,
 "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0\0\0\0\354\0\0\0\5\0\0\0\24\377\377\377\377^\3\360\220\377\377\377\377\236\246\36p\377\377\377\377\237\272\353`\377\377\377\377\240\206\0p\377\377\377\377\241\232\315`\377\377\377\377\242e\342p\377\377\377\377\243\203\351\340\377\377\377\377\244j\256p\377\377\377\377\2455\247`\377\377\377\377\246S\312\360\377\377\377\377\247\25\211`\377\377\377\377\2503\254\360\377\377\377\377\250\376\245\340\377\377\377\377\252\23\216\360\377\377\377\377\252\336\207\340\377\377\377\377\253\363p\360\377\377\377\377\254\276i\340\377\377\377\377\255\323R\360\377\377\377\377\256\236K\340\377\377\377\377\257\2634\360\377\377\377\377\260~-\340\377\377\377\377\261\234Qp\377\377\377\377\262gJ`\377\377\377\377\263|3p\377\377\377\377\264G,`\377\377\377\377\265\\\25p\377\377\377\377\266\'\16`\377\377\377\377\267;\367p\377\377\377\377\270\6\360`\377\377\377\377\271\33\331p\377\377\377\377\271\346\322`\377\377\377\377\273
\4\365\360\377\377\377\377"..., 4096) = 2252
6310  close(12)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  fstat(1, {st_dev=makedev(8, 30), st_ino=2289612, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=525, st_atime=2009/02/24-06:09:16, st_mtime=2009/02/24-06:09:17, st_ctime=2009/02/24-06:09:17}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  write(1, "Register xen platform.\n", 23) = 23
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5130) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  write(1, "Done register platform.\n", 24) = 24
6310  stat("/etc/disable-guest-log-throttle", 0x7fff36cd51c0) = -1 ENOENT (No such file or directory)
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5170) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eba0000
6310  lseek(9, 0, SEEK_END)             = 16458753024
6310  lseek(9, 0, SEEK_SET)             = 0
6310  read(9,
 "\353\4M3.0\372\374\276\0|\277\0\6\214\310\216\320\211\364\216\300\216\330Q\271\0\1\363\245Y\351\0\212\373\264\2\315\26$\3<\3u\5\306\6a\7\1\273\276\7\271\4\0\200?\200t\16\203\303\20\342\366\275u\7\271\23\0\351\346\0\264\0\315\23S\264A\273\252U\271\0\0\315\23r?\201\373U\252u9\367\301\1\0t3\275\244\7\271\3\0\350\310\0[S\271\5\0fj\0f\377w\10f\3776\\\7j\1j\20\264B\211\346\315\23\237\203\304\20\236s{\264\0\315\23\342\335\353k\275\247\7\271\3\0\350\225\0[S\212\26`\7\264\10\315\23s\10\275b\7\271\23\0\353y\210\310$?\242Y\7\376\306\366\346\243Z\7\213G\10\213W\n\3676Z\7\211\303\211\320\3666Y\7\376\3040\311\210\375\301\351\2\200\341\300\10\341\210\335\210\306\212\26`\7\304\36\\\7\276\5\0\270\1\2\315\23s\22\264\0\315\23N\203\376\0u\357\275\210\7\271\16\0\353#\273\0|\201\277\376\1U\252t\10\275\226\7\271\v\0\353\20\212\26`\7^f\377\26\\\7\275\241\7\271\3\0\273O\0\350\f\0\315\30\200>a\7\0t\30\273\37\0`\270\1\23\272\0\27\315\20\260\7\271\1\0\315\20\264\0\315\26a\303\0\
0\0\0|\0\0\200\0Can\'t re"..., 512) = 512
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eb7f000
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eb5e000
6310  lseek(8, 0, SEEK_END)             = 0
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eb3d000
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0007\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/xen_extended_power_mgmt\0", 55 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 55
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "xs_read(/local/domain/0/device-model/1/xen_extended_power_mgmt): read error\n", 76) = 76
6310  clock_gettime(CLOCK_MONOTONIC, {179, 575561268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 575630745}) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/state\0", 37) = 37
6310  write(5, "running", 7 <unfinished ...>
6423  <... read resumed> "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 7
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  pipe([12, 13])                    = 0
6310  write(13, "\0", 1)                = 1
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 3 (in [3 11 12], left {0, 9996})
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0*\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/params\0", 42 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0", 16) = 16
6423  read(5, "/dev/loop0", 10)         = 10
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 42
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "medium change watch on `hdc\' (index: 0): /dev/loop0\n", 52) = 52
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/type\0", 40 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "phy", 3)                 = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 40
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  read(3, "33\0\0\0\26\342$\245\242\16\340\206\335`\0\0\0\0$\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\2\0\0\0\0\0\0\0\0\0\0\0\0\0\26:\0\5\2\0\0\1\0\217\0`\10\0\0\0\1\4\0\0\0\377\2\0\0\0\0\0\0\0\0\0\1\377\242\16\340", 4096) = 90
6310  clock_gettime(CLOCK_MONOTONIC, {179, 578418681}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 578497054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 578564137}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 2 (in [11 12], left {0, 9995})
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/logdirty/key\0", 44 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 44
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 579770532}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 579838371}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 2 (in [11 12], left {0, 9996})
6310  read(12, "\0", 1)                 = 1
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/command\0", 39 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 39
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 580878417}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 580945258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 581527387}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 581594210}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 581961292}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 582028468}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 582611103}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 582678052}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583045077}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583112035}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583691352}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583758235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584135820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584202611}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584569764}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584636588}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585002999}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585070286}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585436784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585503611}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585870410}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585937264}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586304112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586370956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586737858}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586804726}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587171880}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587238722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587605605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587672435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588039364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588106609}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588473272}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588540080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588906973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588973767}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589353009}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589419930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589787195}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589854027}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590230020}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590296939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590663796}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590730587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591096733}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591164081}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591530659}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591597462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591964136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592031037}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592397862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592464634}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592831386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592898216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593265046}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593331881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593698604}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593765406}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594131817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594198952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594575453}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594642526}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595009200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595075980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595442403}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595509098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595875823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595942572}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596309150}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596375959}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596742471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596809199}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597175385}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597242559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597608697}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597675425}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598041743}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598108479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598474944}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598541716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598908268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598975073}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599343205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599409930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599786851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599853776}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600229749}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600296672}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600664906}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600732116}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601098670}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601165430}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601532015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601598787}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601965584}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602032411}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602399067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602465752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602832142}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602898879}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603265030}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603332188}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603698323}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603765042}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604133343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604200148}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604566618}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604633343}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605009932}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605076856}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605443731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605510557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605877011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605943867}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606310197}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606377361}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606743608}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606810395}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607177048}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607243857}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607610295}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607677148}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608043928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608110727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608477093}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608543838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608910222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608977024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609344477}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609411578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609777447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609844124}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610231440}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610298467}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610665998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610732788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611099337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611166193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611533248}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611600065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611966515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612033356}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612399803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612466971}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612833211}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612900067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613267074}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613333895}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613700374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613767158}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614134016}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614200821}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614567436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614634259}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615000927}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615068194}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615444319}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615511166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615877379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615944316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616309117}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616375802}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616740976}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616807626}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617172447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617239276}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617605541}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617670986}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618037161}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618102726}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618468802}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618534607}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618899092}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618965862}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9994})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619334495}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619401216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619765926}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619832690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620207252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620272772}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620648831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620715918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621082144}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621148875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621512669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621579785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621945014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622011708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622375523}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622442397}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622806634}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622873500}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623238748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623304258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623670013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623736749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624100256}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624167501}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624531328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624598130}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624961735}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625028637}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625392644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625459500}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625833610}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625900654}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626265227}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626330673}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626695892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626761509}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627125374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627192392}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627556012}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627621446}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627985336}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628052072}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628415803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628482597}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628846295}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628911755}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629276727}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629343502}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629705898}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629772979}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630147165}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630212781}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630576695}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630642191}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631018960}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631084930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631449122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631514649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631878473}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631944107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632308033}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632373551}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632736862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632802676}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633166297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633231781}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633595683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633661219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634023908}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634092294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634454668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634521509}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634884202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634948351}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635301104}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635365505}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635718369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635782483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636145318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636209914}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636563545}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636627745}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636980972}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637045145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637400132}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637464371}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637817457}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637881741}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638234941}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638299024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638652236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638716460}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639071252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639135528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639488667}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639552903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639906010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639970408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640333690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640397875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640751386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640815565}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641168961}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641243193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641597010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641661138}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642014125}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642078651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642431668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642495848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642848991}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642913089}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643266298}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643330464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643683587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643747682}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644100669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644165156}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644518189}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644582383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644935564}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644999636}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645352846}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645417020}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645770363}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645834557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646187316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646261569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646615212}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646679265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647032111}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647096183}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647449206}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647513367}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647866262}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647930357}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648283227}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648347601}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648700178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648764237}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649118886}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649183068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649536108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649600206}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649953307}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650025641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650378856}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650443251}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650796184}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650860327}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651213822}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651289449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651643436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651707466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652060354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652124470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652477688}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652541966}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652894756}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652958902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653311922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653376050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653729076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653793258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654146473}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654210649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654563663}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654627827}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654980641}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655045050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655399719}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655463895}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655817062}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655881218}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656234130}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656308221}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656662163}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656726261}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657079018}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657143440}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657496280}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657560510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657913605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657977802}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658330843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658394926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658747877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658812065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659166322}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659230819}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659583470}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659647658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660008234}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660074497}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660428053}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660492322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660845656}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660909899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661263071}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661327340}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661690637}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661754690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662107552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662171683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662524835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662588981}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662941857}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663005950}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663358981}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663423176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663775654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663839920}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664194341}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664258508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664611301}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664675480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665028476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665092571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665445454}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665509582}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665862252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665926727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666279134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666343214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666706546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666770675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667123943}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667188201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667541514}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667605711}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667958680}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668023156}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668376170}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668440304}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668793297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668857459}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669212119}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669276325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669629372}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669693530}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670055058}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670119725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670472820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670536903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670890011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670954235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671307309}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671371449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671735190}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671799362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672152535}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672217080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672570291}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672634557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672989461}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673053742}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673407298}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673471549}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673824871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673889153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674242352}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674306945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674660126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674724360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675077875}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675142131}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675495427}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675559759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675913249}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675977560}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676330574}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676395094}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676758700}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676822942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677176647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677240905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677594551}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677658865}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678012582}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678076974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678141165}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678495062}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678559400}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678912974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678977605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9994})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679333312}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679397630}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679751452}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679815799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680180939}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680245252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680599051}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680663356}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681016807}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681081370}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681434779}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681499099}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681863231}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681927437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682281047}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682345421}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682699118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682763362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683116655}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683181232}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683534750}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683599042}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683952644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684016880}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684370415}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684434756}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684788438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684852781}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685205933}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685270603}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685624141}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685688470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686042188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686106499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686459842}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686524138}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686887941}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686952279}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687305673}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687370320}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687723759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687788088}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688141707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688206030}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688559517}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688623750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688977207}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689041593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689396398}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689460945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689814294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689878629}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690241369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690305719}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690660859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690725248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691078982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691143290}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691496856}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691561298}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691924448}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691988756}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692342222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692406486}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692760173}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692824496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693177884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693242168}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693595602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693659910}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694013100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694078750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694432345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694496578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694849978}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694914229}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695267596}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695331814}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695685289}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695749612}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696102677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696167119}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696520112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696584346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696947510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697011699}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697364887}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697429129}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697782427}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697846705}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698199806}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698264443}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698617353}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698681553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699034785}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699100449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699454070}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699518384}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699871647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699935895}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700298169}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700362743}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700715892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700780239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701133536}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701197805}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701551080}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701615346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701978873}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702043163}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702396108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702460761}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702813870}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702878047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703231369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703295686}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703648967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703713239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704066312}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704130588}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704483503}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704548098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704901112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704965408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705318484}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705382735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705736054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705800396}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706153643}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706217981}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706570848}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706635435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706998274}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707062599}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707416066}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707480382}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707833980}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707898267}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708251628}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708315966}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708670634}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708735175}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709089638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709154051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709507639}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709571815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709925221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709989529}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710351690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710415998}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710768967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710833541}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711186699}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711250989}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711604296}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711668577}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712031685}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712096008}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712449283}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712513614}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712866838}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712931269}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713284196}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713348510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713701668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713765955}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714119388}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714183663}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714536857}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714601168}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714954364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715018735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715371468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715435961}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715788852}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715853164}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716206321}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716270507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716623646}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716687960}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717051368}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717115691}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717468744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717533276}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717886248}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717950521}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718303765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718368064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718720877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718785197}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719139996}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719204259}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719557321}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719621928}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719974796}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720047308}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720401044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720465286}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720818752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720882980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721236141}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721300353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721653349}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721717911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722082987}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722147649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722500887}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722565132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722918386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722982574}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723335759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723400057}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723753078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723817688}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724172253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724236507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724589943}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724654230}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725007646}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725071956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725425187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725489441}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725842449}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725907056}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726261864}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726326163}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726679360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726743590}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727110896}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727175279}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727529407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727593790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727947672}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728012178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728365866}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728430246}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728783930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728848226}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729203780}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729268156}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729621890}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729686216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730047606}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730112055}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730465758}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730530386}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730883900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730948187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731302025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731366353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731720083}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731784445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732148221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732212601}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732566223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732630911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732984470}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733048814}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733402582}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733466950}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733820815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733885207}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734238993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734303325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734656692}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734721378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735074847}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735139200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735492806}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735557072}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735910826}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735975236}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736329037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736393285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736746650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736811329}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737172575}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737237012}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737590867}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737655166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738009048}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738073461}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738427292}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738491756}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738845028}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738909641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739264581}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739328885}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739682690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739747067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740109067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740173423}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740527236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740591542}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740944985}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741009554}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741362927}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741427277}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741780809}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741845117}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742208537}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742272878}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742626524}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742690894}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743044085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743108654}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743461749}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743526071}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743879523}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743943833}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744298755}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744362994}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744716200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744780481}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745133347}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745197967}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745550902}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745615270}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745968476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746032760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746386095}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746450451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746803686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746867982}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747230991}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747295725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747649098}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747713337}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748066686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748131042}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748484412}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748548780}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748902198}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748966414}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749320759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749385337}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749738440}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749802602}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750163594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750227770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750581054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750645299}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750998360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751062545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751415331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751479867}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751832749}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751896970}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752259979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752324449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752678340}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752742630}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753096324}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753160764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753514257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753578760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753932112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753996447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754351940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754416248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754769798}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754834172}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755187697}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755252041}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755605309}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755669651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756022799}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756087503}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756440792}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756505007}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756858332}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756922640}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757285389}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757350084}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757704215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757768505}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758121728}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758186317}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758539544}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758603918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758957318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759021578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759376397}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759440735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759794249}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759858473}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760220091}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760284674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760638105}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760702389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761055912}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761120154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761473707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761537937}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761893146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761957430}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762320041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762385017}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762738405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762802725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763156493}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763220771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763574417}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763638854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763992658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764057048}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764410298}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764474900}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764828386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764892710}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765246262}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765310639}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765664219}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765728566}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766082245}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766146550}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766500004}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766564591}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766917790}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766982134}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767335801}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767412826}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767767831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767832184}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768186438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768250911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768605002}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768669622}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769023349}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769089178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769443252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769507715}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769862014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769926358}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770365680}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770470825}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770865010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770929875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771284965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771349255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771702799}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771767218}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772120444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772184806}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772538117}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772612483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772966859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773031086}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773384645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773448849}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773802111}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773866449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774219568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774284091}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774637096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774701309}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775054706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775118985}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775472179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775536498}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775889818}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775954036}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776306918}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776371472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776724627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776788797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777141946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777206220}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777559558}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777633505}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777988115}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778052426}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778116659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778471008}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778535472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778888878}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778953522}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779308339}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779372677}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779728063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779792431}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780156384}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780220605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780573922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780638185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780991151}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781055642}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781408383}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781472535}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781825813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781890040}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782243179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782307332}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782670386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782735005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783088385}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783153019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783506297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783570515}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783923951}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783988271}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784343501}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784407836}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784760877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784825152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785178208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785242773}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785595844}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785660155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786013489}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786077809}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786431039}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786495395}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786849026}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786913211}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787266138}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787330722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787683879}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787758386}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788111885}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788176028}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788529279}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788593578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788946817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789010987}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789365642}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789430183}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789783003}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789847227}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790220004}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790284273}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790637796}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790702077}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791055554}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791119889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791473056}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791537412}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791890623}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791954913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792308287}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792372535}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792726199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792800394}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793154462}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793218740}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793572536}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793636787}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793989666}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794054222}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794407303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794471613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794824744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794889028}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795242361}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795306747}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795660079}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795724297}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796077290}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796141892}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796494839}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796559157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796912476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796976721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797329974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797394306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797749407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797823297}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798176722}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798241296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798594316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798677807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799031094}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799095327}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799450331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799514615}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799868063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799932326}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800295184}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800359387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800712362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800776817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801129836}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801194072}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801547059}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801611265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801964599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802028901}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802382104}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802446286}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802799267}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802863797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803227121}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803291366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803644635}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803708825}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804061918}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804126196}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804479422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804543727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804896328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804960818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805313784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805378148}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805731216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805795464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806148568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806212846}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806565845}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806630090}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806982954}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807047424}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807400187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807464483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807817538}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807881760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808245449}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808309673}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808663013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808727345}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809080790}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809146587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809499785}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809564069}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809917329}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809981634}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810343551}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810407719}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810761011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810825208}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811178342}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811242593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811595238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811659630}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812012677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812076869}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812429862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812494101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812847073}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812911243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813274968}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813339261}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813692281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813756709}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814111381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814175723}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814529321}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814593499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814946481}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815010684}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815365434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815429671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815782475}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815846858}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816199986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816264132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816617260}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816681523}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817034746}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817098911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817452081}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817516319}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817869360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817933848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818300397}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818364654}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818718162}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818782374}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819137176}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819201613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819555171}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819619419}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819972476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820045512}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820399320}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820463633}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820817396}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820881705}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821235653}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821299995}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821653667}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821717954}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822071534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822136166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822489790}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822554030}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822907786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822972043}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823336211}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823400528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823754330}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823818614}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824172451}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824236861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824590507}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824654854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825008356}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825072658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825426625}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825490894}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825844708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825908962}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826262602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826326912}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826680208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826744752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827098407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827162682}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827516373}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827580693}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827934429}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827998671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828362303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828426566}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828779837}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828844466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829200058}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829264339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829618019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829682291}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830044658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830109133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830463096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830527332}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830880759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830945355}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831298881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831363225}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831716793}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831781140}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832135100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832199408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832553267}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832617619}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832971277}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833035920}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833401595}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833465942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833819647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833883913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834237550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834301900}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834655630}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834719965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835072889}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835137439}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835490822}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835555115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835908647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835972838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836326430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836390726}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836744105}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836808449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837161628}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837226106}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837579393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837643683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837997224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838061508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838426470}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838490801}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838844265}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838908576}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839263351}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839327820}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839681113}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839745415}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840107346}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840171678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840525686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840589976}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840943474}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841007767}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841361242}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841425577}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841778555}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841843064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842196476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842260799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842614238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842678447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843032033}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843096350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843460072}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843524425}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843877820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843942379}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844297255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844361531}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844715221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844779508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845132974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845197278}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845550900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845615196}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845968444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846033051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846386314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846450559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846803974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846868186}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847221820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847286125}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847639732}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847704025}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848057614}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848122206}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848486668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848550964}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848905167}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848969568}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849324835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849389137}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849743127}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849807483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850169613}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850234265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850587771}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850652031}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851007478}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851071807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851425546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851489932}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851843320}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851907571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852261028}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852325606}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852679093}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852743454}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853097058}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853161366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853525107}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853589462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853943422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854007764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854361116}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854425738}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854779178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854843518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855197139}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855261432}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855615093}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855679473}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856033068}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856097325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856450758}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856515392}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856868769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856933074}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857286650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857350890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857704518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857768868}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858122534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858186893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858549992}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858614663}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858968500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859032835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859388405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859452710}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859806422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859870775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860233100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860297437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860650874}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860715400}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861068672}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861132938}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861486646}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861550972}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861904352}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861968596}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862322392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862386691}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862739864}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862804348}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863157602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863221796}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863585078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863649383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864003110}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864067229}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864420983}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864485189}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864838685}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864902990}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865255650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865319842}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865673215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865737394}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866090687}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866154962}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866508134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866572323}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866925357}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866989641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867342706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867407120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867759993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867824133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868177422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868241640}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868604784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868670649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869024571}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869088837}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869443686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869508165}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869861494}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869925846}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870287739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870352032}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870705510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870769740}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871123126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871187366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871540550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871605107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871958100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872022378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872375910}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872440140}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872793528}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872857815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873211222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873275472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873638620}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873703392}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874057041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874123133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874476836}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874541153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874894820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874959080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875312430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875376613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875729824}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875794447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876147634}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876211792}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876565270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876629488}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876982883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877047152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877400615}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877464779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877817892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877882541}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878235942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878300217}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878364587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878728454}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878792854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879148515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879212931}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879566835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879631107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879985077}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880059647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880413644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880478182}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880831618}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880895908}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881249497}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881313760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881667645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881731987}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882085698}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882149929}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882503473}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882568107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882921660}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882985884}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883339704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883404005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883767587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883831909}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884185819}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884250187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884603662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884668168}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885021678}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885086004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885439558}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885503772}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885857248}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885921559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886275037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886339219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886693982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886758589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887111896}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887176091}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887529455}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887593700}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887947191}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888011433}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888365225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888429428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888792465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888857224}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889212439}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889276867}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889630600}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889694902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890058193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890122659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890476934}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890541293}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890894973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890959653}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891313748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891378026}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891731968}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891796393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892150494}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892214835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892568726}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892633133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892986596}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893051128}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893404838}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893469334}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893833137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893897522}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894250815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894315018}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894668541}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894732793}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895086395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895150715}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895503930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895568013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895921324}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895985620}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896339140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896403346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896756767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896821030}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897174326}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897238568}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897591561}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897656063}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898009266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898073382}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898426678}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898490935}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898856041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898920734}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899275928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899340184}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899693734}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899757980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900119891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900184199}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900537896}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900602075}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900955552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901019764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901373143}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901437317}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901790678}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901854887}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902207997}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902272365}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902625645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902689947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903043153}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903107284}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903460762}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903525050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903888146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903952735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904308827}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904373378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904726760}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904790831}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905144207}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905208497}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905561975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905626157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905979543}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906043823}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906396930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906461343}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906814354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906878614}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907231973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907296209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907649468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907713708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908066949}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908131131}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908484046}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908548510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908912816}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908977516}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909332928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909397280}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909750984}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909815234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910177697}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910242064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910595510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910660012}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911013053}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911077355}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911430923}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911495087}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911848595}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911912991}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912266469}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912330705}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912683860}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912748485}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913101708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913165852}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913519225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913583539}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913937026}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914011518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914365317}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914429589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914782998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914847521}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915201029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915265253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915618881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915683025}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916036620}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916100963}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916454445}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916518666}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916872102}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916936683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917290044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917354307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917707875}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917772150}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918125939}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918190139}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918543797}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918608093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918961263}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919035243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919391605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919455844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919809364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919873516}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920235615}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920299923}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920653635}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920717871}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921071210}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921135514}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921488771}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921553016}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921906605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921970808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922326217}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922390388}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922743920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922808285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923161841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923226101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923579414}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923643965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923997317}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924073731}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924428626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924492907}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924846828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924911088}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925265136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925329588}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925683168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925747737}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926101206}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926165591}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926519381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926583599}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926937494}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927001910}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927355774}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927420013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927773488}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927838113}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928191687}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928255965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928609815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928674105}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929027808}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929092056}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929457471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929521871}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929875305}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929939843}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930301982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930366302}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930720137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930784393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931137824}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931202149}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931555795}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931620011}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931973294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932037947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932391146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932455382}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932809061}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932873393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933226904}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933291068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933644618}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933708947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934062212}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934128377}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934492243}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934556557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934910164}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934974442}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935328225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935392527}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935746688}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935810906}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936164324}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936228989}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936582323}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936646514}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937000124}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937064498}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937418126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937482374}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937835906}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937900283}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938253662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938318150}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938671547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938735903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939089250}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939154800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939519501}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939583893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939939168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940011716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940366560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940430997}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940784457}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940848693}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941202263}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941266583}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941620304}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941684590}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942038302}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942102542}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942456088}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942520336}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942873707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942938302}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943291780}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943356002}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943709719}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943774066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944127736}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944192023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944556493}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944620876}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944974393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945038857}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945392224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945456508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945810108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945874294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946227928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946292259}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946645782}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946709932}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947063149}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947127754}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947481280}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947545435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947898871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947963125}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948316768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948381028}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948734707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948798892}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949153583}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949218110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949582379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949646800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950008068}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950074643}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950428621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950492941}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950846931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950911223}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951264986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951329398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951683140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951747346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952101255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952165549}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952519362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952583583}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952937400}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953001716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953355500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953419721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953773199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953837759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954191351}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954255518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954619132}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954683398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955036999}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955101222}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955455000}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955519263}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955872929}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955937207}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956290563}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956354919}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956708484}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956772678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957126507}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957190865}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957544556}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957610344}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957964208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958028513}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958382000}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958446371}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958799780}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958864082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959218925}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959283068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959647137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959711517}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960073398}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960137662}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960491556}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960555936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960909423}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960973650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961327101}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961391400}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961745118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961809426}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962163053}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962227287}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962580765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962645046}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962998359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963063009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963416379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963480603}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963834435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963898791}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964254131}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964318481}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964682134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964746502}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965099785}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965164303}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965517727}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965582059}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965935654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965999890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966353509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966417889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966771343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966835555}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967188797}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967253434}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967606751}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967670963}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968024342}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968088656}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968442239}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968506529}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968860121}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968924384}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969279063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969343577}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969707206}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969771586}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970153308}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970222023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970605970}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970674841}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9995})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971060037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971128337}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971503554}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971571782}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971952452}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972021519}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972398907}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972467569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972847215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972915964}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973297640}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973366051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973740768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973808642}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974188813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974257606}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974637675}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974706445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975100318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975168833}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975547362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975615479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975995638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976064258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976440706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976509266}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976891667}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976960021}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977337223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977405238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977784597}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977853537}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978232783}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978301483}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978370142}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978749148}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978818004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979197363}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979265803}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979644441}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979712822}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980095589}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980159825}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980523302}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980587154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980938710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981003009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981354813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981418732}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981770273}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981834174}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982185286}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982249427}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982600710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982664608}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983016122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983080031}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983431590}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983495457}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983846843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983910767}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984261883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984326038}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984679067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984742926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985094407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985158275}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985519826}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985585391}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985936869}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986000749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986352041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986416250}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986767626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986831584}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987183086}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987246966}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987598392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987662353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988013924}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988077923}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988429069}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988493191}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988844394}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988908306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989259877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989323763}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989675124}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989739076}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990099830}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990163751}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990525560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990589746}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990940938}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991004770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991356409}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991420238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991771659}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991835554}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992186951}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992250918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992602021}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992666167}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993017214}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993081046}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993432377}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993496218}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993847621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993911486}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994262778}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994326633}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994677752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994742090}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995093157}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995156890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995518509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995584066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995935397}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995999241}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996350641}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996414545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996765888}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996829807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997180886}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997244775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997596037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997659881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998011467}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998075428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998426810}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998490689}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998841973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998905894}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999256953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999321062}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999672178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999736025}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115941}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542094}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 605980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 957385}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1021262}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1372395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1436496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1787498}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1851339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2204275}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2268155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2619456}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2683285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3034428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3098151}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3448928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3513039}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3863688}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3927445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4278434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4342227}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4693181}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4756968}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5107960}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5171765}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5533897}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5598315}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5949344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6013095}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6364193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6427958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6779179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6843101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7194126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7257955}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7608861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7673034}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8024054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8087847}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8439094}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8502899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8853931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8917820}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9269039}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9332952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9683768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9747902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10107984}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10172013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10523638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10599900}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10951851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11015652}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11366816}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11430627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11781662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11845571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12196549}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12260312}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12611431}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12675254}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13026761}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13090650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13441712}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13505532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13856920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13920835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14271660}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14335708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14686518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14750305}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15101552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15165393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15516643}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15582086}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15943724}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16007658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16359201}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16423303}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16774422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16838289}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17189959}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17253901}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17605209}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17669127}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18020626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18084434}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18435379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18499462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18850622}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18914461}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19265744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19329650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19681080}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19744873}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20108568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20172511}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20524202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20588342}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20949921}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21013779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21365395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21429272}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21780843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21844794}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22196344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22260272}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22611375}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22675569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23026610}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23090469}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23441788}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23505695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23857029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23920912}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24272129}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24336021}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24687199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24751354}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25102366}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25166273}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25517912}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25583185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25944619}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26008544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26359833}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26423686}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26774840}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26838768}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27190039}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27253904}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27605217}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27669052}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28020428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28084311}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28435531}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28499351}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28850844}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28914747}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29265602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29329702}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29680632}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29744479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30105019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30169069}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30520999}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30584891}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30946391}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31010409}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31361946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31426017}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31777337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31841294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32193189}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32257200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32608768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32672722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33024383}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33088338}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33439534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33503707}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33855257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33919229}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34270731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34334590}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34686149}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34750008}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35101530}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35165446}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35516798}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35582474}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35943813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36007842}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36359437}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36423389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36775172}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36839310}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37191030}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37255018}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37608205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37672525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38024216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38088149}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38439810}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38503771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38855698}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38919610}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39271145}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39335117}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39686652}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39750927}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40133122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40197098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40549225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40613114}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40974993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41038957}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41390935}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41454785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41806322}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41870136}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42221695}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42285883}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42637367}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42701328}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43053072}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43117006}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43468627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43532552}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43884380}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43948278}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44299573}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44363758}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44715197}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44778960}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45130662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45194580}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45547930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45611983}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45973570}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46037731}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46389245}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46453383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46804773}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46868662}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47220640}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47284625}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47636354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47700234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48051867}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48115750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48467204}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48531398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48882891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48946864}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49298565}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49362544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49714013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49777896}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50137573}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50201548}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50552535}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50616610}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50967509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51041609}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51393889}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51457838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51809881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51873905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52225793}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52289763}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52641133}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52705411}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53056811}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53120765}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53472036}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53535988}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53887855}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53951834}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54303386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54367359}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54718661}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54782845}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55133975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55197882}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55552546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55616515}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55967870}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56043189}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56395565}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56459376}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56810764}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56874949}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57226364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57290235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57641781}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57705748}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58057229}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58121007}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58472434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58536326}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58887791}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58952004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59303097}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59366989}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59718365}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59782203}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60142222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60206060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60557331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60621181}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60972108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61036209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61397808}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61461838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61813803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61877881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62229862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62293939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62645854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62709926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63061454}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63125742}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63477238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63541255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63893233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63957250}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64309015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64373054}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64724903}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64788948}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65140384}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65204674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65557774}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65621792}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65973518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66037524}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66399407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66463338}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66814376}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66878235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67229434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67293592}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67644786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67708725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68060011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68123844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68475007}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68538841}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68890257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68954080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69305156}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69369323}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69720238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69784082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70144861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70208815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70560805}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70624679}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70976185}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71040071}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71401346}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71465463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71816710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71880697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72232469}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72296399}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72647964}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72711922}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73065313}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73129211}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73480425}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73544556}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73895971}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73959854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74311311}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74375152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74726771}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74790650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75142344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75206249}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75559343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75623651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75975162}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76039080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76402794}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76466680}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76818460}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76882358}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77234303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77298296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77650205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77714223}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78065964}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78129874}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78193990}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78545567}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78609515}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78961353}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79025262}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79376980}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79440905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79792700}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79856688}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80219067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80283312}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80634883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80698828}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81050396}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81114266}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81476192}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81540237}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81891930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81955897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82307467}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82371775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82723193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82787157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83138841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83202793}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83554534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83618489}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83970194}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84034200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84385465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84449698}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84800924}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84864852}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85216650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85280593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85634051}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85698098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86049827}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86113764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86478519}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86542782}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86894380}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86958325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87310657}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87374668}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87726260}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87790271}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88142103}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88206078}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88557559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88621759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88973297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89037323}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89389263}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89453154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89804821}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89868850}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90228988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90292964}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90646202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90710522}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91061987}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91125872}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91487738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91551735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91903883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91967946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92319768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92383710}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92735542}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92799796}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93151459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93215423}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93567227}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93631239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93983085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94047135}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94398892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94462813}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94814294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94878623}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95230205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95294180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95647728}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95711829}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96063705}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96127684}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96488920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96553243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96905029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96969233}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97320884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97384919}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97736930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97800930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98152722}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98216761}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98568861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98632846}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98984647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99048970}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99400621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99464602}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99816559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99880487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100241167}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100305101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100656768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100720708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101072047}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101136157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101487530}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101561917}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101913949}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101977745}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102329510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102393462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102745611}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102809469}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103161031}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103225231}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103576739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103640574}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103992438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104056372}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104408218}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104472106}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104823881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104887788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105239253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105303381}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105656188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105720041}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106071821}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106135686}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106487415}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106561309}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106913008}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106976822}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107328543}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107392719}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107744187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107808001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108159931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108223817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108577328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108641175}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108992928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109056829}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109408491}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109472569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109824199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109888103}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110248410}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110312289}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110664216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110728171}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111080089}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111143969}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111495654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111569693}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111922159}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111986084}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112338161}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112402100}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112754216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112818209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113170331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113234214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113585940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113650114}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114001996}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114065977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114417982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114481886}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114833945}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114897899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115249859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115313772}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115666858}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115731082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116082982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116146853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116498888}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116572946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116925378}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116989255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117341374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117405340}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117757343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117821174}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118172967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118236915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118588842}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118652671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119004691}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119068627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119420752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119484587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119836715}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119900622}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120261032}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120325040}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120676656}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120740538}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121092359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121156221}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121507947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121571794}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121934075}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121997968}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122349302}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122413951}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122765599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122829416}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123181412}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123245367}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123597027}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123660874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124012571}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124076543}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124427931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124492014}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124843502}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124907408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125259237}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125323111}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125676200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125740062}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126093405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126157324}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126508859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126572945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126936907}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127000724}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127352489}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127416428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127768086}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127831945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128184003}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128247884}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128599418}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128663624}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  write(2, "cirrus vga map change while on lfb mode\n", 40) = 40
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129102386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129166838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129518368}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129582254}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129933965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129997866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130358995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130422983}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130775033}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130838939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131190043}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131254306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131605548}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131679456}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132031649}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132095562}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132447282}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132511108}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132862712}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132926663}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133278096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133342296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133693331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133757250}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134108923}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134172859}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134524211}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134588064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134939515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135003403}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135354465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135418690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135771547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135835316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136186756}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136250650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136602125}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136675973}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137027862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137091753}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137443357}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137507569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137858577}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137922484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138273988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138337844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138689085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138752974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139122979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139187104}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139538462}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139602659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139953996}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140026790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140383380}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140447292}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140799040}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140862997}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141214292}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141278180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141629431}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141693691}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142055849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142119888}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142529449}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142593466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142945103}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143009066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143360921}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143424933}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143776216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143842027}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144193436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144257553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144608474}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144672374}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145023816}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145087749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145439038}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145502963}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145855579}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145919461}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146270490}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146334699}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146685817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146749727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147111736}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147175616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147527492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147591459}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147942862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148006709}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148358025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148422252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148773314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148837251}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149188492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149252260}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149603705}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149667674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150028831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150092953}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150444018}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150508182}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150860861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150924697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151276044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151339924}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151691264}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151755111}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152116658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152180589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152531663}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152595815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152947158}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153011095}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153362815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153426785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153778293}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153842239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154194471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154258036}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  write(2, "I/O request not ready: 0, ptr: 0, port: e9, data: 20, count: 1, size: 1\n", 72) = 72
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154637560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154701311}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 7161})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c6dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd47b0) = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158312940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158377499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9995})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158730882}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158794737}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c5dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd47b0) = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 159548651}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 159612755}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 159961945}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 160036295}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 8537})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 161866981}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 161931346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162285828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162349974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162704772}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162769012}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163122442}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163186938}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163539713}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163603853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163957340}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164021466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164374851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164439093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164792508}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164856675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165209743}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165274201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165629200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165693335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166047010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166111195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166467344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166531491}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166896282}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166960252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167312903}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167377226}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167729737}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167793674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168146711}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168210735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168563617}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168627671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168980538}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169044496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169396869}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169461174}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169813769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169877780}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170250522}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170314658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170668182}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170732154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171085316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171149387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171502276}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171566353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171938508}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172002770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172355329}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172419260}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172771726}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172835681}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173188434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173252487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173604744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173668650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174020850}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174085182}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174437423}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174501417}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174854078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174917972}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175270131}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175334065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175688136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175751958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176103823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176168074}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176520303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176584219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176947453}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177011411}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177364338}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177428283}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177780854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177844913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178197604}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178261711}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178325666}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178678060}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178742252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179094553}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179158487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179510938}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179574866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179927686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179991613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180370641}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180434760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180788232}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180852453}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181205060}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181269113}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181622337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181686402}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182050882}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182114992}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182468635}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182532800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182886194}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182950280}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183303609}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183367965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183721002}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183785098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184140393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184204480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184557736}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184621790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184975199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185039291}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185392009}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185456353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185810993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185875053}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186228273}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186292332}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186645670}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186709703}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187073032}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187137155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187490234}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187554605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187907179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187971176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188324405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188388467}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188741458}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188805484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189158420}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189222426}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189574940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189639233}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189991995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190075195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190428439}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190492484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190845632}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190909697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191262337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191326316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191679111}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191743164}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192106350}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192170607}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192523316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192587312}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192940042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193004050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193357031}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193421055}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193773647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193837628}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194190193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194254501}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194606770}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194670796}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195023789}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195087835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195440523}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195504520}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195858738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195922818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196275362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196339634}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196692459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196756528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197119708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197183737}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197536811}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197600945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197953986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198018037}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198371479}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198435628}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198788345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198852339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199205173}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199269193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199622165}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199686216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200057934}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200122194}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200475777}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200539788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200892505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200956786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201309219}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201373153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201727735}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201791786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202161090}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202225191}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202578322}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202642274}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202994973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203059269}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203411969}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203475962}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203828578}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203892544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204245463}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204309462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204662015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204725922}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205078255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205142578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205495020}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205560436}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205913935}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205977910}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206330927}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206394972}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206747863}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206811827}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207174674}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207239048}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207591963}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207656020}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208008923}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208072893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208426042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208490122}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208843088}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208907112}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209259586}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209323915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209676617}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209740581}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210113125}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210177376}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210530891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210595049}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210948623}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211012808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211366061}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211430178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211783353}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211847499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212210815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212274889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212628098}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212692178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213045099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213109206}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213462215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213526316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213879099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213943359}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214296190}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214360304}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214713222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214777242}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215130203}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215194358}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215547420}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215612862}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215965478}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216029876}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216382767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216446788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216799739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216863799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217226829}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217290903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217644157}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217708300}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218060841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218125176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218477890}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218541977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218894922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218958975}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219311873}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219375956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219730851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219794913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220167460}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220231860}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220584880}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220648919}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221002107}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221066200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221419025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221483075}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221836233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221900322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222263392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222327816}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222680684}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222744752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223097925}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223161897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223514948}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223579082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223931988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223995984}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224348621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224413031}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224765638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224829608}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225182602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225246694}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225601319}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225665426}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226018204}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226082209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226434447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226498807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226851374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226915356}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227278587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227342751}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227696202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227760366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228113545}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228177701}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228530858}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228595118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228948027}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229012120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229365185}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229429299}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229782702}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229846750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230219444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230283518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230636457}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230700388}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231053064}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231117447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231470063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231533969}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231886977}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231951007}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232314091}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232378285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232731122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232795155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233147480}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233211791}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233564236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233628589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233981468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234045339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234397928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234462020}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234814435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234878387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235230593}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235294901}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235648855}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235712785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236065557}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236129553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236482235}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236546171}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236898761}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236962736}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237326179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237390847}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237744029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237808145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238161096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238225087}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238578178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238642330}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238995341}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239059308}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239411744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239476133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239828871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239892931}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240265861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240330118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240683378}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240747425}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241100704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241164952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241517975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241582059}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241934956}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241999063}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242362243}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242426647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242780326}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242844493}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243197993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243262058}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243615428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243679649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244032633}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244096977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244446704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244510409}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244866828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244930908}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245284421}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245348601}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245703504}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245767513}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246120213}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246184595}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246537226}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246601288}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246954437}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247018490}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247381566}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247445889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247799172}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247863339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248216578}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248281003}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248634170}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248698378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249052042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249116060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249469118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249533282}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249886509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249950553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250338147}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250402369}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250755548}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250819643}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251173222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251237350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251590616}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251654627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252008007}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252072153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252425304}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252501396}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252854942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252919307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253272285}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253336389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253689919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253754047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254107468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254171564}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254524727}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254588913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254941579}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255005956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255360879}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255424999}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255779594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255843596}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256196748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256260847}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256613800}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256677743}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257030560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257094934}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257447310}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257521143}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257874947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257939010}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258292099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258356098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258709235}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258773360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259126030}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259190305}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259542965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259607000}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259959966}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260043230}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260397085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260461088}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260814131}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260878047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261230893}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261294992}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261647509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261711440}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262064271}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262128294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262481281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262555193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262909051}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262973047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263326140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263390124}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263742731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263807060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264159759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264223747}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264576539}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264640602}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264993304}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265057292}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265410123}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265474132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265828424}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265892720}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266245165}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266309192}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266661907}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266725879}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267078803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267142811}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267495466}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267559367}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267922520}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267986975}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268339528}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268403545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268756775}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268820885}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269174501}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269238527}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269591374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269655454}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270025539}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270090524}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270443505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270507540}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270860318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270924253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271277090}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271341101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271693813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271757708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272110255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272174545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272526891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272590818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272957847}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273021810}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273374710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273438773}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273791966}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273855888}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274208435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274272620}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274625281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274689310}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275042073}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275105996}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275459120}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275523138}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275877382}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275941334}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276293926}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276358222}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276710984}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276774861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277127845}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277191884}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277544676}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277608628}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277972191}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278036319}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278100067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278452956}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278517066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278869969}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278934301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279286942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279350881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279704105}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279768102}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280142362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280206592}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280560738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280624968}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280978428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281042580}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281396046}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281460256}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281813818}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281877976}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282232014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282296178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282649953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282723771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283077902}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283142060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283494763}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283559092}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283911893}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283975980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284328931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284393023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284746232}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284810255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285163078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285227149}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285581645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285646214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285998883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286062844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286415912}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286479977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286833024}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286897111}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287250265}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287314334}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287667081}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287731413}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288095099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288159275}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288512505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288576586}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288929986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288994195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289347425}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289411496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289764417}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289828821}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290214594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290278797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290634027}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290698301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291052087}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291116335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291470059}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291534187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291887399}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291951644}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292304847}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292369295}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292722226}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292786321}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293150621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293214812}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293568123}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293632307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293985825}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294050001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294402901}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294467335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294820418}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294884603}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295237715}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295301834}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295656660}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295720815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296073978}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296138143}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296491208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296555647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296908293}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296972391}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297325444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297389507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297742389}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297806544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298170431}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298234437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298586911}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298651297}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299004102}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299068239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299421123}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299485132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299838137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299902289}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300275900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300339947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300692754}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300756958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301109411}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301173437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301526281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301590385}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301943135}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302007225}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302360233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302424373}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302777025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302841123}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303204977}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303269407}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303622221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303686335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304039552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304103632}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304456742}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304520897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304874301}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304938300}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305290675}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305355067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305709390}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305773545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306126239}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306190241}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306543252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306607357}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306960017}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307024056}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307376629}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307441019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307793451}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307857481}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308221224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308285379}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308640447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308704525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309057737}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309121835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309474384}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309538700}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309891224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309955265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310326686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310390617}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310743173}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310807145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311159588}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311223575}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311576119}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311640302}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311992519}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312056483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312409188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312473167}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312825627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312889540}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313252950}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313317165}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313669748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313734158}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314086992}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314151120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314504086}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314568242}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314921411}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314985579}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315338362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315402455}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315757175}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315821600}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316174318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316238446}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316591627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316655816}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317008704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317072838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317425837}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317489924}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317842360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317906728}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318269683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318333685}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318686427}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318750451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319103546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319167665}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319520314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319584277}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319936884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320037295}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 2 (in [3 11], left {0, 9997})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  read(3, "33\377\242\16\340\342$\245\242\16\340\206\335`\0\0\0\0\30:\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\2\0\0\0\0\0\0\0\0\0\1\377\242\16\340\207\0\330\375\0\0\0\0\376\200\0\0\0\0\0\0\340$\245\377\376\242\16\340", 4096) = 78
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320494952}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320559033}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320912311}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320976349}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321328983}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321392985}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321746287}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321810344}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322163369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322227345}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322580350}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322644314}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323007036}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323071448}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323424654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323488699}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323841889}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323905984}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324259166}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324323241}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324675976}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324739961}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325092626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325156916}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325509426}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325573372}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325928258}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325992248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326346957}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326411040}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326763844}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326827790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327180073}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327244340}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327596953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327660904}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328026818}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328090893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328444658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328508556}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328861181}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328925219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329278587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329342671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329695257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329759304}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330131947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330196157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330549150}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330613236}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330966178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331030162}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331382598}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331446616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331799226}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331863390}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332215769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332279688}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332632819}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332696741}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333059654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333124163}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333477428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333541386}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333893705}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333958055}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334310728}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334374676}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334727136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334791085}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335144066}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335207991}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335560370}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335625947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335978542}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336042766}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336394915}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336458878}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336811809}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336875706}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337228134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337292112}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337644800}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337708713}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338070677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338135500}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338488945}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338553005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338906171}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338970216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339323550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339387645}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339740701}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339804874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340176741}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340241552}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340594683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340658877}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341012594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341076722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341429976}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341494161}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341847768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341911953}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342265162}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342329721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342683188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342747328}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343100776}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343176675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343530654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343594632}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343947679}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344013463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344367013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344431159}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344783850}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344847861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345201171}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345265147}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345619631}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345683711}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346037090}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346101060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346453966}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346518110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346871052}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346935276}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347287897}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347351996}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347705280}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347769303}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348121982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348196234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348550314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348614421}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348966849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349031333}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349384355}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349448435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349801414}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349865557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350238823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350302975}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350656229}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350720441}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351073765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351137929}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351490602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351554757}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351908065}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351972220}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352325339}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352389470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352742778}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352806915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353159767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353234005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353587809}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353652093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354004772}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354068888}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354422330}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354486558}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354839455}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354903616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355257075}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355321161}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355675865}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355740352}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356093540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356157647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356510520}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356574639}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356927884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356991974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357344895}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357408978}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357761789}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357826159}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358178769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358252869}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358607012}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358671068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359024034}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359088097}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359441167}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359505238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359857872}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359922287}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360294054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360358110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360710953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360774983}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361128087}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361192152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361544843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361608899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361963721}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362027880}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362380631}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362445001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362797898}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362861940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363214831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363278918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363642711}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363706849}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364059932}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364124123}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364477463}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364541621}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364894411}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364958494}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365311694}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365375786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365730351}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365794414}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366147575}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366211703}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366564606}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366628782}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366981479}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367045715}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367398142}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367462255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367815305}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367879364}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368231956}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368296118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368659885}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368723974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369076536}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369140969}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369493729}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369557779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369910760}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369974823}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370347540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370411681}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370764919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370829080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371182233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371246433}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371599223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371663378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372016608}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372080775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372433869}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372497926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372851146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372915233}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373267998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373332198}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373696436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373760858}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374114087}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374178248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374531891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374596023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374949252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375013464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375367081}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375431200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375786290}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375850804}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376204168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376268318}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376621664}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376685861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377039654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377103875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377457101}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377521319}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377874450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377938911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378291679}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378355841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378420131}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378784748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378848939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379202007}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379266120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379620815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379685013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380071275}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380135714}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380489492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380553647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380906416}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380970580}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381323848}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381388033}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381740919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381805116}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382158435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382222573}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382575835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382640024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382993112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383057489}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383410270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383474482}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383838419}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383902545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384255690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384319998}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384673402}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384737524}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385090154}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385154675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385507740}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385571859}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385926359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385990544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386343857}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386408082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386761045}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386825215}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387177947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387242378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387595182}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387659394}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388012636}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388076759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388429686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388493946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388860767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388924958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389277783}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389342322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389695390}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389759545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390132331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390196585}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390549836}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390613871}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390966492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391030683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391383505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391447619}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391799786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391863941}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392216673}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392280750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392633370}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392697468}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393050305}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393114350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393466842}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393531022}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393894402}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393958788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394311407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394375571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394728831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394792944}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395145825}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395210103}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395563393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395629045}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395981559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396046017}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396398794}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396462874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396815772}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396879885}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397232825}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397296941}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397651721}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397715927}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398068654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398132971}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398485335}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398549463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398912731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398976853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399329779}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399393940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399746942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399811101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400184187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400248399}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400601057}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400665101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401017755}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401081868}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401434784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401498950}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401851653}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401915790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402268706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402332858}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402685387}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402749716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403102359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403166448}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403519231}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403583365}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403946450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404010491}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404363391}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404427609}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404780767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404844914}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405197463}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405261659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405616258}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405680350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406033316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406097510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406450710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406514853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406867699}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406931897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407284459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407348775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407701430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407765615}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408118746}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408182848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408535541}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408599712}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408962975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409027032}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409379371}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409443831}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409796450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409860573}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410233153}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410297305}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410650664}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410714687}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411067291}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411131488}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411484922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411549002}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411901147}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411965240}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412318050}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412382083}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412734687}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412798943}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413151900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413215942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413568540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413632749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413997115}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414061470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414413994}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414478104}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414831166}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414895234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415249988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415314185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415668558}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415732651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416084937}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416149320}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416501909}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416566019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416918698}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416982802}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417335598}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417399660}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417752309}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417816440}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418169038}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418233322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418585515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418649605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419012848}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419077093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419430346}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419494520}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419847965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419912201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420284739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420349001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420702135}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420766518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421119593}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421183784}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421537208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421601360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421954519}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422018695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422372047}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422436166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422789168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422853653}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423206730}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423270834}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423624013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423688180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424053639}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424117779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424470880}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424534990}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424887833}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424952201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425304884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425368986}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425724455}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425788502}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426141438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426205459}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426558500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426622542}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426975044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427039483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427392183}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427456176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427809172}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427873247}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428226521}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428290574}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428643460}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428707531}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429070957}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429135445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429488453}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429552525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429905862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429969946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430354078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430418240}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430771823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430835936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431189189}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431253399}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431606584}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431670661}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432023744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432087887}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432441347}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432505454}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432860403}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432924504}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433277962}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433342063}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433694867}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433759253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434122915}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434187013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434540471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434604644}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434958254}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435022451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435375644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435439952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435794916}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435859373}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436212256}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436276387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436629967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436694065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437047164}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437111336}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437464491}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437528581}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437881268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437945795}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438298881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438362889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438715939}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438780067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439141496}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439205702}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439559019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439623203}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439976266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440058866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440412266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440476437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440829720}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440893800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441247023}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441311083}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441664390}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441728480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442081008}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442145409}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442498345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442562414}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442915395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442979463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443332821}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443396914}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443749862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443813957}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444177278}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444241694}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444594849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444658995}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445012464}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445076511}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445429752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445493946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445848730}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445912784}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446265348}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446329692}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446682643}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446746679}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447100148}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447164294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447517365}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447581499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447934532}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447998543}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448351272}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448415592}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448768145}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448832252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449195474}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449259528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449612508}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449676487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450048747}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450113201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450466767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450530820}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450885336}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450949545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451302242}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451366203}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451719303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451783177}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452136050}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452200074}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452553085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452617064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452969448}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453033808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453386684}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453450641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453803491}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453867478}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454230317}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454294535}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454647950}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454712091}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455065266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455129690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455482450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455546578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455901547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455965642}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456318965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456383093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456736451}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456800520}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457153297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457217716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457570673}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457634709}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457987998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458052187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458405767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458469808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458822909}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458887043}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459249669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459314434}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459667253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459731301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460103663}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460167785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460521150}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460585364}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460938738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461002863}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461356042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461420251}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461773238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461837321}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462190255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462254362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462607789}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462671897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463025069}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463089108}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463442421}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463506472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463859213}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463923551}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464286186}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464350677}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464704221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464768343}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465122001}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465186096}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465539236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465604984}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465958708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466023145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466375946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466440075}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466793355}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466857507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467210557}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467274799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467627969}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467692160}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468044961}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468109476}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468463871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468528044}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468881510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468945725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469299137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469373545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469727464}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469791619}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470165480}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470229770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470583057}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470647307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471000538}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471064643}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471417875}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471482180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471835518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471899583}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472252540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472316797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472669919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472734296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473086998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473151160}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473504578}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473568778}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473921885}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473986187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474339270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474413567}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474767399}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474832051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475185488}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475249721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475604535}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475669256}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476023135}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476087360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476440828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476505035}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476858303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476922911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477276116}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477340469}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477693989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477758195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478111617}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478175903}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478240038}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478593899}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478658027}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479011251}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479075532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479438893}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479503764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479856940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479921119}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480295972}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480360098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480712989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480777192}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481130559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481194678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481547270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481611464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481964224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482028325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482381459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482445617}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482798706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482862822}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483215118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483279171}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483632068}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483696146}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484048253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484112503}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484479786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484544453}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484898500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484962656}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485316190}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485380427}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485735629}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485799905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486153395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486219526}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486572720}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486636890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486990467}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487054631}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487407891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487472157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487825486}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487889664}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488242367}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488306909}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488660054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488724126}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489077155}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489141352}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489494854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489569397}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489922824}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489987019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490360933}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490425115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490777746}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490841785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491195034}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491259127}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491611982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491676122}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492029223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492093234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492445979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492510096}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492862831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492927139}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493279482}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493343544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493696774}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493760837}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494113599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494177739}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494530754}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494604970}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494958424}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495022882}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495375877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495439936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495794690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495858866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496212497}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496276673}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496629681}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496693837}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497046955}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497111437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497464433}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497528543}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497881979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497946096}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498299101}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498363301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498716665}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498780701}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499133343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499197786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499550919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499624881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499978326}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500062812}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500416565}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500480670}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500833803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500897940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501251076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501315115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501667683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501731757}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502085020}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502149004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502501961}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502566024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502919197}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502983220}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503335839}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503399868}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503752595}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503816875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504171354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504235344}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504588277}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504652262}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505015975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505080100}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505433527}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505497550}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505852055}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505916157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506268994}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506333101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506685505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506749534}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507102830}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507166892}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507519708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507583777}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507936755}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508000799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508353238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508417552}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508770437}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508834404}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509187128}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509251193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509604389}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509668487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510050803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510115059}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510468271}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510532591}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510884920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510948829}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511301849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511365771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511718332}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511782383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512135148}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512199022}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512551153}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512615443}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512967981}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513031902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513384198}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513448155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513801184}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513865133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514217599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514281593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514633933}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514698214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515061586}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515125684}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515478926}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515542874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515897218}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515961277}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516314420}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516378383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516730410}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516794714}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517147369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517211362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517564014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517627924}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517981588}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518045617}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518397979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518461936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518814522}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518878752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519231104}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519295062}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519648019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519711956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520094219}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520158243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520511877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520575852}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520928765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520992848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521345656}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521409940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521764200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521828253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522181677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522245656}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522598469}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522662579}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523015710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523079695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523431811}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523496185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523848998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523913009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524265739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524329675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524682720}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524746695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525110430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525174507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525527267}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525591578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525945404}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526009472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526362333}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526426306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526778892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526842942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527195854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527259860}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527612002}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527676364}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528028866}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528092889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528445559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528509616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528862810}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528926818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529279447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529343536}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529696140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529760523}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530179076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530243537}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530597372}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530661532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531014679}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531078831}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531432345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531496488}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531849448}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531913627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532266767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532331177}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532683859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532748023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533101408}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533165584}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533518365}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533582529}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533935995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534000118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534352817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534417299}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534770259}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534834384}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535197516}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535261545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535616143}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535680527}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536033268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536097429}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536450294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536514479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536866642}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536930849}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537283722}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537347862}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537700502}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537764657}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538117563}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538181658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538534035}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538598226}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538950812}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539015081}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539367349}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539431451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539786249}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539850389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540243328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540307564}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540661465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540725743}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541078830}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541143126}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541496060}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541560280}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541913241}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541977480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542330865}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542395089}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542748079}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542812357}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543165515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543229778}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543582076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543646525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543999461}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544063697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544416544}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544480678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544833823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544898078}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545261392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545325660}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545680396}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545744854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546097703}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546161915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546515286}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546579528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546932416}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546996817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547350253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547414447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547767186}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547831739}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548184645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548248875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548601854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548666054}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549019547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549083783}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549436841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549501110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549854097}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549918611}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550301568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550365687}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550718782}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550782817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551135471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551199528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551552521}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551616559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551968995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552033132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552385560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552449804}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552801989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552866051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553218946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553282987}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553635708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553699791}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554052620}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554116679}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554468669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554533115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554885464}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554949532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555314328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555378484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555733318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555797390}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556150335}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556214514}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556567636}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556631734}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556984185}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557048257}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557402891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557467049}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557820122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557884314}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558237561}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558301594}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558654129}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558718284}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559070989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559135202}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559487628}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559551720}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559904668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559968752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560353684}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560417687}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560770826}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560834883}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561187379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561251450}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561604009}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561668009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562020487}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562084471}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562437381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562501404}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562853882}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562917935}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563270608}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563334742}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563686819}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563751061}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564103614}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564167635}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564520340}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564584313}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564937308}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565001398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565364015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565428128}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565782233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565847355}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566199360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566263326}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566616107}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566680061}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567032381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567096428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567449239}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567513238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567865369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567929736}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 568281550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 568345855}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c4dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd47b0) = 0
6310  --- SIGBUS (Bus error) @ 0 (0) ---
6423  +++ killed by SIGBUS +++

--- On Mon, 2/23/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
From: Jeremy Fitzhardinge <jeremy@goop.org>
Subject: Re: [Xen-devel] HVM pvops failures
To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
Cc: "Andrew Lyon" <andrew.lyon@gmail.com>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
Date: Monday, February 23, 2009, 7:12 PM

Ian Jackson wrote:
> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
[PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>   
>> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson
<Ian.Jackson@eu.citrix.com> wrote:
>>     
>>> These messages are not very surprising.  Is it working ?
>>>       
>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
this error:
>>     
>
> Ah.  This is rather odd.  Normally I would hope that xend would report
> an exit status.  (I haven't tried pvops with qemu.)
>
>   
Hm, I'm getting:
[2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model 
failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log

Hm, signal 7 - SIGBUS.  I wonder if

Using stub domains doesn't work either.

> I would suggest running qemu-dm under strace.  This can be done easily
> enough with a simple wrapper script, something like:
>   #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>     /usr/lib/xen/bin/qemu-dm "$@"
> and then give the name of the script as device_model in your config file.
>   
I see:

...
5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539747423}) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539837298}) = 0
5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0,
9995})
5079  read(10, "\36\0\0\0"..., 4)       = 4
5079  write(10, "\36\0\0\0"..., 4)      = 4
5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540495964}) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540591278}) = 0
5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0,
9995})
5079  read(10, "\36\0\0\0"..., 4)       = 4
5079  write(10, "\36\0\0\0"..., 4)      = 4
5079  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) =
0x7f1ad5f2b000
5079  ioctl(4, SNDCTL_DSP_STEREO, 0x7fffdfd52230) = 0
5079  --- SIGBUS (Bus error) @ 0 (0) ---
5157  +++ killed by SIGBUS +++


This mmap and ioctl is from /proc/xen/privcmd.

    J
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 1407137 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-24  0:12                   ` Jeremy Fitzhardinge
  2009-02-24 11:21                     ` HVM pvops failures (one more qemu-dm.strace obtained) Boris Derzhavets
@ 2009-02-24 11:38                     ` Boris Derzhavets
  2009-02-25 14:28                       ` Andrew Lyon
  1 sibling, 1 reply; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-24 11:38 UTC (permalink / raw)
  To: Ian Jackson, Jeremy Fitzhardinge
  Cc: Andrew Lyon, xen-devel@lists.xensource.com, Ian Campbell


[-- Attachment #1.1: Type: text/plain, Size: 2693 bytes --]

I fixed error in hvm profile and got a similar qemu-dm.strace ( /usr/lib64/.../qemu-dm).

--- On Mon, 2/23/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
From: Jeremy Fitzhardinge <jeremy@goop.org>
Subject: Re: [Xen-devel] HVM pvops failures
To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
Cc: "Andrew Lyon" <andrew.lyon@gmail.com>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
Date: Monday, February 23, 2009, 7:12 PM

Ian Jackson wrote:
> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
[PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>   
>> On Mon, Feb 23, 2009 at 2:53 PM, Ian Jackson
<Ian.Jackson@eu.citrix.com> wrote:
>>     
>>> These messages are not very surprising.  Is it working ?
>>>       
>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
this error:
>>     
>
> Ah.  This is rather odd.  Normally I would hope that xend would report
> an exit status.  (I haven't tried pvops with qemu.)
>
>   
Hm, I'm getting:
[2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model 
failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log

Hm, signal 7 - SIGBUS.  I wonder if

Using stub domains doesn't work either.

> I would suggest running qemu-dm under strace.  This can be done easily
> enough with a simple wrapper script, something like:
>   #!/bin/sh
>   set -e
>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>     /usr/lib/xen/bin/qemu-dm "$@"
> and then give the name of the script as device_model in your config file.
>   
I see:

...
5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539747423}) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539837298}) = 0
5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0,
9995})
5079  read(10, "\36\0\0\0"..., 4)       = 4
5079  write(10, "\36\0\0\0"..., 4)      = 4
5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540495964}) = 0
5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540591278}) = 0
5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0,
9995})
5079  read(10, "\36\0\0\0"..., 4)       = 4
5079  write(10, "\36\0\0\0"..., 4)      = 4
5079  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) =
0x7f1ad5f2b000
5079  ioctl(4, SNDCTL_DSP_STEREO, 0x7fffdfd52230) = 0
5079  --- SIGBUS (Bus error) @ 0 (0) ---
5157  +++ killed by SIGBUS +++


This mmap and ioctl is from /proc/xen/privcmd.

    J
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 3315 bytes --]

[-- Attachment #2: qemu-dm.strace --]
[-- Type: application/octet-stream, Size: 945008 bytes --]

6310  execve("/usr/lib64/xen/bin/qemu-dm", ["/usr/lib64/xen/bin/qemu-dm", "-d", "1", "-domain-name", "U810HVM", "-videoram", "4", "-vnc", "127.0.0.1:0", "-vncunused", "-vcpus", "1", "-boot", "d", "-acpi", "-usb", "-usbdevice", "tablet", "-net", "nic,vlan=1,macaddr=00:16:3e:0d:1e:12,model=rtl8139", "-net", "tap,vlan=1,ifname=tap1.0,bridge=eth0", "-M", "xenfv"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "_=/usr/sbin/xend", "UPSTART_JOB_ID=11", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "UPSTART_EVENT=runlevel", "XAUTHORITY=/root/.Xauthority", "previous=N", "PWD=/", "VERBOSE=no"]) = 0
6310  brk(0)                            = 0x2a0f000
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd6000
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd4000
6310  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6310  open("/etc/ld.so.cache", O_RDONLY) = 3
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6310  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fae2ecc2000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libm.so.6", O_RDONLY)  = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P>\0\0\0\0\0\0@\0\0\0\0\0\0\0\230A\10\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0000\347\7\0\0\0\0\0000\347\7\0\0\0\0\0000\347\7\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3305\10\0\0\0\0\0\3305\10\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\300=\10\0\0\0\0\0\300=(\0\0\0\0\0\300=(\0\0\0\0\0\320\2\0\0\0\0\0\0\30\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\350=\10\0\0\0\0\0\350=(\0\0\0\0\0\350=(\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0L\347\7\0\0\0\0\0L\347\7\0\0\0\0\0L\347\7\0\0\0\0\0\\\16\0\0\0\0\0\0\\\16\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491529, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=1072, st_size=542936, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2638040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e834000
6310  mprotect(0x7fae2e8b8000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2eab7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x83000) = 0x7fae2eab7000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libz.so.1", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\"\0\0\0\0\0\0@\0\0\0\0\0\0\0\0s\1\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0\34\0\33\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\244a\1\0\0\0\0\0\244a\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\240l\1\0\0\0\0\0\240l!\0\0\0\0\0\240l!\0\0\0\0\0`\5\0\0\0\0\0\0p\5\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\320m\1\0\0\0\0\0\320m!\0\0\0\0\0\320m!\0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\0T\1\0\0\0\0\0\0T\1\0\0\0\0\0\0T\1\0\0\0\0\0\324\2\0\0\0\0\0\0\324\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\240l\1\0\0\0\0\0\240l!\0\0\0\0\0\240l!\0\0\0\0\0H\3\0\0\0\0\0\0H\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0a\0\0\0f\0\0\0\0\0\0\0\0\0\0\0\31\0\0\0\r\0\0\0:\0\0\0\30\0\0\0\0\0\0\0a\0\0\0\0\0\0\0\0\0\0\0O\0\0\0\0\0\0\0P\0\0\0\0\0\0\0[\0\0\0\20\0\0\0U\0\0\0^\0\0\0C\0\0\0#\0\0\0001\0\0\0\0\0\0\0+\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2008942, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=200, st_size=96768, st_atime=2009/02/14-05:26:11, st_mtime=2008/05/06-06:09:54, st_ctime=2009/02/14-05:26:07}) = 0
6310  mmap(NULL, 2191888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e61c000
6310  mprotect(0x7fae2e633000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e832000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fae2e832000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/librt.so.1", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\"\0\0\0\0\0\0@\0\0\0\0\0\0\0\250\203\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0 \0\37\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@d\0\0\0\0\0\0@d\0\0\0\0\0\0@d\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\204t\0\0\0\0\0\0\204t\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0x}\0\0\0\0\0\0x} \0\0\0\0\0x} \0\0\0\0\0\364\4\0\0\0\0\0\0x\16\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\260}\0\0\0\0\0\0\260} \0\0\0\0\0\260} \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\\d\0\0\0\0\0\0\\d\0\0\0\0\0\0\\d\0\0\0\0\0\0D\2\0\0\0\0\0\0D\2\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491541, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=72, st_size=35752, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:32, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecc1000
6310  mmap(NULL, 2132976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e413000
6310  mprotect(0x7fae2e41b000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e61a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fae2e61a000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libpthread.so.0", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320W\0\0\0\0\0\0@\0\0\0\0\0\0\0\240t\1\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0#\0 \0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\360\27\1\0\0\0\0\0\360\27\1\0\0\0\0\0\360\27\1\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0Ld\1\0\0\0\0\0Ld\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\320k\1\0\0\0\0\0\320k!\0\0\0\0\0\320k!\0\0\0\0\0\200\6\0\0\0\0\0\0\240G\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\250m\1\0\0\0\0\0\250m!\0\0\0\0\0\250m!\0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\f\30\1\0\0\0\0\0\f\30\1\0\0\0\0\0\f\30\1\0\0\0\0\0\274\t\0\0\0\0\0\0\274\t\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491539, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=264, st_size=130214, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:37, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2208624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2e1f7000
6310  mprotect(0x7fae2e20e000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e40d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7fae2e40d000
6310  mmap(0x7fae2e40f000, 13168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2e40f000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libutil.so.1", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\"\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\35\0\34\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0P\27\0\0\0\0\0\0P\27\0\0\0\0\0\0P\27\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0x\32\0\0\0\0\0\0x\32\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\350\35\0\0\0\0\0\0\350\35 \0\0\0\0\0\350\35 \0\0\0\0\0\20\3\0\0\0\0\0\0 \3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\20\36\0\0\0\0\0\0\20\36 \0\0\0\0\0\20\36 \0\0\0\0\0\300\1\0\0\0\0\0\0\300\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0l\27\0\0\0\0\0\0l\27\0\0\0\0\0\0l\27\0\0\0\0\0\0<\0\0\0\0\0\0\0<\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491544, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=24, st_size=10560, st_atime=2009/02/14-07:15:46, st_mtime=2009/01/29-12:56:32, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2105608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2dff4000
6310  mprotect(0x7fae2dff6000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2e1f5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fae2e1f5000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libxenctrl.so.3.4", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340H\0\0\0\0\0\0@\0\0\0\0\0\0\0\250\313\5\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0&\0#\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\374L\1\0\0\0\0\0\374L\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\260\\\1\0\0\0\0\0\260\\!\0\0\0\0\0\260\\!\0\0\0\0\0\214\6\0\0\0\0\0\0000\237\2\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\0^\1\0\0\0\0\0\0^!\0\0\0\0\0\0^!\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\340+\1\0\0\0\0\0\340+\1\0\0\0\0\0\340+\1\0\0\0\0\0L\6\0\0\0\0\0\0L\6\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\260\\\1\0\0\0\0\0\260\\!\0\0\0\0\0\260\\!\0\0\0\0\0P\3\0\0\0\0\0\0P\3\0\0\0\0\0\0\1\0\0\0\0\0\0\0\305\0\0\0\346\0\0\0\274\0\0\0.\0\0\0\0\0\0\0O\0\0\0\0\0\0\0$\0\0\0\0\0\0\0\313\0\0\0\\\0\0\0\0\0\0\0\0\0\0\0\206\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0a\0\0\0\30\0\0\0\332\0\0\0T\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312722, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=792, st_size=398038, st_atime=2009/02/23-08:57:01, st_mtime=2009/02/23-07:58:31, st_ctime=2009/02/23-08:28:42}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecc0000
6310  mmap(NULL, 2358240, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2ddb4000
6310  mprotect(0x7fae2ddc9000, 2097152, PROT_NONE) = 0
6310  mmap(0x7fae2dfc9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fae2dfc9000
6310  mmap(0x7fae2dfcb000, 166880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2dfcb000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libxenguest.so.3.4", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`I\0\0\0\0\0\0@\0\0\0\0\0\0\0h\200\5\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0&\0#\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0l\241\1\0\0\0\0\0l\241\1\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\10\246\1\0\0\0\0\0\10\246!\0\0\0\0\0\10\246!\0\0\0\0\0\210\22\0\0\0\0\0\0\200\23\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\300\255\1\0\0\0\0\0\300\255!\0\0\0\0\0\300\255!\0\0\0\0\0\320\1\0\0\0\0\0\0\320\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\324\211\1\0\0\0\0\0\324\211\1\0\0\0\0\0\324\211\1\0\0\0\0\0d\4\0\0\0\0\0\0d\4\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\10\246\1\0\0\0\0\0\10\246!\0\0\0\0\0\10\246!\0\0\0\0\0\370\t\0\0\0\0\0\0\370\t\0\0\0\0\0\0\1\0\0\0\0\0\0\0\203\0\0\0\254\0\0\0\0\0\0\0\214\0\0\0000\0\0\0M\0\0\0:\0\0\0\235\0\0\0Z\0\0\0k\0\0\0>\0\0\0r\0\0\0\0\0\0\0A\0\0\0\247\0\0\0\233\0\0\0\234\0\0\0E\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312726, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=752, st_size=378254, st_atime=2009/02/23-08:57:01, st_mtime=2009/02/23-07:58:36, st_ctime=2009/02/23-08:28:42}) = 0
6310  mmap(NULL, 2210184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2db98000
6310  mprotect(0x7fae2dbb3000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2ddb2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7fae2ddb2000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libxenstore.so.3.0", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \34\0\0\0\0\0\0@\0\0\0\0\0\0\0\330\342\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0&\0#\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0tC\0\0\0\0\0\0tC\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\30M\0\0\0\0\0\0\30M \0\0\0\0\0\30M \0\0\0\0\0h\4\0\0\0\0\0\0\2204\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0 N\0\0\0\0\0\0 N \0\0\0\0\0 N \0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\224;\0\0\0\0\0\0\224;\0\0\0\0\0\0\224;\0\0\0\0\0\0\204\1\0\0\0\0\0\0\204\1\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\30M\0\0\0\0\0\0\30M \0\0\0\0\0\30M \0\0\0\0\0\350\2\0\0\0\0\0\0\350\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0C\0\0\0T\0\0\0002\0\0\0004\0\0\0\0\0\0\0H\0\0\0\0\0\0\0:\0\0\0\0\0\0\0M\0\0\0\0\0\0\0\'\0\0\0%\0\0\0G\0\0\0J\0\0\0\22\0\0\0\0\0\0\0\34\0\0\0 \0\0\0\5\0\0\0\0\0\0\0\"\0\0\0?\0\0\0,\0\0\0\17\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312734, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=144, st_size=66323, st_atime=2009/02/23-08:57:01, st_mtime=2009/02/23-07:58:37, st_ctime=2009/02/23-08:28:42}) = 0
6310  mmap(NULL, 2130344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d98f000
6310  mprotect(0x7fae2d994000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2db93000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7fae2db93000
6310  mmap(0x7fae2db95000, 8616, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2db95000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/usr/lib/libblktap.so.3.0", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\22\0\0\0\0\0\0@\0\0\0\0\0\0\0\200\237\0\0\0\0\0\0\0\0\0\0@\0008\0\6\0@\0%\0\"\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\354,\0\0\0\0\0\0\354,\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0\370-\0\0\0\0\0\0\370- \0\0\0\0\0\370- \0\0\0\0\0H\3\0\0\0\0\0\0\210#\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0 .\0\0\0\0\0\0 . \0\0\0\0\0 . \0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\260(\0\0\0\0\0\0\260(\0\0\0\0\0\0\260(\0\0\0\0\0\0\324\0\0\0\0\0\0\0\324\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0R\345td\4\0\0\0\370-\0\0\0\0\0\0\370- \0\0\0\0\0\370- \0\0\0\0\0\10\2\0\0\0\0\0\0\10\2\0\0\0\0\0\0\1\0\0\0\0\0\0\0%\0\0\0005\0\0\0\0\0\0\0\33\0\0\0 \0\0\0\36\0\0\0\"\0\0\0/\0\0\0004\0\0\0\0\0\0\0\32\0\0\0\n\0\0\0\0\0\0\0*\0\0\0\34\0\0\0\0\0\0\0\21\0\0\0\20\0\0\0000\0\0\0\31\0\0\0,\0\0\0$\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2312739, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=96, st_size=47471, st_atime=2009/02/23-08:57:25, st_mtime=2009/02/23-07:58:54, st_ctime=2009/02/23-08:28:45}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbf000
6310  mmap(NULL, 2118016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d789000
6310  mprotect(0x7fae2d78c000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2d98b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fae2d98b000
6310  mmap(0x7fae2d98d000, 4480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2d98d000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libncurses.so.5", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\6\1\0\0\0\0\0@\0\0\0\0\0\0\0@\250\3\0\0\0\0\0\0\0\0\0@\0008\0\5\0@\0\33\0\32\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0$m\3\0\0\0\0\0$m\3\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0(m\3\0\0\0\0\0(m#\0\0\0\0\0(m#\0\0\0\0\0(:\0\0\0\0\0\0X@\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\230\234\3\0\0\0\0\0\230\234#\0\0\0\0\0\230\234#\0\0\0\0\0\260\1\0\0\0\0\0\0\260\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\220\26\3\0\0\0\0\0\220\26\3\0\0\0\0\0\220\26\3\0\0\0\0\0\f\20\0\0\0\0\0\0\f\20\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0\t\2\0\0\'\2\0\0{\1\0\0\272\1\0\0\0\0\0\0J\0\0\0$\0\0\0\334\1\0\0\0\0\0\0\0\0\0\0\n\2\0\0\26\0\0\0F\1\0\0\0\0\0\0\0\0\0\0U\0\0\0\370\1\0\0\0\0\0\0\0\0\0\0\307\1\0\0M\1\0\0\204\0\0\0\237\1\0\0\0\0\0\0\0\0\0\0\321\0\0\0\24\0\0\0\234\1\0\0\376\0\0\0\266\0\0\0\0\0\0\0\270\0\0\0\0\0\0\0\247\1\0\0\34"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=2818114, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=480, st_size=241408, st_atime=2009/02/14-05:26:07, st_mtime=2008/02/23-18:39:14, st_ctime=2009/02/14-05:26:06}) = 0
6310  mmap(NULL, 2338176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d54e000
6310  mprotect(0x7fae2d585000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2d784000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x36000) = 0x7fae2d784000
6310  close(3)                          = 0
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libc.so.6", O_RDONLY)  = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2d1dc000
6310  mprotect(0x7fae2d345000, 2093056, PROT_NONE) = 0
6310  mmap(0x7fae2d544000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x168000) = 0x7fae2d544000
6310  mmap(0x7fae2d549000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fae2d549000
6310  close(3)                          = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbe000
6310  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6310  open("/lib/libdl.so.2", O_RDONLY) = 3
6310  read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\r\0\0\0\0\0\0@\0\0\0\0\0\0\0\2201\0\0\0\0\0\0\0\0\0\0@\0008\0\t\0@\0\36\0\35\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0\370\1\0\0\0\0\0\0\370\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0\220\32\0\0\0\0\0\0\220\32\0\0\0\0\0\0\220\32\0\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\37\0\0\0\0\0\0`\37\0\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0h-\0\0\0\0\0\0h- \0\0\0\0\0h- \0\0\0\0\0\30\3\0\0\0\0\0\0\230\3\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0\240-\0\0\0\0\0\0\240- \0\0\0\0\0\240- \0\0\0\0\0\360\1\0\0\0\0\0\0\360\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0008\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0P\345td\4\0\0\0\254\32\0\0\0\0\0\0\254\32\0\0\0\0\0\0\254\32\0\0\0\0\0\0\264\0\0\0\0\0\0\0\264\0\0\0\0\0\0\0\4\0\0\0\0\0\0\0Q\345td\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832
6310  fstat(3, {st_dev=makedev(8, 30), st_ino=491528, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=32, st_size=14608, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6310  mmap(NULL, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fae2cfd8000
6310  mprotect(0x7fae2cfda000, 2097152, PROT_NONE) = 0
6310  mmap(0x7fae2d1da000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fae2d1da000
6310  close(3)                          = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbd000
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecbc000
6310  arch_prctl(ARCH_SET_FS, 0x7fae2ecbc6e0) = 0
6310  mprotect(0x7fae2d1da000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2d544000, 16384, PROT_READ) = 0
6310  mprotect(0x7fae2d98b000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2db93000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2ddb2000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2dfc9000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2e1f5000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2e40d000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2e61a000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2eab7000, 4096, PROT_READ) = 0
6310  mprotect(0x6e7000, 4096, PROT_READ) = 0
6310  mprotect(0x7fae2ecd7000, 4096, PROT_READ) = 0
6310  munmap(0x7fae2ecc2000, 72620)     = 0
6310  set_tid_address(0x7fae2ecbc770)   = 6310
6310  set_robust_list(0x7fae2ecbc780, 0x18) = 0
6310  futex(0x7fff36cd5dec, 0x81 /* FUTEX_??? */, 1) = 0
6310  rt_sigaction(SIGRTMIN, {0x7fae2e1fc660, [], SA_RESTORER|SA_SIGINFO, 0x7fae2e2060f0}, NULL, 8) = 0
6310  rt_sigaction(SIGRT_1, {0x7fae2e1fc6f0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7fae2e2060f0}, NULL, 8) = 0
6310  rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
6310  getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
6310  getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_STACK, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  getrlimit(RLIMIT_DATA, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_DATA, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_RSS, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  setrlimit(RLIMIT_MEMLOCK, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "domid: 1\n", 9)         = 9
6310  write(2, "qemu: the number of cpus is 1\n", 30) = 30
6310  clock_gettime(CLOCK_MONOTONIC, {179, 140243822}) = 0
6310  brk(0)                            = 0x2a0f000
6310  brk(0x2a30000)                    = 0x2a30000
6310  open("/dev/net/tun", O_RDWR)      = 3
6310  ioctl(3, TUNSETIFF, 0x7fff36cd5390) = 0
6310  fcntl(3, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
6310  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fae2ecbc770) = 6412
6412  getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
6412  close(4)                          = -1 EBADF (Bad file descriptor)
6412  close(5)                          = -1 EBADF (Bad file descriptor)
6412  close(6)                          = -1 EBADF (Bad file descriptor)
6412  close(7)                          = -1 EBADF (Bad file descriptor)
6412  close(8)                          = -1 EBADF (Bad file descriptor)
6412  close(9)                          = -1 EBADF (Bad file descriptor)
6412  close(10)                         = -1 EBADF (Bad file descriptor)
6412  close(11)                         = -1 EBADF (Bad file descriptor)
6412  close(12)                         = -1 EBADF (Bad file descriptor)
6412  close(13)                         = -1 EBADF (Bad file descriptor)
6412  close(14)                         = -1 EBADF (Bad file descriptor)
6412  close(15)                         = -1 EBADF (Bad file descriptor)
6412  close(16)                         = -1 EBADF (Bad file descriptor)
6412  close(17)                         = 0
6412  close(18)                         = 0
6412  close(19)                         = -1 EBADF (Bad file descriptor)
6412  close(20)                         = -1 EBADF (Bad file descriptor)
6412  close(21)                         = -1 EBADF (Bad file descriptor)
6412  close(22)                         = -1 EBADF (Bad file descriptor)
6412  close(23)                         = -1 EBADF (Bad file descriptor)
6412  close(24)                         = -1 EBADF (Bad file descriptor)
6412  close(25)                         = 0
6412  close(26)                         = -1 EBADF (Bad file descriptor)
6412  close(27)                         = -1 EBADF (Bad file descriptor)
6412  close(28)                         = -1 EBADF (Bad file descriptor)
6412  close(29)                         = -1 EBADF (Bad file descriptor)
6412  close(30)                         = -1 EBADF (Bad file descriptor)
6412  close(31)                         = -1 EBADF (Bad file descriptor)
6412  close(32)                         = -1 EBADF (Bad file descriptor)
6412  close(33)                         = -1 EBADF (Bad file descriptor)
6412  close(34)                         = -1 EBADF (Bad file descriptor)
6412  close(35)                         = -1 EBADF (Bad file descriptor)
6412  close(36)                         = -1 EBADF (Bad file descriptor)
6412  close(37)                         = -1 EBADF (Bad file descriptor)
6412  close(38)                         = -1 EBADF (Bad file descriptor)
6412  close(39)                         = -1 EBADF (Bad file descriptor)
6412  close(40)                         = -1 EBADF (Bad file descriptor)
6412  close(41)                         = -1 EBADF (Bad file descriptor)
6412  close(42)                         = -1 EBADF (Bad file descriptor)
6412  close(43)                         = -1 EBADF (Bad file descriptor)
6412  close(44)                         = -1 EBADF (Bad file descriptor)
6412  close(45)                         = -1 EBADF (Bad file descriptor)
6412  close(46)                         = -1 EBADF (Bad file descriptor)
6412  close(47)                         = -1 EBADF (Bad file descriptor)
6412  close(48)                         = -1 EBADF (Bad file descriptor)
6412  close(49)                         = -1 EBADF (Bad file descriptor)
6412  close(50)                         = -1 EBADF (Bad file descriptor)
6412  close(51)                         = -1 EBADF (Bad file descriptor)
6412  close(52)                         = -1 EBADF (Bad file descriptor)
6412  close(53)                         = -1 EBADF (Bad file descriptor)
6412  close(54)                         = -1 EBADF (Bad file descriptor)
6412  close(55)                         = -1 EBADF (Bad file descriptor)
6412  close(56)                         = -1 EBADF (Bad file descriptor)
6412  close(57)                         = -1 EBADF (Bad file descriptor)
6412  close(58)                         = -1 EBADF (Bad file descriptor)
6412  close(59)                         = -1 EBADF (Bad file descriptor)
6412  close(60)                         = -1 EBADF (Bad file descriptor)
6412  close(61)                         = -1 EBADF (Bad file descriptor)
6412  close(62)                         = -1 EBADF (Bad file descriptor)
6412  close(63)                         = -1 EBADF (Bad file descriptor)
6412  close(64)                         = -1 EBADF (Bad file descriptor)
6412  close(65)                         = -1 EBADF (Bad file descriptor)
6412  close(66)                         = -1 EBADF (Bad file descriptor)
6412  close(67)                         = -1 EBADF (Bad file descriptor)
6412  close(68)                         = -1 EBADF (Bad file descriptor)
6412  close(69)                         = -1 EBADF (Bad file descriptor)
6412  close(70)                         = -1 EBADF (Bad file descriptor)
6412  close(71)                         = -1 EBADF (Bad file descriptor)
6412  close(72)                         = -1 EBADF (Bad file descriptor)
6412  close(73)                         = -1 EBADF (Bad file descriptor)
6412  close(74)                         = -1 EBADF (Bad file descriptor)
6412  close(75)                         = -1 EBADF (Bad file descriptor)
6412  close(76)                         = -1 EBADF (Bad file descriptor)
6412  close(77)                         = -1 EBADF (Bad file descriptor)
6412  close(78)                         = -1 EBADF (Bad file descriptor)
6412  close(79)                         = -1 EBADF (Bad file descriptor)
6412  close(80)                         = -1 EBADF (Bad file descriptor)
6412  close(81)                         = -1 EBADF (Bad file descriptor)
6412  close(82)                         = -1 EBADF (Bad file descriptor)
6412  close(83)                         = -1 EBADF (Bad file descriptor)
6412  close(84)                         = -1 EBADF (Bad file descriptor)
6412  close(85)                         = -1 EBADF (Bad file descriptor)
6412  close(86)                         = -1 EBADF (Bad file descriptor)
6412  close(87)                         = -1 EBADF (Bad file descriptor)
6412  close(88)                         = -1 EBADF (Bad file descriptor)
6412  close(89)                         = -1 EBADF (Bad file descriptor)
6412  close(90)                         = -1 EBADF (Bad file descriptor)
6412  close(91)                         = -1 EBADF (Bad file descriptor)
6412  close(92)                         = -1 EBADF (Bad file descriptor)
6412  close(93)                         = -1 EBADF (Bad file descriptor)
6412  close(94)                         = -1 EBADF (Bad file descriptor)
6412  close(95)                         = -1 EBADF (Bad file descriptor)
6412  close(96)                         = -1 EBADF (Bad file descriptor)
6412  close(97)                         = -1 EBADF (Bad file descriptor)
6412  close(98)                         = -1 EBADF (Bad file descriptor)
6412  close(99)                         = -1 EBADF (Bad file descriptor)
6412  close(100)                        = -1 EBADF (Bad file descriptor)
6412  close(101)                        = -1 EBADF (Bad file descriptor)
6412  close(102)                        = -1 EBADF (Bad file descriptor)
6412  close(103)                        = -1 EBADF (Bad file descriptor)
6412  close(104)                        = -1 EBADF (Bad file descriptor)
6412  close(105)                        = -1 EBADF (Bad file descriptor)
6412  close(106)                        = -1 EBADF (Bad file descriptor)
6412  close(107)                        = -1 EBADF (Bad file descriptor)
6412  close(108)                        = -1 EBADF (Bad file descriptor)
6412  close(109)                        = -1 EBADF (Bad file descriptor)
6412  close(110)                        = -1 EBADF (Bad file descriptor)
6412  close(111)                        = -1 EBADF (Bad file descriptor)
6412  close(112)                        = -1 EBADF (Bad file descriptor)
6412  close(113)                        = -1 EBADF (Bad file descriptor)
6412  close(114)                        = -1 EBADF (Bad file descriptor)
6412  close(115)                        = -1 EBADF (Bad file descriptor)
6412  close(116)                        = -1 EBADF (Bad file descriptor)
6412  close(117)                        = -1 EBADF (Bad file descriptor)
6412  close(118)                        = -1 EBADF (Bad file descriptor)
6412  close(119)                        = -1 EBADF (Bad file descriptor)
6412  close(120)                        = -1 EBADF (Bad file descriptor)
6412  close(121)                        = -1 EBADF (Bad file descriptor)
6412  close(122)                        = -1 EBADF (Bad file descriptor)
6412  close(123)                        = -1 EBADF (Bad file descriptor)
6412  close(124)                        = -1 EBADF (Bad file descriptor)
6412  close(125)                        = -1 EBADF (Bad file descriptor)
6412  close(126)                        = -1 EBADF (Bad file descriptor)
6412  close(127)                        = -1 EBADF (Bad file descriptor)
6412  close(128)                        = -1 EBADF (Bad file descriptor)
6412  close(129)                        = -1 EBADF (Bad file descriptor)
6412  close(130)                        = -1 EBADF (Bad file descriptor)
6412  close(131)                        = -1 EBADF (Bad file descriptor)
6412  close(132)                        = -1 EBADF (Bad file descriptor)
6412  close(133)                        = -1 EBADF (Bad file descriptor)
6412  close(134)                        = -1 EBADF (Bad file descriptor)
6412  close(135)                        = -1 EBADF (Bad file descriptor)
6412  close(136)                        = -1 EBADF (Bad file descriptor)
6412  close(137)                        = -1 EBADF (Bad file descriptor)
6412  close(138)                        = -1 EBADF (Bad file descriptor)
6412  close(139)                        = -1 EBADF (Bad file descriptor)
6412  close(140)                        = -1 EBADF (Bad file descriptor)
6412  close(141)                        = -1 EBADF (Bad file descriptor)
6412  close(142)                        = -1 EBADF (Bad file descriptor)
6412  close(143)                        = -1 EBADF (Bad file descriptor)
6412  close(144)                        = -1 EBADF (Bad file descriptor)
6412  close(145)                        = -1 EBADF (Bad file descriptor)
6412  close(146)                        = -1 EBADF (Bad file descriptor)
6412  close(147)                        = -1 EBADF (Bad file descriptor)
6412  close(148)                        = -1 EBADF (Bad file descriptor)
6412  close(149)                        = -1 EBADF (Bad file descriptor)
6412  close(150)                        = -1 EBADF (Bad file descriptor)
6412  close(151)                        = -1 EBADF (Bad file descriptor)
6412  close(152)                        = -1 EBADF (Bad file descriptor)
6412  close(153)                        = -1 EBADF (Bad file descriptor)
6412  close(154)                        = -1 EBADF (Bad file descriptor)
6412  close(155)                        = -1 EBADF (Bad file descriptor)
6412  close(156)                        = -1 EBADF (Bad file descriptor)
6412  close(157)                        = -1 EBADF (Bad file descriptor)
6412  close(158)                        = -1 EBADF (Bad file descriptor)
6412  close(159)                        = -1 EBADF (Bad file descriptor)
6412  close(160)                        = -1 EBADF (Bad file descriptor)
6412  close(161)                        = -1 EBADF (Bad file descriptor)
6412  close(162)                        = -1 EBADF (Bad file descriptor)
6412  close(163)                        = -1 EBADF (Bad file descriptor)
6412  close(164)                        = -1 EBADF (Bad file descriptor)
6412  close(165)                        = -1 EBADF (Bad file descriptor)
6412  close(166)                        = -1 EBADF (Bad file descriptor)
6412  close(167)                        = -1 EBADF (Bad file descriptor)
6412  close(168)                        = -1 EBADF (Bad file descriptor)
6412  close(169)                        = -1 EBADF (Bad file descriptor)
6412  close(170)                        = -1 EBADF (Bad file descriptor)
6412  close(171)                        = -1 EBADF (Bad file descriptor)
6412  close(172)                        = -1 EBADF (Bad file descriptor)
6412  close(173)                        = -1 EBADF (Bad file descriptor)
6412  close(174)                        = -1 EBADF (Bad file descriptor)
6412  close(175)                        = -1 EBADF (Bad file descriptor)
6412  close(176)                        = -1 EBADF (Bad file descriptor)
6412  close(177)                        = -1 EBADF (Bad file descriptor)
6412  close(178)                        = -1 EBADF (Bad file descriptor)
6412  close(179)                        = -1 EBADF (Bad file descriptor)
6412  close(180)                        = -1 EBADF (Bad file descriptor)
6412  close(181)                        = -1 EBADF (Bad file descriptor)
6412  close(182)                        = -1 EBADF (Bad file descriptor)
6412  close(183)                        = -1 EBADF (Bad file descriptor)
6412  close(184)                        = -1 EBADF (Bad file descriptor)
6412  close(185)                        = -1 EBADF (Bad file descriptor)
6412  close(186)                        = -1 EBADF (Bad file descriptor)
6412  close(187)                        = -1 EBADF (Bad file descriptor)
6412  close(188)                        = -1 EBADF (Bad file descriptor)
6412  close(189)                        = -1 EBADF (Bad file descriptor)
6412  close(190)                        = -1 EBADF (Bad file descriptor)
6412  close(191)                        = -1 EBADF (Bad file descriptor)
6412  close(192)                        = -1 EBADF (Bad file descriptor)
6412  close(193)                        = -1 EBADF (Bad file descriptor)
6412  close(194)                        = -1 EBADF (Bad file descriptor)
6412  close(195)                        = -1 EBADF (Bad file descriptor)
6412  close(196)                        = -1 EBADF (Bad file descriptor)
6412  close(197)                        = -1 EBADF (Bad file descriptor)
6412  close(198)                        = -1 EBADF (Bad file descriptor)
6412  close(199)                        = -1 EBADF (Bad file descriptor)
6412  close(200)                        = -1 EBADF (Bad file descriptor)
6412  close(201)                        = -1 EBADF (Bad file descriptor)
6412  close(202)                        = -1 EBADF (Bad file descriptor)
6412  close(203)                        = -1 EBADF (Bad file descriptor)
6412  close(204)                        = -1 EBADF (Bad file descriptor)
6412  close(205)                        = -1 EBADF (Bad file descriptor)
6412  close(206)                        = -1 EBADF (Bad file descriptor)
6412  close(207)                        = -1 EBADF (Bad file descriptor)
6412  close(208)                        = -1 EBADF (Bad file descriptor)
6412  close(209)                        = -1 EBADF (Bad file descriptor)
6412  close(210)                        = -1 EBADF (Bad file descriptor)
6412  close(211)                        = -1 EBADF (Bad file descriptor)
6412  close(212)                        = -1 EBADF (Bad file descriptor)
6412  close(213)                        = -1 EBADF (Bad file descriptor)
6412  close(214)                        = -1 EBADF (Bad file descriptor)
6412  close(215)                        = -1 EBADF (Bad file descriptor)
6412  close(216)                        = -1 EBADF (Bad file descriptor)
6412  close(217)                        = -1 EBADF (Bad file descriptor)
6412  close(218)                        = -1 EBADF (Bad file descriptor)
6412  close(219)                        = -1 EBADF (Bad file descriptor)
6412  close(220)                        = -1 EBADF (Bad file descriptor)
6412  close(221)                        = -1 EBADF (Bad file descriptor)
6412  close(222)                        = -1 EBADF (Bad file descriptor)
6412  close(223)                        = -1 EBADF (Bad file descriptor)
6412  close(224)                        = -1 EBADF (Bad file descriptor)
6412  close(225)                        = -1 EBADF (Bad file descriptor)
6412  close(226)                        = -1 EBADF (Bad file descriptor)
6412  close(227)                        = -1 EBADF (Bad file descriptor)
6412  close(228)                        = -1 EBADF (Bad file descriptor)
6412  close(229)                        = -1 EBADF (Bad file descriptor)
6412  close(230)                        = -1 EBADF (Bad file descriptor)
6412  close(231)                        = -1 EBADF (Bad file descriptor)
6412  close(232)                        = -1 EBADF (Bad file descriptor)
6412  close(233)                        = -1 EBADF (Bad file descriptor)
6412  close(234)                        = -1 EBADF (Bad file descriptor)
6412  close(235)                        = -1 EBADF (Bad file descriptor)
6412  close(236)                        = -1 EBADF (Bad file descriptor)
6412  close(237)                        = -1 EBADF (Bad file descriptor)
6412  close(238)                        = -1 EBADF (Bad file descriptor)
6412  close(239)                        = -1 EBADF (Bad file descriptor)
6412  close(240)                        = -1 EBADF (Bad file descriptor)
6412  close(241)                        = -1 EBADF (Bad file descriptor)
6412  close(242)                        = -1 EBADF (Bad file descriptor)
6412  close(243)                        = -1 EBADF (Bad file descriptor)
6412  close(244)                        = -1 EBADF (Bad file descriptor)
6412  close(245)                        = -1 EBADF (Bad file descriptor)
6412  close(246)                        = -1 EBADF (Bad file descriptor)
6412  close(247)                        = -1 EBADF (Bad file descriptor)
6412  close(248)                        = -1 EBADF (Bad file descriptor)
6412  close(249)                        = -1 EBADF (Bad file descriptor)
6412  close(250)                        = -1 EBADF (Bad file descriptor)
6412  close(251)                        = -1 EBADF (Bad file descriptor)
6412  close(252)                        = -1 EBADF (Bad file descriptor)
6412  close(253)                        = -1 EBADF (Bad file descriptor)
6412  close(254)                        = -1 EBADF (Bad file descriptor)
6412  close(255)                        = -1 EBADF (Bad file descriptor)
6412  close(256)                        = -1 EBADF (Bad file descriptor)
6412  close(257)                        = -1 EBADF (Bad file descriptor)
6412  close(258)                        = -1 EBADF (Bad file descriptor)
6412  close(259)                        = -1 EBADF (Bad file descriptor)
6412  close(260)                        = -1 EBADF (Bad file descriptor)
6412  close(261)                        = -1 EBADF (Bad file descriptor)
6412  close(262)                        = -1 EBADF (Bad file descriptor)
6412  close(263)                        = -1 EBADF (Bad file descriptor)
6412  close(264)                        = -1 EBADF (Bad file descriptor)
6412  close(265)                        = -1 EBADF (Bad file descriptor)
6412  close(266)                        = -1 EBADF (Bad file descriptor)
6412  close(267)                        = -1 EBADF (Bad file descriptor)
6412  close(268)                        = -1 EBADF (Bad file descriptor)
6412  close(269)                        = -1 EBADF (Bad file descriptor)
6412  close(270)                        = -1 EBADF (Bad file descriptor)
6412  close(271)                        = -1 EBADF (Bad file descriptor)
6412  close(272)                        = -1 EBADF (Bad file descriptor)
6412  close(273)                        = -1 EBADF (Bad file descriptor)
6412  close(274)                        = -1 EBADF (Bad file descriptor)
6412  close(275)                        = -1 EBADF (Bad file descriptor)
6412  close(276)                        = -1 EBADF (Bad file descriptor)
6412  close(277)                        = -1 EBADF (Bad file descriptor)
6412  close(278)                        = -1 EBADF (Bad file descriptor)
6412  close(279)                        = -1 EBADF (Bad file descriptor)
6412  close(280)                        = -1 EBADF (Bad file descriptor)
6412  close(281)                        = -1 EBADF (Bad file descriptor)
6412  close(282)                        = -1 EBADF (Bad file descriptor)
6412  close(283)                        = -1 EBADF (Bad file descriptor)
6412  close(284)                        = -1 EBADF (Bad file descriptor)
6412  close(285)                        = -1 EBADF (Bad file descriptor)
6412  close(286)                        = -1 EBADF (Bad file descriptor)
6412  close(287)                        = -1 EBADF (Bad file descriptor)
6412  close(288)                        = -1 EBADF (Bad file descriptor)
6412  close(289)                        = -1 EBADF (Bad file descriptor)
6412  close(290)                        = -1 EBADF (Bad file descriptor)
6412  close(291)                        = -1 EBADF (Bad file descriptor)
6412  close(292)                        = -1 EBADF (Bad file descriptor)
6412  close(293)                        = -1 EBADF (Bad file descriptor)
6412  close(294)                        = -1 EBADF (Bad file descriptor)
6412  close(295)                        = -1 EBADF (Bad file descriptor)
6412  close(296)                        = -1 EBADF (Bad file descriptor)
6412  close(297)                        = -1 EBADF (Bad file descriptor)
6412  close(298)                        = -1 EBADF (Bad file descriptor)
6412  close(299)                        = -1 EBADF (Bad file descriptor)
6412  close(300)                        = -1 EBADF (Bad file descriptor)
6412  close(301)                        = -1 EBADF (Bad file descriptor)
6412  close(302)                        = -1 EBADF (Bad file descriptor)
6412  close(303)                        = -1 EBADF (Bad file descriptor)
6412  close(304)                        = -1 EBADF (Bad file descriptor)
6412  close(305)                        = -1 EBADF (Bad file descriptor)
6412  close(306)                        = -1 EBADF (Bad file descriptor)
6412  close(307)                        = -1 EBADF (Bad file descriptor)
6412  close(308)                        = -1 EBADF (Bad file descriptor)
6412  close(309)                        = -1 EBADF (Bad file descriptor)
6412  close(310)                        = -1 EBADF (Bad file descriptor)
6412  close(311)                        = -1 EBADF (Bad file descriptor)
6412  close(312)                        = -1 EBADF (Bad file descriptor)
6412  close(313)                        = -1 EBADF (Bad file descriptor)
6412  close(314)                        = -1 EBADF (Bad file descriptor)
6412  close(315)                        = -1 EBADF (Bad file descriptor)
6412  close(316)                        = -1 EBADF (Bad file descriptor)
6412  close(317)                        = -1 EBADF (Bad file descriptor)
6412  close(318)                        = -1 EBADF (Bad file descriptor)
6412  close(319)                        = -1 EBADF (Bad file descriptor)
6412  close(320)                        = -1 EBADF (Bad file descriptor)
6412  close(321)                        = -1 EBADF (Bad file descriptor)
6412  close(322)                        = -1 EBADF (Bad file descriptor)
6412  close(323)                        = -1 EBADF (Bad file descriptor)
6412  close(324)                        = -1 EBADF (Bad file descriptor)
6412  close(325)                        = -1 EBADF (Bad file descriptor)
6412  close(326)                        = -1 EBADF (Bad file descriptor)
6412  close(327)                        = -1 EBADF (Bad file descriptor)
6412  close(328)                        = -1 EBADF (Bad file descriptor)
6412  close(329)                        = -1 EBADF (Bad file descriptor)
6412  close(330)                        = -1 EBADF (Bad file descriptor)
6412  close(331)                        = -1 EBADF (Bad file descriptor)
6412  close(332)                        = -1 EBADF (Bad file descriptor)
6412  close(333)                        = -1 EBADF (Bad file descriptor)
6412  close(334)                        = -1 EBADF (Bad file descriptor)
6412  close(335)                        = -1 EBADF (Bad file descriptor)
6412  close(336)                        = -1 EBADF (Bad file descriptor)
6412  close(337)                        = -1 EBADF (Bad file descriptor)
6412  close(338)                        = -1 EBADF (Bad file descriptor)
6412  close(339)                        = -1 EBADF (Bad file descriptor)
6412  close(340)                        = -1 EBADF (Bad file descriptor)
6412  close(341)                        = -1 EBADF (Bad file descriptor)
6412  close(342)                        = -1 EBADF (Bad file descriptor)
6412  close(343)                        = -1 EBADF (Bad file descriptor)
6412  close(344)                        = -1 EBADF (Bad file descriptor)
6412  close(345)                        = -1 EBADF (Bad file descriptor)
6412  close(346)                        = -1 EBADF (Bad file descriptor)
6412  close(347)                        = -1 EBADF (Bad file descriptor)
6412  close(348)                        = -1 EBADF (Bad file descriptor)
6412  close(349)                        = -1 EBADF (Bad file descriptor)
6412  close(350)                        = -1 EBADF (Bad file descriptor)
6412  close(351)                        = -1 EBADF (Bad file descriptor)
6412  close(352)                        = -1 EBADF (Bad file descriptor)
6412  close(353)                        = -1 EBADF (Bad file descriptor)
6412  close(354)                        = -1 EBADF (Bad file descriptor)
6412  close(355)                        = -1 EBADF (Bad file descriptor)
6412  close(356)                        = -1 EBADF (Bad file descriptor)
6412  close(357)                        = -1 EBADF (Bad file descriptor)
6412  close(358)                        = -1 EBADF (Bad file descriptor)
6412  close(359)                        = -1 EBADF (Bad file descriptor)
6412  close(360)                        = -1 EBADF (Bad file descriptor)
6412  close(361)                        = -1 EBADF (Bad file descriptor)
6412  close(362)                        = -1 EBADF (Bad file descriptor)
6412  close(363)                        = -1 EBADF (Bad file descriptor)
6412  close(364)                        = -1 EBADF (Bad file descriptor)
6412  close(365)                        = -1 EBADF (Bad file descriptor)
6412  close(366)                        = -1 EBADF (Bad file descriptor)
6412  close(367)                        = -1 EBADF (Bad file descriptor)
6412  close(368)                        = -1 EBADF (Bad file descriptor)
6412  close(369)                        = -1 EBADF (Bad file descriptor)
6412  close(370)                        = -1 EBADF (Bad file descriptor)
6412  close(371)                        = -1 EBADF (Bad file descriptor)
6412  close(372)                        = -1 EBADF (Bad file descriptor)
6412  close(373)                        = -1 EBADF (Bad file descriptor)
6412  close(374)                        = -1 EBADF (Bad file descriptor)
6412  close(375)                        = -1 EBADF (Bad file descriptor)
6412  close(376)                        = -1 EBADF (Bad file descriptor)
6412  close(377)                        = -1 EBADF (Bad file descriptor)
6412  close(378)                        = -1 EBADF (Bad file descriptor)
6412  close(379)                        = -1 EBADF (Bad file descriptor)
6412  close(380)                        = -1 EBADF (Bad file descriptor)
6412  close(381)                        = -1 EBADF (Bad file descriptor)
6412  close(382)                        = -1 EBADF (Bad file descriptor)
6412  close(383)                        = -1 EBADF (Bad file descriptor)
6412  close(384)                        = -1 EBADF (Bad file descriptor)
6412  close(385)                        = -1 EBADF (Bad file descriptor)
6412  close(386)                        = -1 EBADF (Bad file descriptor)
6412  close(387)                        = -1 EBADF (Bad file descriptor)
6412  close(388)                        = -1 EBADF (Bad file descriptor)
6412  close(389)                        = -1 EBADF (Bad file descriptor)
6412  close(390)                        = -1 EBADF (Bad file descriptor)
6412  close(391)                        = -1 EBADF (Bad file descriptor)
6412  close(392)                        = -1 EBADF (Bad file descriptor)
6412  close(393)                        = -1 EBADF (Bad file descriptor)
6412  close(394)                        = -1 EBADF (Bad file descriptor)
6412  close(395)                        = -1 EBADF (Bad file descriptor)
6412  close(396)                        = -1 EBADF (Bad file descriptor)
6412  close(397)                        = -1 EBADF (Bad file descriptor)
6412  close(398)                        = -1 EBADF (Bad file descriptor)
6412  close(399)                        = -1 EBADF (Bad file descriptor)
6412  close(400)                        = -1 EBADF (Bad file descriptor)
6412  close(401)                        = -1 EBADF (Bad file descriptor)
6412  close(402)                        = -1 EBADF (Bad file descriptor)
6412  close(403)                        = -1 EBADF (Bad file descriptor)
6412  close(404)                        = -1 EBADF (Bad file descriptor)
6412  close(405)                        = -1 EBADF (Bad file descriptor)
6412  close(406)                        = -1 EBADF (Bad file descriptor)
6412  close(407)                        = -1 EBADF (Bad file descriptor)
6412  close(408)                        = -1 EBADF (Bad file descriptor)
6412  close(409)                        = -1 EBADF (Bad file descriptor)
6412  close(410)                        = -1 EBADF (Bad file descriptor)
6412  close(411)                        = -1 EBADF (Bad file descriptor)
6412  close(412)                        = -1 EBADF (Bad file descriptor)
6412  close(413)                        = -1 EBADF (Bad file descriptor)
6412  close(414)                        = -1 EBADF (Bad file descriptor)
6412  close(415)                        = -1 EBADF (Bad file descriptor)
6412  close(416)                        = -1 EBADF (Bad file descriptor)
6412  close(417)                        = -1 EBADF (Bad file descriptor)
6412  close(418)                        = -1 EBADF (Bad file descriptor)
6412  close(419)                        = -1 EBADF (Bad file descriptor)
6412  close(420)                        = -1 EBADF (Bad file descriptor)
6412  close(421)                        = -1 EBADF (Bad file descriptor)
6412  close(422)                        = -1 EBADF (Bad file descriptor)
6412  close(423)                        = -1 EBADF (Bad file descriptor)
6412  close(424)                        = -1 EBADF (Bad file descriptor)
6412  close(425)                        = -1 EBADF (Bad file descriptor)
6412  close(426)                        = -1 EBADF (Bad file descriptor)
6412  close(427)                        = -1 EBADF (Bad file descriptor)
6412  close(428)                        = -1 EBADF (Bad file descriptor)
6412  close(429)                        = -1 EBADF (Bad file descriptor)
6412  close(430)                        = -1 EBADF (Bad file descriptor)
6412  close(431)                        = -1 EBADF (Bad file descriptor)
6412  close(432)                        = -1 EBADF (Bad file descriptor)
6412  close(433)                        = -1 EBADF (Bad file descriptor)
6412  close(434)                        = -1 EBADF (Bad file descriptor)
6412  close(435)                        = -1 EBADF (Bad file descriptor)
6412  close(436)                        = -1 EBADF (Bad file descriptor)
6412  close(437)                        = -1 EBADF (Bad file descriptor)
6412  close(438)                        = -1 EBADF (Bad file descriptor)
6412  close(439)                        = -1 EBADF (Bad file descriptor)
6412  close(440)                        = -1 EBADF (Bad file descriptor)
6412  close(441)                        = -1 EBADF (Bad file descriptor)
6412  close(442)                        = -1 EBADF (Bad file descriptor)
6412  close(443)                        = -1 EBADF (Bad file descriptor)
6412  close(444)                        = -1 EBADF (Bad file descriptor)
6412  close(445)                        = -1 EBADF (Bad file descriptor)
6412  close(446)                        = -1 EBADF (Bad file descriptor)
6412  close(447)                        = -1 EBADF (Bad file descriptor)
6412  close(448)                        = -1 EBADF (Bad file descriptor)
6412  close(449)                        = -1 EBADF (Bad file descriptor)
6412  close(450)                        = -1 EBADF (Bad file descriptor)
6412  close(451)                        = -1 EBADF (Bad file descriptor)
6412  close(452)                        = -1 EBADF (Bad file descriptor)
6412  close(453)                        = -1 EBADF (Bad file descriptor)
6412  close(454)                        = -1 EBADF (Bad file descriptor)
6412  close(455)                        = -1 EBADF (Bad file descriptor)
6412  close(456)                        = -1 EBADF (Bad file descriptor)
6412  close(457)                        = -1 EBADF (Bad file descriptor)
6412  close(458)                        = -1 EBADF (Bad file descriptor)
6412  close(459)                        = -1 EBADF (Bad file descriptor)
6412  close(460)                        = -1 EBADF (Bad file descriptor)
6412  close(461)                        = -1 EBADF (Bad file descriptor)
6412  close(462)                        = -1 EBADF (Bad file descriptor)
6412  close(463)                        = -1 EBADF (Bad file descriptor)
6412  close(464)                        = -1 EBADF (Bad file descriptor)
6412  close(465)                        = -1 EBADF (Bad file descriptor)
6412  close(466)                        = -1 EBADF (Bad file descriptor)
6412  close(467)                        = -1 EBADF (Bad file descriptor)
6412  close(468)                        = -1 EBADF (Bad file descriptor)
6412  close(469)                        = -1 EBADF (Bad file descriptor)
6412  close(470)                        = -1 EBADF (Bad file descriptor)
6412  close(471)                        = -1 EBADF (Bad file descriptor)
6412  close(472)                        = -1 EBADF (Bad file descriptor)
6412  close(473)                        = -1 EBADF (Bad file descriptor)
6412  close(474)                        = -1 EBADF (Bad file descriptor)
6412  close(475)                        = -1 EBADF (Bad file descriptor)
6412  close(476)                        = -1 EBADF (Bad file descriptor)
6412  close(477)                        = -1 EBADF (Bad file descriptor)
6412  close(478)                        = -1 EBADF (Bad file descriptor)
6412  close(479)                        = -1 EBADF (Bad file descriptor)
6412  close(480)                        = -1 EBADF (Bad file descriptor)
6412  close(481)                        = -1 EBADF (Bad file descriptor)
6412  close(482)                        = -1 EBADF (Bad file descriptor)
6412  close(483)                        = -1 EBADF (Bad file descriptor)
6412  close(484)                        = -1 EBADF (Bad file descriptor)
6412  close(485)                        = -1 EBADF (Bad file descriptor)
6412  close(486)                        = -1 EBADF (Bad file descriptor)
6412  close(487)                        = -1 EBADF (Bad file descriptor)
6412  close(488)                        = -1 EBADF (Bad file descriptor)
6412  close(489)                        = -1 EBADF (Bad file descriptor)
6412  close(490)                        = -1 EBADF (Bad file descriptor)
6412  close(491)                        = -1 EBADF (Bad file descriptor)
6412  close(492)                        = -1 EBADF (Bad file descriptor)
6412  close(493)                        = -1 EBADF (Bad file descriptor)
6412  close(494)                        = -1 EBADF (Bad file descriptor)
6412  close(495)                        = -1 EBADF (Bad file descriptor)
6412  close(496)                        = -1 EBADF (Bad file descriptor)
6412  close(497)                        = -1 EBADF (Bad file descriptor)
6412  close(498)                        = -1 EBADF (Bad file descriptor)
6412  close(499)                        = -1 EBADF (Bad file descriptor)
6412  close(500)                        = -1 EBADF (Bad file descriptor)
6412  close(501)                        = -1 EBADF (Bad file descriptor)
6412  close(502)                        = -1 EBADF (Bad file descriptor)
6412  close(503)                        = -1 EBADF (Bad file descriptor)
6412  close(504)                        = -1 EBADF (Bad file descriptor)
6412  close(505)                        = -1 EBADF (Bad file descriptor)
6412  close(506)                        = -1 EBADF (Bad file descriptor)
6412  close(507)                        = -1 EBADF (Bad file descriptor)
6412  close(508)                        = -1 EBADF (Bad file descriptor)
6412  close(509)                        = -1 EBADF (Bad file descriptor)
6412  close(510)                        = -1 EBADF (Bad file descriptor)
6412  close(511)                        = -1 EBADF (Bad file descriptor)
6412  close(512)                        = -1 EBADF (Bad file descriptor)
6412  close(513)                        = -1 EBADF (Bad file descriptor)
6412  close(514)                        = -1 EBADF (Bad file descriptor)
6412  close(515)                        = -1 EBADF (Bad file descriptor)
6412  close(516)                        = -1 EBADF (Bad file descriptor)
6412  close(517)                        = -1 EBADF (Bad file descriptor)
6412  close(518)                        = -1 EBADF (Bad file descriptor)
6412  close(519)                        = -1 EBADF (Bad file descriptor)
6412  close(520)                        = -1 EBADF (Bad file descriptor)
6412  close(521)                        = -1 EBADF (Bad file descriptor)
6412  close(522)                        = -1 EBADF (Bad file descriptor)
6412  close(523)                        = -1 EBADF (Bad file descriptor)
6412  close(524)                        = -1 EBADF (Bad file descriptor)
6412  close(525)                        = -1 EBADF (Bad file descriptor)
6412  close(526)                        = -1 EBADF (Bad file descriptor)
6412  close(527)                        = -1 EBADF (Bad file descriptor)
6412  close(528)                        = -1 EBADF (Bad file descriptor)
6412  close(529)                        = -1 EBADF (Bad file descriptor)
6412  close(530)                        = -1 EBADF (Bad file descriptor)
6412  close(531)                        = -1 EBADF (Bad file descriptor)
6412  close(532)                        = -1 EBADF (Bad file descriptor)
6412  close(533)                        = -1 EBADF (Bad file descriptor)
6412  close(534)                        = -1 EBADF (Bad file descriptor)
6412  close(535)                        = -1 EBADF (Bad file descriptor)
6412  close(536)                        = -1 EBADF (Bad file descriptor)
6412  close(537)                        = -1 EBADF (Bad file descriptor)
6412  close(538)                        = -1 EBADF (Bad file descriptor)
6412  close(539)                        = -1 EBADF (Bad file descriptor)
6412  close(540)                        = -1 EBADF (Bad file descriptor)
6412  close(541)                        = -1 EBADF (Bad file descriptor)
6412  close(542)                        = -1 EBADF (Bad file descriptor)
6412  close(543)                        = -1 EBADF (Bad file descriptor)
6412  close(544)                        = -1 EBADF (Bad file descriptor)
6412  close(545)                        = -1 EBADF (Bad file descriptor)
6412  close(546)                        = -1 EBADF (Bad file descriptor)
6412  close(547)                        = -1 EBADF (Bad file descriptor)
6412  close(548)                        = -1 EBADF (Bad file descriptor)
6412  close(549)                        = -1 EBADF (Bad file descriptor)
6412  close(550)                        = -1 EBADF (Bad file descriptor)
6412  close(551)                        = -1 EBADF (Bad file descriptor)
6412  close(552)                        = -1 EBADF (Bad file descriptor)
6412  close(553)                        = -1 EBADF (Bad file descriptor)
6412  close(554)                        = -1 EBADF (Bad file descriptor)
6412  close(555)                        = -1 EBADF (Bad file descriptor)
6412  close(556)                        = -1 EBADF (Bad file descriptor)
6412  close(557)                        = -1 EBADF (Bad file descriptor)
6412  close(558)                        = -1 EBADF (Bad file descriptor)
6412  close(559)                        = -1 EBADF (Bad file descriptor)
6412  close(560)                        = -1 EBADF (Bad file descriptor)
6412  close(561)                        = -1 EBADF (Bad file descriptor)
6412  close(562)                        = -1 EBADF (Bad file descriptor)
6412  close(563)                        = -1 EBADF (Bad file descriptor)
6412  close(564)                        = -1 EBADF (Bad file descriptor)
6412  close(565)                        = -1 EBADF (Bad file descriptor)
6412  close(566)                        = -1 EBADF (Bad file descriptor)
6412  close(567)                        = -1 EBADF (Bad file descriptor)
6412  close(568)                        = -1 EBADF (Bad file descriptor)
6412  close(569)                        = -1 EBADF (Bad file descriptor)
6412  close(570)                        = -1 EBADF (Bad file descriptor)
6412  close(571)                        = -1 EBADF (Bad file descriptor)
6412  close(572)                        = -1 EBADF (Bad file descriptor)
6412  close(573)                        = -1 EBADF (Bad file descriptor)
6412  close(574)                        = -1 EBADF (Bad file descriptor)
6412  close(575)                        = -1 EBADF (Bad file descriptor)
6412  close(576)                        = -1 EBADF (Bad file descriptor)
6412  close(577)                        = -1 EBADF (Bad file descriptor)
6412  close(578)                        = -1 EBADF (Bad file descriptor)
6412  close(579)                        = -1 EBADF (Bad file descriptor)
6412  close(580)                        = -1 EBADF (Bad file descriptor)
6412  close(581)                        = -1 EBADF (Bad file descriptor)
6412  close(582)                        = -1 EBADF (Bad file descriptor)
6412  close(583)                        = -1 EBADF (Bad file descriptor)
6412  close(584)                        = -1 EBADF (Bad file descriptor)
6412  close(585)                        = -1 EBADF (Bad file descriptor)
6412  close(586)                        = -1 EBADF (Bad file descriptor)
6412  close(587)                        = -1 EBADF (Bad file descriptor)
6412  close(588)                        = -1 EBADF (Bad file descriptor)
6412  close(589)                        = -1 EBADF (Bad file descriptor)
6412  close(590)                        = -1 EBADF (Bad file descriptor)
6412  close(591)                        = -1 EBADF (Bad file descriptor)
6412  close(592)                        = -1 EBADF (Bad file descriptor)
6412  close(593)                        = -1 EBADF (Bad file descriptor)
6412  close(594)                        = -1 EBADF (Bad file descriptor)
6412  close(595)                        = -1 EBADF (Bad file descriptor)
6412  close(596)                        = -1 EBADF (Bad file descriptor)
6412  close(597)                        = -1 EBADF (Bad file descriptor)
6412  close(598)                        = -1 EBADF (Bad file descriptor)
6412  close(599)                        = -1 EBADF (Bad file descriptor)
6412  close(600)                        = -1 EBADF (Bad file descriptor)
6412  close(601)                        = -1 EBADF (Bad file descriptor)
6412  close(602)                        = -1 EBADF (Bad file descriptor)
6412  close(603)                        = -1 EBADF (Bad file descriptor)
6412  close(604)                        = -1 EBADF (Bad file descriptor)
6412  close(605)                        = -1 EBADF (Bad file descriptor)
6412  close(606)                        = -1 EBADF (Bad file descriptor)
6412  close(607)                        = -1 EBADF (Bad file descriptor)
6412  close(608)                        = -1 EBADF (Bad file descriptor)
6412  close(609)                        = -1 EBADF (Bad file descriptor)
6412  close(610)                        = -1 EBADF (Bad file descriptor)
6412  close(611)                        = -1 EBADF (Bad file descriptor)
6412  close(612)                        = -1 EBADF (Bad file descriptor)
6412  close(613)                        = -1 EBADF (Bad file descriptor)
6412  close(614)                        = -1 EBADF (Bad file descriptor)
6412  close(615)                        = -1 EBADF (Bad file descriptor)
6412  close(616)                        = -1 EBADF (Bad file descriptor)
6412  close(617)                        = -1 EBADF (Bad file descriptor)
6412  close(618)                        = -1 EBADF (Bad file descriptor)
6412  close(619)                        = -1 EBADF (Bad file descriptor)
6412  close(620)                        = -1 EBADF (Bad file descriptor)
6412  close(621)                        = -1 EBADF (Bad file descriptor)
6412  close(622)                        = -1 EBADF (Bad file descriptor)
6412  close(623)                        = -1 EBADF (Bad file descriptor)
6412  close(624)                        = -1 EBADF (Bad file descriptor)
6412  close(625)                        = -1 EBADF (Bad file descriptor)
6412  close(626)                        = -1 EBADF (Bad file descriptor)
6412  close(627)                        = -1 EBADF (Bad file descriptor)
6412  close(628)                        = -1 EBADF (Bad file descriptor)
6412  close(629)                        = -1 EBADF (Bad file descriptor)
6412  close(630)                        = -1 EBADF (Bad file descriptor)
6412  close(631)                        = -1 EBADF (Bad file descriptor)
6412  close(632)                        = -1 EBADF (Bad file descriptor)
6412  close(633)                        = -1 EBADF (Bad file descriptor)
6412  close(634)                        = -1 EBADF (Bad file descriptor)
6412  close(635)                        = -1 EBADF (Bad file descriptor)
6412  close(636)                        = -1 EBADF (Bad file descriptor)
6412  close(637)                        = -1 EBADF (Bad file descriptor)
6412  close(638)                        = -1 EBADF (Bad file descriptor)
6412  close(639)                        = -1 EBADF (Bad file descriptor)
6412  close(640)                        = -1 EBADF (Bad file descriptor)
6412  close(641)                        = -1 EBADF (Bad file descriptor)
6412  close(642)                        = -1 EBADF (Bad file descriptor)
6412  close(643)                        = -1 EBADF (Bad file descriptor)
6412  close(644)                        = -1 EBADF (Bad file descriptor)
6412  close(645)                        = -1 EBADF (Bad file descriptor)
6412  close(646)                        = -1 EBADF (Bad file descriptor)
6412  close(647)                        = -1 EBADF (Bad file descriptor)
6412  close(648)                        = -1 EBADF (Bad file descriptor)
6412  close(649)                        = -1 EBADF (Bad file descriptor)
6412  close(650)                        = -1 EBADF (Bad file descriptor)
6412  close(651)                        = -1 EBADF (Bad file descriptor)
6412  close(652)                        = -1 EBADF (Bad file descriptor)
6412  close(653)                        = -1 EBADF (Bad file descriptor)
6412  close(654)                        = -1 EBADF (Bad file descriptor)
6412  close(655)                        = -1 EBADF (Bad file descriptor)
6412  close(656)                        = -1 EBADF (Bad file descriptor)
6412  close(657)                        = -1 EBADF (Bad file descriptor)
6412  close(658)                        = -1 EBADF (Bad file descriptor)
6412  close(659)                        = -1 EBADF (Bad file descriptor)
6412  close(660)                        = -1 EBADF (Bad file descriptor)
6412  close(661)                        = -1 EBADF (Bad file descriptor)
6412  close(662)                        = -1 EBADF (Bad file descriptor)
6412  close(663)                        = -1 EBADF (Bad file descriptor)
6412  close(664)                        = -1 EBADF (Bad file descriptor)
6412  close(665)                        = -1 EBADF (Bad file descriptor)
6412  close(666)                        = -1 EBADF (Bad file descriptor)
6412  close(667)                        = -1 EBADF (Bad file descriptor)
6412  close(668)                        = -1 EBADF (Bad file descriptor)
6412  close(669)                        = -1 EBADF (Bad file descriptor)
6412  close(670)                        = -1 EBADF (Bad file descriptor)
6412  close(671)                        = -1 EBADF (Bad file descriptor)
6412  close(672)                        = -1 EBADF (Bad file descriptor)
6412  close(673)                        = -1 EBADF (Bad file descriptor)
6412  close(674)                        = -1 EBADF (Bad file descriptor)
6412  close(675)                        = -1 EBADF (Bad file descriptor)
6412  close(676)                        = -1 EBADF (Bad file descriptor)
6412  close(677)                        = -1 EBADF (Bad file descriptor)
6412  close(678)                        = -1 EBADF (Bad file descriptor)
6412  close(679)                        = -1 EBADF (Bad file descriptor)
6412  close(680)                        = -1 EBADF (Bad file descriptor)
6412  close(681)                        = -1 EBADF (Bad file descriptor)
6412  close(682)                        = -1 EBADF (Bad file descriptor)
6412  close(683)                        = -1 EBADF (Bad file descriptor)
6412  close(684)                        = -1 EBADF (Bad file descriptor)
6412  close(685)                        = -1 EBADF (Bad file descriptor)
6412  close(686)                        = -1 EBADF (Bad file descriptor)
6412  close(687)                        = -1 EBADF (Bad file descriptor)
6412  close(688)                        = -1 EBADF (Bad file descriptor)
6412  close(689)                        = -1 EBADF (Bad file descriptor)
6412  close(690)                        = -1 EBADF (Bad file descriptor)
6412  close(691)                        = -1 EBADF (Bad file descriptor)
6412  close(692)                        = -1 EBADF (Bad file descriptor)
6412  close(693)                        = -1 EBADF (Bad file descriptor)
6412  close(694)                        = -1 EBADF (Bad file descriptor)
6412  close(695)                        = -1 EBADF (Bad file descriptor)
6412  close(696)                        = -1 EBADF (Bad file descriptor)
6412  close(697)                        = -1 EBADF (Bad file descriptor)
6412  close(698)                        = -1 EBADF (Bad file descriptor)
6412  close(699)                        = -1 EBADF (Bad file descriptor)
6412  close(700)                        = -1 EBADF (Bad file descriptor)
6412  close(701)                        = -1 EBADF (Bad file descriptor)
6412  close(702)                        = -1 EBADF (Bad file descriptor)
6412  close(703)                        = -1 EBADF (Bad file descriptor)
6412  close(704)                        = -1 EBADF (Bad file descriptor)
6412  close(705)                        = -1 EBADF (Bad file descriptor)
6412  close(706)                        = -1 EBADF (Bad file descriptor)
6412  close(707)                        = -1 EBADF (Bad file descriptor)
6412  close(708)                        = -1 EBADF (Bad file descriptor)
6412  close(709)                        = -1 EBADF (Bad file descriptor)
6412  close(710)                        = -1 EBADF (Bad file descriptor)
6412  close(711)                        = -1 EBADF (Bad file descriptor)
6412  close(712)                        = -1 EBADF (Bad file descriptor)
6412  close(713)                        = -1 EBADF (Bad file descriptor)
6412  close(714)                        = -1 EBADF (Bad file descriptor)
6412  close(715)                        = -1 EBADF (Bad file descriptor)
6412  close(716)                        = -1 EBADF (Bad file descriptor)
6412  close(717)                        = -1 EBADF (Bad file descriptor)
6412  close(718)                        = -1 EBADF (Bad file descriptor)
6412  close(719)                        = -1 EBADF (Bad file descriptor)
6412  close(720)                        = -1 EBADF (Bad file descriptor)
6412  close(721)                        = -1 EBADF (Bad file descriptor)
6412  close(722)                        = -1 EBADF (Bad file descriptor)
6412  close(723)                        = -1 EBADF (Bad file descriptor)
6412  close(724)                        = -1 EBADF (Bad file descriptor)
6412  close(725)                        = -1 EBADF (Bad file descriptor)
6412  close(726)                        = -1 EBADF (Bad file descriptor)
6412  close(727)                        = -1 EBADF (Bad file descriptor)
6412  close(728)                        = -1 EBADF (Bad file descriptor)
6412  close(729)                        = -1 EBADF (Bad file descriptor)
6412  close(730)                        = -1 EBADF (Bad file descriptor)
6412  close(731)                        = -1 EBADF (Bad file descriptor)
6412  close(732)                        = -1 EBADF (Bad file descriptor)
6412  close(733)                        = -1 EBADF (Bad file descriptor)
6412  close(734)                        = -1 EBADF (Bad file descriptor)
6412  close(735)                        = -1 EBADF (Bad file descriptor)
6412  close(736)                        = -1 EBADF (Bad file descriptor)
6412  close(737)                        = -1 EBADF (Bad file descriptor)
6412  close(738)                        = -1 EBADF (Bad file descriptor)
6412  close(739)                        = -1 EBADF (Bad file descriptor)
6412  close(740)                        = -1 EBADF (Bad file descriptor)
6412  close(741)                        = -1 EBADF (Bad file descriptor)
6412  close(742)                        = -1 EBADF (Bad file descriptor)
6412  close(743)                        = -1 EBADF (Bad file descriptor)
6412  close(744)                        = -1 EBADF (Bad file descriptor)
6412  close(745)                        = -1 EBADF (Bad file descriptor)
6412  close(746)                        = -1 EBADF (Bad file descriptor)
6412  close(747)                        = -1 EBADF (Bad file descriptor)
6412  close(748)                        = -1 EBADF (Bad file descriptor)
6412  close(749)                        = -1 EBADF (Bad file descriptor)
6412  close(750)                        = -1 EBADF (Bad file descriptor)
6412  close(751)                        = -1 EBADF (Bad file descriptor)
6412  close(752)                        = -1 EBADF (Bad file descriptor)
6412  close(753)                        = -1 EBADF (Bad file descriptor)
6412  close(754)                        = -1 EBADF (Bad file descriptor)
6412  close(755)                        = -1 EBADF (Bad file descriptor)
6412  close(756)                        = -1 EBADF (Bad file descriptor)
6412  close(757)                        = -1 EBADF (Bad file descriptor)
6412  close(758)                        = -1 EBADF (Bad file descriptor)
6412  close(759)                        = -1 EBADF (Bad file descriptor)
6412  close(760)                        = -1 EBADF (Bad file descriptor)
6412  close(761)                        = -1 EBADF (Bad file descriptor)
6412  close(762)                        = -1 EBADF (Bad file descriptor)
6412  close(763)                        = -1 EBADF (Bad file descriptor)
6412  close(764)                        = -1 EBADF (Bad file descriptor)
6412  close(765)                        = -1 EBADF (Bad file descriptor)
6412  close(766)                        = -1 EBADF (Bad file descriptor)
6412  close(767)                        = -1 EBADF (Bad file descriptor)
6412  close(768)                        = -1 EBADF (Bad file descriptor)
6412  close(769)                        = -1 EBADF (Bad file descriptor)
6412  close(770)                        = -1 EBADF (Bad file descriptor)
6412  close(771)                        = -1 EBADF (Bad file descriptor)
6412  close(772)                        = -1 EBADF (Bad file descriptor)
6412  close(773)                        = -1 EBADF (Bad file descriptor)
6412  close(774)                        = -1 EBADF (Bad file descriptor)
6412  close(775)                        = -1 EBADF (Bad file descriptor)
6412  close(776)                        = -1 EBADF (Bad file descriptor)
6412  close(777)                        = -1 EBADF (Bad file descriptor)
6412  close(778)                        = -1 EBADF (Bad file descriptor)
6412  close(779)                        = -1 EBADF (Bad file descriptor)
6412  close(780)                        = -1 EBADF (Bad file descriptor)
6412  close(781)                        = -1 EBADF (Bad file descriptor)
6412  close(782)                        = -1 EBADF (Bad file descriptor)
6412  close(783)                        = -1 EBADF (Bad file descriptor)
6412  close(784)                        = -1 EBADF (Bad file descriptor)
6412  close(785)                        = -1 EBADF (Bad file descriptor)
6412  close(786)                        = -1 EBADF (Bad file descriptor)
6412  close(787)                        = -1 EBADF (Bad file descriptor)
6412  close(788)                        = -1 EBADF (Bad file descriptor)
6412  close(789)                        = -1 EBADF (Bad file descriptor)
6412  close(790)                        = -1 EBADF (Bad file descriptor)
6412  close(791)                        = -1 EBADF (Bad file descriptor)
6412  close(792)                        = -1 EBADF (Bad file descriptor)
6412  close(793)                        = -1 EBADF (Bad file descriptor)
6412  close(794)                        = -1 EBADF (Bad file descriptor)
6412  close(795)                        = -1 EBADF (Bad file descriptor)
6412  close(796)                        = -1 EBADF (Bad file descriptor)
6412  close(797)                        = -1 EBADF (Bad file descriptor)
6412  close(798)                        = -1 EBADF (Bad file descriptor)
6412  close(799)                        = -1 EBADF (Bad file descriptor)
6412  close(800)                        = -1 EBADF (Bad file descriptor)
6412  close(801)                        = -1 EBADF (Bad file descriptor)
6412  close(802)                        = -1 EBADF (Bad file descriptor)
6412  close(803)                        = -1 EBADF (Bad file descriptor)
6412  close(804)                        = -1 EBADF (Bad file descriptor)
6412  close(805)                        = -1 EBADF (Bad file descriptor)
6412  close(806)                        = -1 EBADF (Bad file descriptor)
6412  close(807)                        = -1 EBADF (Bad file descriptor)
6412  close(808)                        = -1 EBADF (Bad file descriptor)
6412  close(809)                        = -1 EBADF (Bad file descriptor)
6412  close(810)                        = -1 EBADF (Bad file descriptor)
6412  close(811)                        = -1 EBADF (Bad file descriptor)
6412  close(812)                        = -1 EBADF (Bad file descriptor)
6412  close(813)                        = -1 EBADF (Bad file descriptor)
6412  close(814)                        = -1 EBADF (Bad file descriptor)
6412  close(815)                        = -1 EBADF (Bad file descriptor)
6412  close(816)                        = -1 EBADF (Bad file descriptor)
6412  close(817)                        = -1 EBADF (Bad file descriptor)
6412  close(818)                        = -1 EBADF (Bad file descriptor)
6412  close(819)                        = -1 EBADF (Bad file descriptor)
6412  close(820)                        = -1 EBADF (Bad file descriptor)
6412  close(821)                        = -1 EBADF (Bad file descriptor)
6412  close(822)                        = -1 EBADF (Bad file descriptor)
6412  close(823)                        = -1 EBADF (Bad file descriptor)
6412  close(824)                        = -1 EBADF (Bad file descriptor)
6412  close(825)                        = -1 EBADF (Bad file descriptor)
6412  close(826)                        = -1 EBADF (Bad file descriptor)
6412  close(827)                        = -1 EBADF (Bad file descriptor)
6412  close(828)                        = -1 EBADF (Bad file descriptor)
6412  close(829)                        = -1 EBADF (Bad file descriptor)
6412  close(830)                        = -1 EBADF (Bad file descriptor)
6412  close(831)                        = -1 EBADF (Bad file descriptor)
6412  close(832)                        = -1 EBADF (Bad file descriptor)
6412  close(833)                        = -1 EBADF (Bad file descriptor)
6412  close(834)                        = -1 EBADF (Bad file descriptor)
6412  close(835)                        = -1 EBADF (Bad file descriptor)
6412  close(836)                        = -1 EBADF (Bad file descriptor)
6412  close(837)                        = -1 EBADF (Bad file descriptor)
6412  close(838)                        = -1 EBADF (Bad file descriptor)
6412  close(839)                        = -1 EBADF (Bad file descriptor)
6412  close(840)                        = -1 EBADF (Bad file descriptor)
6412  close(841)                        = -1 EBADF (Bad file descriptor)
6412  close(842)                        = -1 EBADF (Bad file descriptor)
6412  close(843)                        = -1 EBADF (Bad file descriptor)
6412  close(844)                        = -1 EBADF (Bad file descriptor)
6412  close(845)                        = -1 EBADF (Bad file descriptor)
6412  close(846)                        = -1 EBADF (Bad file descriptor)
6412  close(847)                        = -1 EBADF (Bad file descriptor)
6412  close(848)                        = -1 EBADF (Bad file descriptor)
6412  close(849)                        = -1 EBADF (Bad file descriptor)
6412  close(850)                        = -1 EBADF (Bad file descriptor)
6412  close(851)                        = -1 EBADF (Bad file descriptor)
6412  close(852)                        = -1 EBADF (Bad file descriptor)
6412  close(853)                        = -1 EBADF (Bad file descriptor)
6412  close(854)                        = -1 EBADF (Bad file descriptor)
6412  close(855)                        = -1 EBADF (Bad file descriptor)
6412  close(856)                        = -1 EBADF (Bad file descriptor)
6412  close(857)                        = -1 EBADF (Bad file descriptor)
6412  close(858)                        = -1 EBADF (Bad file descriptor)
6412  close(859)                        = -1 EBADF (Bad file descriptor)
6412  close(860)                        = -1 EBADF (Bad file descriptor)
6412  close(861)                        = -1 EBADF (Bad file descriptor)
6412  close(862)                        = -1 EBADF (Bad file descriptor)
6412  close(863)                        = -1 EBADF (Bad file descriptor)
6412  close(864)                        = -1 EBADF (Bad file descriptor)
6412  close(865)                        = -1 EBADF (Bad file descriptor)
6412  close(866)                        = -1 EBADF (Bad file descriptor)
6412  close(867)                        = -1 EBADF (Bad file descriptor)
6412  close(868)                        = -1 EBADF (Bad file descriptor)
6412  close(869)                        = -1 EBADF (Bad file descriptor)
6412  close(870)                        = -1 EBADF (Bad file descriptor)
6412  close(871)                        = -1 EBADF (Bad file descriptor)
6412  close(872)                        = -1 EBADF (Bad file descriptor)
6412  close(873)                        = -1 EBADF (Bad file descriptor)
6412  close(874)                        = -1 EBADF (Bad file descriptor)
6412  close(875)                        = -1 EBADF (Bad file descriptor)
6412  close(876)                        = -1 EBADF (Bad file descriptor)
6412  close(877)                        = -1 EBADF (Bad file descriptor)
6412  close(878)                        = -1 EBADF (Bad file descriptor)
6412  close(879)                        = -1 EBADF (Bad file descriptor)
6412  close(880)                        = -1 EBADF (Bad file descriptor)
6412  close(881)                        = -1 EBADF (Bad file descriptor)
6412  close(882)                        = -1 EBADF (Bad file descriptor)
6412  close(883)                        = -1 EBADF (Bad file descriptor)
6412  close(884)                        = -1 EBADF (Bad file descriptor)
6412  close(885)                        = -1 EBADF (Bad file descriptor)
6412  close(886)                        = -1 EBADF (Bad file descriptor)
6412  close(887)                        = -1 EBADF (Bad file descriptor)
6412  close(888)                        = -1 EBADF (Bad file descriptor)
6412  close(889)                        = -1 EBADF (Bad file descriptor)
6412  close(890)                        = -1 EBADF (Bad file descriptor)
6412  close(891)                        = -1 EBADF (Bad file descriptor)
6412  close(892)                        = -1 EBADF (Bad file descriptor)
6412  close(893)                        = -1 EBADF (Bad file descriptor)
6412  close(894)                        = -1 EBADF (Bad file descriptor)
6412  close(895)                        = -1 EBADF (Bad file descriptor)
6412  close(896)                        = -1 EBADF (Bad file descriptor)
6412  close(897)                        = -1 EBADF (Bad file descriptor)
6412  close(898)                        = -1 EBADF (Bad file descriptor)
6412  close(899)                        = -1 EBADF (Bad file descriptor)
6412  close(900)                        = -1 EBADF (Bad file descriptor)
6412  close(901)                        = -1 EBADF (Bad file descriptor)
6412  close(902)                        = -1 EBADF (Bad file descriptor)
6412  close(903)                        = -1 EBADF (Bad file descriptor)
6412  close(904)                        = -1 EBADF (Bad file descriptor)
6412  close(905)                        = -1 EBADF (Bad file descriptor)
6412  close(906)                        = -1 EBADF (Bad file descriptor)
6412  close(907)                        = -1 EBADF (Bad file descriptor)
6412  close(908)                        = -1 EBADF (Bad file descriptor)
6412  close(909)                        = -1 EBADF (Bad file descriptor)
6412  close(910)                        = -1 EBADF (Bad file descriptor)
6412  close(911)                        = -1 EBADF (Bad file descriptor)
6412  close(912)                        = -1 EBADF (Bad file descriptor)
6412  close(913)                        = -1 EBADF (Bad file descriptor)
6412  close(914)                        = -1 EBADF (Bad file descriptor)
6412  close(915)                        = -1 EBADF (Bad file descriptor)
6412  close(916)                        = -1 EBADF (Bad file descriptor)
6412  close(917)                        = -1 EBADF (Bad file descriptor)
6412  close(918)                        = -1 EBADF (Bad file descriptor)
6412  close(919)                        = -1 EBADF (Bad file descriptor)
6412  close(920)                        = -1 EBADF (Bad file descriptor)
6412  close(921)                        = -1 EBADF (Bad file descriptor)
6412  close(922)                        = -1 EBADF (Bad file descriptor)
6412  close(923)                        = -1 EBADF (Bad file descriptor)
6412  close(924)                        = -1 EBADF (Bad file descriptor)
6412  close(925)                        = -1 EBADF (Bad file descriptor)
6412  close(926)                        = -1 EBADF (Bad file descriptor)
6412  close(927)                        = -1 EBADF (Bad file descriptor)
6412  close(928)                        = -1 EBADF (Bad file descriptor)
6412  close(929)                        = -1 EBADF (Bad file descriptor)
6412  close(930)                        = -1 EBADF (Bad file descriptor)
6412  close(931)                        = -1 EBADF (Bad file descriptor)
6412  close(932)                        = -1 EBADF (Bad file descriptor)
6412  close(933)                        = -1 EBADF (Bad file descriptor)
6412  close(934)                        = -1 EBADF (Bad file descriptor)
6412  close(935)                        = -1 EBADF (Bad file descriptor)
6412  close(936)                        = -1 EBADF (Bad file descriptor)
6412  close(937)                        = -1 EBADF (Bad file descriptor)
6412  close(938)                        = -1 EBADF (Bad file descriptor)
6412  close(939)                        = -1 EBADF (Bad file descriptor)
6412  close(940)                        = -1 EBADF (Bad file descriptor)
6412  close(941)                        = -1 EBADF (Bad file descriptor)
6412  close(942)                        = -1 EBADF (Bad file descriptor)
6412  close(943)                        = -1 EBADF (Bad file descriptor)
6412  close(944)                        = -1 EBADF (Bad file descriptor)
6412  close(945)                        = -1 EBADF (Bad file descriptor)
6412  close(946)                        = -1 EBADF (Bad file descriptor)
6412  close(947)                        = -1 EBADF (Bad file descriptor)
6412  close(948)                        = -1 EBADF (Bad file descriptor)
6412  close(949)                        = -1 EBADF (Bad file descriptor)
6412  close(950)                        = -1 EBADF (Bad file descriptor)
6412  close(951)                        = -1 EBADF (Bad file descriptor)
6412  close(952)                        = -1 EBADF (Bad file descriptor)
6412  close(953)                        = -1 EBADF (Bad file descriptor)
6412  close(954)                        = -1 EBADF (Bad file descriptor)
6412  close(955)                        = -1 EBADF (Bad file descriptor)
6412  close(956)                        = -1 EBADF (Bad file descriptor)
6412  close(957)                        = -1 EBADF (Bad file descriptor)
6412  close(958)                        = -1 EBADF (Bad file descriptor)
6412  close(959)                        = -1 EBADF (Bad file descriptor)
6412  close(960)                        = -1 EBADF (Bad file descriptor)
6412  close(961)                        = -1 EBADF (Bad file descriptor)
6412  close(962)                        = -1 EBADF (Bad file descriptor)
6412  close(963)                        = -1 EBADF (Bad file descriptor)
6412  close(964)                        = -1 EBADF (Bad file descriptor)
6412  close(965)                        = -1 EBADF (Bad file descriptor)
6412  close(966)                        = -1 EBADF (Bad file descriptor)
6412  close(967)                        = -1 EBADF (Bad file descriptor)
6412  close(968)                        = -1 EBADF (Bad file descriptor)
6412  close(969)                        = -1 EBADF (Bad file descriptor)
6412  close(970)                        = -1 EBADF (Bad file descriptor)
6412  close(971)                        = -1 EBADF (Bad file descriptor)
6412  close(972)                        = -1 EBADF (Bad file descriptor)
6412  close(973)                        = -1 EBADF (Bad file descriptor)
6412  close(974)                        = -1 EBADF (Bad file descriptor)
6412  close(975)                        = -1 EBADF (Bad file descriptor)
6412  close(976)                        = -1 EBADF (Bad file descriptor)
6412  close(977)                        = -1 EBADF (Bad file descriptor)
6412  close(978)                        = -1 EBADF (Bad file descriptor)
6412  close(979)                        = -1 EBADF (Bad file descriptor)
6412  close(980)                        = -1 EBADF (Bad file descriptor)
6412  close(981)                        = -1 EBADF (Bad file descriptor)
6412  close(982)                        = -1 EBADF (Bad file descriptor)
6412  close(983)                        = -1 EBADF (Bad file descriptor)
6412  close(984)                        = -1 EBADF (Bad file descriptor)
6412  close(985)                        = -1 EBADF (Bad file descriptor)
6412  close(986)                        = -1 EBADF (Bad file descriptor)
6412  close(987)                        = -1 EBADF (Bad file descriptor)
6412  close(988)                        = -1 EBADF (Bad file descriptor)
6412  close(989)                        = -1 EBADF (Bad file descriptor)
6412  close(990)                        = -1 EBADF (Bad file descriptor)
6412  close(991)                        = -1 EBADF (Bad file descriptor)
6412  close(992)                        = -1 EBADF (Bad file descriptor)
6412  close(993)                        = -1 EBADF (Bad file descriptor)
6412  close(994)                        = -1 EBADF (Bad file descriptor)
6412  close(995)                        = -1 EBADF (Bad file descriptor)
6412  close(996)                        = -1 EBADF (Bad file descriptor)
6412  close(997)                        = -1 EBADF (Bad file descriptor)
6412  close(998)                        = -1 EBADF (Bad file descriptor)
6412  close(999)                        = -1 EBADF (Bad file descriptor)
6412  close(1000)                       = -1 EBADF (Bad file descriptor)
6412  close(1001)                       = -1 EBADF (Bad file descriptor)
6412  close(1002)                       = -1 EBADF (Bad file descriptor)
6412  close(1003)                       = -1 EBADF (Bad file descriptor)
6412  close(1004)                       = -1 EBADF (Bad file descriptor)
6412  close(1005)                       = -1 EBADF (Bad file descriptor)
6412  close(1006)                       = -1 EBADF (Bad file descriptor)
6412  close(1007)                       = -1 EBADF (Bad file descriptor)
6412  close(1008)                       = -1 EBADF (Bad file descriptor)
6412  close(1009)                       = -1 EBADF (Bad file descriptor)
6412  close(1010)                       = -1 EBADF (Bad file descriptor)
6412  close(1011)                       = -1 EBADF (Bad file descriptor)
6412  close(1012)                       = -1 EBADF (Bad file descriptor)
6412  close(1013)                       = -1 EBADF (Bad file descriptor)
6412  close(1014)                       = -1 EBADF (Bad file descriptor)
6412  close(1015)                       = -1 EBADF (Bad file descriptor)
6412  close(1016)                       = -1 EBADF (Bad file descriptor)
6412  close(1017)                       = -1 EBADF (Bad file descriptor)
6412  close(1018)                       = -1 EBADF (Bad file descriptor)
6412  close(1019)                       = -1 EBADF (Bad file descriptor)
6412  close(1020)                       = -1 EBADF (Bad file descriptor)
6412  close(1021)                       = -1 EBADF (Bad file descriptor)
6412  close(1022)                       = -1 EBADF (Bad file descriptor)
6412  close(1023)                       = -1 EBADF (Bad file descriptor)
6412  execve("/etc/xen/qemu-ifup", ["/etc/xen/qemu-ifup", "tap1.0", "eth0"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "_=/usr/sbin/xend", "UPSTART_JOB_ID=11", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "UPSTART_EVENT=runlevel", "XAUTHORITY=/root/.Xauthority", "previous=N", "PWD=/", "VERBOSE=no"] <unfinished ...>
6310  wait4(6412,  <unfinished ...>
6412  <... execve resumed> )            = 0
6412  brk(0)                            = 0x16b9000
6412  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2adb465d3000
6412  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6412  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2adb465d4000
6412  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6412  open("/etc/ld.so.cache", O_RDONLY) = 4
6412  fstat(4, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6412  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2adb465d6000
6412  close(4)                          = 0
6412  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6412  open("/lib/libc.so.6", O_RDONLY)  = 4
6412  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6412  fstat(4, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6412  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2adb467d4000
6412  mprotect(0x2adb4693d000, 2093056, PROT_NONE) = 0
6412  mmap(0x2adb46b3c000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x168000) = 0x2adb46b3c000
6412  mmap(0x2adb46b41000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2adb46b41000
6412  close(4)                          = 0
6412  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2adb46b46000
6412  arch_prctl(ARCH_SET_FS, 0x2adb46b466e0) = 0
6412  mprotect(0x2adb46b3c000, 16384, PROT_READ) = 0
6412  mprotect(0x618000, 4096, PROT_READ) = 0
6412  mprotect(0x2adb467d2000, 4096, PROT_READ) = 0
6412  munmap(0x2adb465d6000, 72620)     = 0
6412  getpid()                          = 6412
6412  rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) = 0
6412  geteuid()                         = 0
6412  brk(0)                            = 0x16b9000
6412  brk(0x16da000)                    = 0x16da000
6412  getppid()                         = 6310
6412  stat("/", {st_dev=makedev(8, 30), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=21, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/14-11:31:35, st_mtime=2009/02/14-08:21:57, st_ctime=2009/02/14-08:21:57}) = 0
6412  stat(".", {st_dev=makedev(8, 30), st_ino=2, st_mode=S_IFDIR|0755, st_nlink=21, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=4096, st_atime=2009/02/14-11:31:35, st_mtime=2009/02/14-08:21:57, st_ctime=2009/02/14-08:21:57}) = 0
6412  open("/etc/xen/qemu-ifup", O_RDONLY) = 4
6412  fcntl(4, F_DUPFD, 10)             = 10
6412  close(4)                          = 0
6412  fcntl(10, F_SETFD, FD_CLOEXEC)    = 0
6412  rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) = 0
6412  rt_sigaction(SIGINT, {0x40f820, ~[RTMIN RT_1], SA_RESTORER, 0x2adb468070a0}, NULL, 8) = 0
6412  rt_sigaction(SIGQUIT, NULL, {SIG_DFL}, 8) = 0
6412  rt_sigaction(SIGQUIT, {SIG_DFL}, NULL, 8) = 0
6412  rt_sigaction(SIGTERM, NULL, {SIG_DFL}, 8) = 0
6412  rt_sigaction(SIGTERM, {SIG_DFL}, NULL, 8) = 0
6412  read(10, "#!/bin/sh\n\n#. /etc/rc.d/init.d/functions\n#ulimit -c unlimited\n\necho \'config qemu network with xen bridge for \' $*\n\nbridge=$2\n\n#\n# Old style bridge setup with netloop, used to have a bridge name\n# of xenbrX, enslaving pethX and vif0.X, and then configuring\n# eth0.\n#\n# New style bridge setup does not use netloop, so the bridge name\n# is ethX and the physical device is enslaved pethX\n#\n# So if...\n#\n#   - User asks for xenbrX\n#   - AND xenbrX doesn\'t exist\n#   - AND there is a ethX device which is a"..., 8192) = 840
6412  write(1, "config qemu network with xen bridge for  tap1.0 eth0\n", 53) = 53
6412  stat("/sys/class/net/eth0", {st_dev=makedev(0, 0), st_ino=13342, st_mode=S_IFDIR|0755, st_nlink=6, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/24-06:06:52, st_mtime=2009/02/24-06:06:52, st_ctime=2009/02/24-06:06:52}) = 0
6412  stat("/sbin/ifconfig", {st_dev=makedev(8, 30), st_ino=311375, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72560, st_atime=2009/02/14-05:40:06, st_mtime=2008/07/17-05:12:26, st_ctime=2009/02/14-05:26:13}) = 0
6412  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x2adb46b46770) = 6417
6417  close(10)                         = 0
6417  execve("/sbin/ifconfig", ["ifconfig", "tap1.0", "0.0.0.0", "up"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "UPSTART_JOB_ID=11", "_=/usr/sbin/xend", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "XAUTHORITY=/root/.Xauthority", "UPSTART_EVENT=runlevel", "PWD=/", "previous=N", "VERBOSE=no"]) = 0
6417  brk(0)                            = 0x2092000
6417  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b452a656000
6417  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6417  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b452a657000
6417  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6417  open("/etc/ld.so.cache", O_RDONLY) = 4
6417  fstat(4, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6417  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2b452a659000
6417  close(4)                          = 0
6417  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6417  open("/lib/libc.so.6", O_RDONLY)  = 4
6417  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6417  fstat(4, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6417  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2b452a857000
6417  mprotect(0x2b452a9c0000, 2093056, PROT_NONE) = 0
6417  mmap(0x2b452abbf000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x168000) = 0x2b452abbf000
6417  mmap(0x2b452abc4000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b452abc4000
6417  close(4)                          = 0
6417  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b452abc9000
6417  arch_prctl(ARCH_SET_FS, 0x2b452abc96e0) = 0
6417  mprotect(0x2b452abbf000, 16384, PROT_READ) = 0
6417  mprotect(0x60f000, 4096, PROT_READ) = 0
6417  mprotect(0x2b452a855000, 4096, PROT_READ) = 0
6417  munmap(0x2b452a659000, 72620)     = 0
6417  brk(0)                            = 0x2092000
6417  brk(0x20b3000)                    = 0x20b3000
6417  uname({sysname="Linux", nodename="ServerXen331", release="2.6.29-rc5-tip", version="#3 SMP Mon Feb 23 05:40:41 EST 2009", machine="x86_64"}) = 0
6417  access("/proc/net", R_OK)         = 0
6417  access("/proc/net/unix", R_OK)    = 0
6417  socket(PF_FILE, SOCK_DGRAM, 0)    = 4
6417  socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 5
6417  access("/proc/net/if_inet6", R_OK) = 0
6417  socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP) = 6
6417  access("/proc/net/ax25", R_OK)    = -1 ENOENT (No such file or directory)
6417  access("/proc/net/nr", R_OK)      = -1 ENOENT (No such file or directory)
6417  access("/proc/net/rose", R_OK)    = -1 ENOENT (No such file or directory)
6417  access("/proc/net/ipx", R_OK)     = -1 ENOENT (No such file or directory)
6417  access("/proc/net/appletalk", R_OK) = -1 ENOENT (No such file or directory)
6417  access("/proc/sys/net/econet", R_OK) = -1 ENOENT (No such file or directory)
6417  access("/proc/sys/net/ash", R_OK) = -1 ENOENT (No such file or directory)
6417  access("/proc/net/x25", R_OK)     = -1 ENOENT (No such file or directory)
6417  ioctl(5, SIOCSIFADDR, 0x7fff8046ffc0) = 0
6417  ioctl(5, SIOCGIFFLAGS, {ifr_name="tap1.0", ifr_flags=IFF_BROADCAST|IFF_MULTICAST}) = 0
6417  ioctl(5, SIOCSIFFLAGS, 0x7fff8046feb0) = 0
6417  ioctl(5, SIOCGIFFLAGS, {ifr_name="tap1.0", ifr_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_MULTICAST}) = 0
6417  ioctl(5, SIOCSIFFLAGS, 0x7fff8046feb0) = 0
6417  exit_group(0)                     = ?
6412  --- SIGCHLD (Child exited) @ 0 (0) ---
6412  wait4(4294967295, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 6417
6412  stat("/sbin/brctl", 0x7fff644f2da0) = -1 ENOENT (No such file or directory)
6412  stat("/usr/sbin/brctl", {st_dev=makedev(8, 30), st_ino=2009461, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=64, st_size=31584, st_atime=2009/02/14-14:33:26, st_mtime=2008/06/17-02:02:56, st_ctime=2009/02/14-14:33:16}) = 0
6412  clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x2adb46b46770) = 6418
6418  close(10)                         = 0
6418  execve("/usr/sbin/brctl", ["brctl", "addif", "eth0", "tap1.0"], ["SHLVL=1", "runlevel=2", "UPSTART_JOB=rc2", "UPSTART_JOB_ID=11", "_=/usr/sbin/xend", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", "RUNLEVEL=2", "PREVLEVEL=N", "XAUTHORITY=/root/.Xauthority", "UPSTART_EVENT=runlevel", "PWD=/", "previous=N", "VERBOSE=no"]) = 0
6418  brk(0)                            = 0x1117000
6418  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b75b9505000
6418  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6418  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b75b9506000
6418  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
6418  open("/etc/ld.so.cache", O_RDONLY) = 4
6418  fstat(4, {st_dev=makedev(8, 30), st_ino=92498, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=152, st_size=72620, st_atime=2009/02/19-08:17:37, st_mtime=2009/02/19-08:17:24, st_ctime=2009/02/19-08:17:24}) = 0
6418  mmap(NULL, 72620, PROT_READ, MAP_PRIVATE, 4, 0) = 0x2b75b9508000
6418  close(4)                          = 0
6418  access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
6418  open("/lib/libc.so.6", O_RDONLY)  = 4
6418  read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\345\1\0\0\0\0\0@\0\0\0\0\0\0\0\270\333\26\0\0\0\0\0\0\0\0\0@\0008\0\n\0@\0F\0E\0\6\0\0\0\5\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0000\2\0\0\0\0\0\0000\2\0\0\0\0\0\0\10\0\0\0\0\0\0\0\3\0\0\0\4\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0@\7\24\0\0\0\0\0\34\0\0\0\0\0\0\0\34\0\0\0\0\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\202\26\0\0\0\0\0\10\202\26\0\0\0\0\0\0\0 \0\0\0\0\0\1\0\0\0\6\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0HF\0\0\0\0\0\0\210\213\0\0\0\0\0\0\0\0 \0\0\0\0\0\2\0\0\0\6\0\0\0`\273\26\0\0\0\0\0`\2736\0\0\0\0\0`\2736\0\0\0\0\0\340\1\0\0\0\0\0\0\340\1\0\0\0\0\0\0\10\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0p\2\0\0\0\0\0\0 \0\0\0\0\0\0\0 \0\0\0\0\0\0\0\4\0\0\0\0\0\0\0\7\0\0\0\4\0\0\0P\207\26\0\0\0\0\0P\2076\0\0\0\0\0P\2076\0\0\0\0\0\20\0\0\0\0\0\0\0X\0\0\0\0\0\0\0\10\0\0\0\0\0\0\0P\345td\4\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0\0\0\0\0\\\7\24\0"..., 832) = 832
6418  fstat(4, {st_dev=makedev(8, 30), st_ino=491525, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=2944, st_size=1502520, st_atime=2009/02/14-07:15:45, st_mtime=2009/01/29-12:56:31, st_ctime=2009/02/14-07:15:44}) = 0
6418  mmap(NULL, 3609304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x2b75b9706000
6418  mprotect(0x2b75b986f000, 2093056, PROT_NONE) = 0
6418  mmap(0x2b75b9a6e000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x168000) = 0x2b75b9a6e000
6418  mmap(0x2b75b9a73000, 17112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b75b9a73000
6418  close(4)                          = 0
6418  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b75b9a78000
6418  arch_prctl(ARCH_SET_FS, 0x2b75b9a786e0) = 0
6418  mprotect(0x2b75b9a6e000, 16384, PROT_READ) = 0
6418  mprotect(0x606000, 4096, PROT_READ) = 0
6418  mprotect(0x2b75b9704000, 4096, PROT_READ) = 0
6418  munmap(0x2b75b9508000, 72620)     = 0
6418  socket(PF_FILE, SOCK_STREAM, 0)   = 4
6418  access("/proc/net", R_OK)         = 0
6418  access("/proc/net/unix", R_OK)    = 0
6418  socket(PF_FILE, SOCK_DGRAM, 0)    = 5
6418  ioctl(5, SIOCGIFINDEX, {ifr_name="tap1.0", ifr_index=9}) = 0
6418  close(5)                          = 0
6418  ioctl(4, 0x89a2, 0x7ffff15c3190)  = 0
6418  exit_group(0)                     = ?
6412  --- SIGCHLD (Child exited) @ 0 (0) ---
6412  wait4(4294967295, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 6418
6412  read(10, "", 8192)                = 0
6412  exit_group(0)                     = ?
6310  <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 6412
6310  --- SIGCHLD (Child exited) @ 0 (0) ---
6310  open("/proc/xen/privcmd", O_RDWR) = 4
6310  fcntl(4, F_GETFD)                 = 0
6310  fcntl(4, F_SETFD, FD_CLOEXEC)     = 0
6310  stat("/var/run/xenstored/socket", {st_dev=makedev(0, 16), st_ino=18376, st_mode=S_IFSOCK|0600, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=0, st_atime=2009/02/24-06:07:05, st_mtime=2009/02/24-06:07:04, st_ctime=2009/02/24-06:07:04}) = 0
6310  socket(PF_FILE, SOCK_STREAM, 0)   = 5
6310  fcntl(5, F_GETFD)                 = 0
6310  fcntl(5, F_SETFD, FD_CLOEXEC)     = 0
6310  connect(5, {sa_family=AF_FILE, path="/var/run/xenstored/socket"}, 110) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2)                = 2
6310  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6310  read(5, "/local/domain/1\0", 16)  = 16
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd\0", 27) = 27
6310  read(5, "\1\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0", 16) = 16
6310  read(5, "5632\000768\0", 9)       = 9
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/5632/backend\0", 40) = 40
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0", 16) = 16
6310  read(5, "/local/domain/0/backend/vbd/1/5632", 34) = 34
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "0\0", 2)                = 2
6310  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6310  read(5, "/local/domain/0\0", 16)  = 16
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/frontend\0", 44) = 44
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0", 16) = 16
6310  read(5, "/local/domain/1/device/vbd/5632", 31) = 31
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/dev\0", 39) = 39
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6310  read(5, "hdc", 3)                 = 3
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/5632/backend\0", 40) = 40
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\"\0\0\0", 16) = 16
6310  read(5, "/local/domain/0/backend/vbd/1/5632", 34) = 34
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "0\0", 2)                = 2
6310  read(5, "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6310  read(5, "/local/domain/0\0", 16)  = 16
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/frontend\0", 44) = 44
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\37\0\0\0", 16) = 16
6310  read(5, "/local/domain/1/device/vbd/5632", 31) = 31
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/dev\0", 39) = 39
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6310  read(5, "hdc", 3)                 = 3
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/5632/device-type\0", 44) = 44
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0", 16) = 16
6310  read(5, "cdrom", 5)               = 5
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0*\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/params\0", 42) = 42
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0", 16) = 16
6310  read(5, "/dev/loop0", 10)         = 10
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/type\0", 40) = 40
6310  read(5, "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6310  read(5, "phy", 3)                 = 3
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|0x40, -1, 0) = 0x418b7000
6310  mprotect(0x418b7000, 4096, PROT_NONE) = 0
6310  clone(child_stack=0x420b7260, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x420b79e0, tls=0x420b7950, child_tidptr=0x420b79e0) = 6423
6423  set_robust_list(0x420b79f0, 0x18) = 0
6423  read(5,  <unfinished ...>
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0.\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/params\0", 42) = 42
6310  write(5, "hdc\0", 4 <unfinished ...>
6423  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0.\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/backend/vbd/1/5632/params\0hdc\0", 46) = 46
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 4
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigprocmask(SIG_UNBLOCK, [USR2], NULL, 8) = 0
6310  rt_sigaction(SIGUSR2, {0x416006, ~[RTMIN RT_1], SA_RESTORER, 0x7fae2e2060f0}, NULL, 8) = 0
6310  pipe([6, 7])                      = 0
6310  fcntl(6, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
6310  fcntl(7, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
6310  open("/dev/loop0", O_RDWR|O_SYNC) = 8
6310  lseek(8, 0, SEEK_END)             = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/768/backend\0", 39 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0!\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/backend/vbd/1/768", 33) = 33
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 39
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "0\0", 2 <unfinished ...>
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/0\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 2
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/frontend\0", 43 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\36\0\0\0", 16) = 16
6423  read(5, "/local/domain/1/device/vbd/768", 30) = 30
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 43
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0&\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/dev\0", 38 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "hda", 3)                 = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 38
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0+\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/device/vbd/768/device-type\0", 43 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0", 16) = 16
6423  read(5, "disk", 4)                = 4
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 43
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0)\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/params\0", 41 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0", 16) = 16
6423  read(5, "/dev/sdb7", 9)           = 9
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 41
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/768/type\0", 39 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "phy", 3)                 = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 39
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  open("/dev/sdb7", O_RDWR|O_SYNC)  = 9
6310  lseek(9, 0, SEEK_END)             = 16458753024
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0=\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/logdirty/next-active\0", 52) = 52
6310  write(5, "logdirty\0", 9 <unfinished ...>
6423  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0=\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/device-model/1/logdirty/next-active\0logdirty\0", 61) = 61
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 9
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Watching /local/domain/0/device-model/1/logdirty/next-active\n", 61) = 61
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\4\0\0\0\0\0\0\0\0\0\0\0002\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/command\0", 39) = 39
6310  write(5, "dm-command\0", 11 <unfinished ...>
6423  <... read resumed> "\4\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5, "\17\0\0\0\0\0\0\0\0\0\0\0002\0\0\0", 16) = 16
6423  read(5, "/local/domain/0/device-model/1/command\0dm-command\0", 50) = 50
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 11
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Watching /local/domain/0/device-model/1/command\n", 48) = 48
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0)\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/pci/1/0/num_devs\0", 41 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 41
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  open("/usr/share/xen/qemu/keymaps/en-us", O_RDONLY) = 10
6310  fstat(10, {st_dev=makedev(8, 30), st_ino=623077, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=609, st_atime=2009/02/23-08:59:33, st_mtime=2009/02/23-08:28:48, st_ctime=2009/02/23-08:28:48}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd3000
6310  read(10, "# generated from XKB map us\ninclude common\nmap 0x409\nexclam 0x02 shift\nat 0x03 shift\nnumbersign 0x04 shift\ndollar 0x05 shift\npercent 0x06 shift\nasciicircum 0x07 shift\nampersand 0x08 shift\nasterisk 0x09 shift\nparenleft 0x0a shift\nparenright 0x0b shift\nminus 0x0c\nunderscore 0x0c shift\nequal 0x0d\nplus 0x0d shift\nbracketleft 0x1a\nbraceleft 0x1a shift\nbracketright 0x1b\nbraceright 0x1b shift\nsemicolon 0x27\ncolon 0x27 shift\napostrophe 0x28\nquotedbl 0x28 shift\ngrave 0x29\nasciitilde 0x29 shift\nbackslash "..., 4096) = 609
6310  open("/usr/share/xen/qemu/keymaps/common", O_RDONLY) = 11
6310  fstat(11, {st_dev=makedev(8, 30), st_ino=623087, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=2077, st_atime=2009/02/23-08:59:33, st_mtime=2009/02/23-08:28:48, st_ctime=2009/02/23-08:28:48}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd2000
6310  read(11, "include modifiers\n\n#\n# Top row\n#\n1 0x2\n2 0x3\n3 0x4\n4 0x5\n5 0x6\n6 0x7\n7 0x8\n8 0x9\n9 0xa\n0 0xb\nBackSpace 0xe\n\n#\n# QWERTY first row\n#\nTab 0xf localstate\nISO_Left_Tab 0xf shift\nq 0x10 addupper\nw 0x11 addupper\ne 0x12 addupper\nr 0x13 addupper\nt 0x14 addupper\ny 0x15 addupper\nu 0x16 addupper\ni 0x17 addupper\no 0x18 addupper\np 0x19 addupper\n\n#\n# QWERTY second row\n#\na 0x1e addupper\ns 0x1f addupper\nd 0x20 addupper\nf 0x21 addupper\ng 0x22 addupper\nh 0x23 addupper\nj 0x24 addupper\nk 0x25 addupper\nl 0x26 adduppe"..., 4096) = 2077
6310  open("/usr/share/xen/qemu/keymaps/modifiers", O_RDONLY) = 12
6310  fstat(12, {st_dev=makedev(8, 30), st_ino=623071, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=293, st_atime=2009/02/23-08:59:33, st_mtime=2009/02/23-08:28:48, st_ctime=2009/02/23-08:28:48}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(12, "Shift_R 0x36\nShift_L 0x2a\n\nAlt_R 0xb8\nMode_switch 0xb8\nISO_Level3_Shift 0xb8\nAlt_L 0x38\n\nControl_R 0x9d\nControl_L 0x1d\n\n# Translate Super to Windows keys.\n# This is hardcoded. See documentation for details.\nSuper_R 0xdc\nSuper_L 0xdb\n\n# Translate Menu to the Windows Application key.\nMenu 0xdd\n", 4096) = 293
6310  read(12, "", 4096)                = 0
6310  close(12)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  read(11, "", 4096)                = 0
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd2000, 4096)      = 0
6310  read(10, "", 4096)                = 0
6310  close(10)                         = 0
6310  munmap(0x7fae2ecd3000, 4096)      = 0
6310  mmap(NULL, 1028096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ebc1000
6310  mmap(NULL, 1028096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2cedd000
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2 <unfinished ...>
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/1\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 2
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/vm\0", 19 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6423  read(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40", 40) = 40
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 19
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0003\0\0\0", 16) = 16
6310  write(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40/vncpasswd\0", 51 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 51
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "xs_read(): vncpasswd get error. /vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40/vncpasswd.\n", 84) = 84
6310  socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 10
6310  setsockopt(10, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
6310  bind(10, {sa_family=AF_INET, sin_port=htons(5900), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
6310  listen(10, 1)                     = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2 <unfinished ...>
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/1\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 2
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0%\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/console/vnc-port\0", 33) = 33
6310  write(5, "5900", 4 <unfinished ...>
6423  <... read resumed> "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 4
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGINT, {SIG_DFL}, NULL, 8) = 0
6310  rt_sigaction(SIGHUP, {SIG_DFL}, NULL, 8) = 0
6310  rt_sigaction(SIGTERM, {SIG_DFL}, NULL, 8) = 0
6310  brk(0x2a54000)                    = 0x2a54000
6310  brk(0x2a91000)                    = 0x2a91000
6310  write(2, "qemu_map_cache_init nr_buckets = 10000 size 3145728\n", 52) = 52
6310  mmap(NULL, 3145728, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANONYMOUS, -1, 0) = 0x7fae2cbdd000
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5320) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  write(2, "shared page at pfn feffd\n", 25) = 25
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2ecd3000
6310  ioctl(4, SNDCTL_DSP_SPEED or SOUND_PCM_READ_RATE, 0x7fff36cd5340) = 0
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5320) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  write(2, "buffered io page at pfn feffb\n", 30) = 30
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2ecd2000
6310  ioctl(4, SNDCTL_DSP_SPEED or SOUND_PCM_READ_RATE, 0x7fff36cd5340) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\n\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0", 16) = 16
6310  write(5, "1\0", 2)                = 2
6423  <... read resumed> "\n\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0", 16) = 16
6423  read(5, "/local/domain/1\0", 16)  = 16
6423  read(5,  <unfinished ...>
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0", 16) = 16
6310  write(5, "/local/domain/1/vm\0", 19) = 19
6310  futex(0x2a0fb04, 0x80 /* FUTEX_??? */, 1 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6423  read(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40", 40) = 40
6423  futex(0x2a0fb04, 0x85 /* FUTEX_??? */, 1) = 0
6423  read(5,  <unfinished ...>
6310  <... futex resumed> )             = -1 EAGAIN (Resource temporarily unavailable)
6310  futex(0x2a0fad8, 0x81 /* FUTEX_??? */, 1) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Guest uuid = 8ea65fd4-7b13-95a1-82e6-d9bd93c50f40\n", 50) = 50
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0008\0\0\0", 16) = 16
6310  write(5, "/vm/8ea65fd4-7b13-95a1-82e6-d9bd93c50f40/rtc/timeoffset\0", 56) = 56
6310  futex(0x2a0fb04, 0x80 /* FUTEX_??? */, 3 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0", 16) = 16
6423  read(5, "0", 1)                   = 1
6423  futex(0x2a0fb04, 0x85 /* FUTEX_??? */, 1) = 0
6423  read(5,  <unfinished ...>
6310  <... futex resumed> )             = -1 EAGAIN (Resource temporarily unavailable)
6310  futex(0x2a0fad8, 0x81 /* FUTEX_??? */, 1) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "Time offset set 0\n", 18) = 18
6310  open("/proc/mounts", O_RDONLY)    = 11
6310  fstat(11, {st_dev=makedev(0, 3), st_ino=19324, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/24-06:09:17, st_mtime=2009/02/24-06:09:17, st_ctime=2009/02/24-06:09:17}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(11, "rootfs / rootfs rw 0 0\nnone /sys sysfs rw,nosuid,nodev,noexec 0 0\nnone /proc proc rw,nosuid,nodev,noexec 0 0\nudev /dev tmpfs rw,mode=755 0 0\nfusectl /sys/fs/fuse/connections fusectl rw 0 0\n/dev/sdb14 / ext3 rw,relatime,errors=remount-ro,data=ordered 0 0\n/dev/sdb14 /dev/.static/dev ext3 ro,errors=remount-ro,data=ordered 0 0\ntmpfs /lib/init/rw tmpfs rw,nosuid,mode=755 0 0\nvarrun /var/run tmpfs rw,nosuid,mode=755 0 0\nvarlock /var/lock tmpfs rw,nosuid,nodev,noexec 0 0\ntmpfs /dev/shm tmpfs rw,nosuid,"..., 1024) = 723
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  open("/sys/class/xen/evtchn/dev", O_RDONLY) = -1 ENOENT (No such file or directory)
6310  open("/proc/mounts", O_RDONLY)    = 11
6310  fstat(11, {st_dev=makedev(0, 3), st_ino=19324, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=1024, st_blocks=0, st_size=0, st_atime=2009/02/24-06:09:17, st_mtime=2009/02/24-06:09:17, st_ctime=2009/02/24-06:09:17}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(11, "rootfs / rootfs rw 0 0\nnone /sys sysfs rw,nosuid,nodev,noexec 0 0\nnone /proc proc rw,nosuid,nodev,noexec 0 0\nudev /dev tmpfs rw,mode=755 0 0\nfusectl /sys/fs/fuse/connections fusectl rw 0 0\n/dev/sdb14 / ext3 rw,relatime,errors=remount-ro,data=ordered 0 0\n/dev/sdb14 /dev/.static/dev ext3 ro,errors=remount-ro,data=ordered 0 0\ntmpfs /lib/init/rw tmpfs rw,nosuid,mode=755 0 0\nvarrun /var/run tmpfs rw,nosuid,mode=755 0 0\nvarlock /var/lock tmpfs rw,nosuid,nodev,noexec 0 0\ntmpfs /dev/shm tmpfs rw,nosuid,"..., 1024) = 723
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  open("/sys/class/misc/evtchn/dev", O_RDONLY) = 11
6310  fstat(11, {st_dev=makedev(0, 0), st_ino=2083, st_mode=S_IFREG|0444, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_size=4096, st_atime=2009/02/24-06:06:31, st_mtime=2009/02/24-06:06:31, st_ctime=2009/02/24-06:06:31}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(11, "10:63\n", 4096)         = 6
6310  close(11)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  lstat("/dev/xen/evtchn", {st_dev=makedev(0, 12), st_ino=7935, st_mode=S_IFCHR|0660, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=0, st_rdev=makedev(10, 63), st_atime=2009/02/24-06:06:31, st_mtime=2009/02/24-06:06:31, st_ctime=2009/02/24-06:06:31}) = 0
6310  open("/dev/xen/evtchn", O_RDWR)   = 11
6310  ioctl(11, EVIOCGVERSION, 0x7fff36cd5220) = 28
6310  brk(0x2ab3000)                    = 0x2ab3000
6310  write(2, "populating video RAM at ff000000\n", 33) = 33
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  mlock(0x2a92000, 12288)           = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5100) = 1024
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  munlock(0x2a92000, 12288)         = 0
6310  write(2, "mapping video RAM from ff000000\n", 32) = 32
6310  mmap(NULL, 4194304, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c7dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd50e0) = 0
6310  gettimeofday({1235473757, 244375}, NULL) = 0
6310  open("/etc/localtime", O_RDONLY)  = 12
6310  fstat(12, {st_dev=makedev(8, 30), st_ino=90285, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3519, st_atime=2009/02/14-05:26:30, st_mtime=2009/02/14-05:26:29, st_ctime=2009/02/14-05:26:29}) = 0
6310  fstat(12, {st_dev=makedev(8, 30), st_ino=90285, st_mode=S_IFREG|0644, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=3519, st_atime=2009/02/14-05:26:30, st_mtime=2009/02/14-05:26:29, st_ctime=2009/02/14-05:26:29}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  read(12, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\0\0\0\0\353\0\0\0\4\0\0\0\20\236\246\36p\237\272\353`\240\206\0p\241\232\315`\242e\342p\243\203\351\340\244j\256p\2455\247`\246S\312\360\247\25\211`\2503\254\360\250\376\245\340\252\23\216\360\252\336\207\340\253\363p\360\254\276i\340\255\323R\360\256\236K\340\257\2634\360\260~-\340\261\234Qp\262gJ`\263|3p\264G,`\265\\\25p\266\'\16`\267;\367p\270\6\360`\271\33\331p\271\346\322`\273\4\365\360\273\306\264`\274\344\327\360\275\257\320\340\276\304\271\360\277\217\262\340\300\244\233\360\301o\224\340\302\204}\360\303Ov\340\304d_\360\305/X\340\306M|p\307\17:\340\310-^p\310\370W`\312\r@p\312\3309`\313\210\360p\322#\364p\322`\373\340\323u\344\360\324@\335\340\325U\306\360\326 \277\340\3275\250\360\330\0\241\340\331\25\212\360\331\340\203\340\332\376\247p\333\300e\340\334\336\211p\335\251\202`\336\276kp\337\211d`\340\236Mp\341iF`\342~/p\343I(`\344^\21p\345W.\340\346G-\360\3477\20\340\350\'\17\360\351\26\362\340\352\6\361\360\352"..., 4096) = 3519
6310  lseek(12, -2252, SEEK_CUR)        = 1267
6310  read(12, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0\0\0\0\354\0\0\0\5\0\0\0\24\377\377\377\377^\3\360\220\377\377\377\377\236\246\36p\377\377\377\377\237\272\353`\377\377\377\377\240\206\0p\377\377\377\377\241\232\315`\377\377\377\377\242e\342p\377\377\377\377\243\203\351\340\377\377\377\377\244j\256p\377\377\377\377\2455\247`\377\377\377\377\246S\312\360\377\377\377\377\247\25\211`\377\377\377\377\2503\254\360\377\377\377\377\250\376\245\340\377\377\377\377\252\23\216\360\377\377\377\377\252\336\207\340\377\377\377\377\253\363p\360\377\377\377\377\254\276i\340\377\377\377\377\255\323R\360\377\377\377\377\256\236K\340\377\377\377\377\257\2634\360\377\377\377\377\260~-\340\377\377\377\377\261\234Qp\377\377\377\377\262gJ`\377\377\377\377\263|3p\377\377\377\377\264G,`\377\377\377\377\265\\\25p\377\377\377\377\266\'\16`\377\377\377\377\267;\367p\377\377\377\377\270\6\360`\377\377\377\377\271\33\331p\377\377\377\377\271\346\322`\377\377\377\377\273\4\365\360\377\377\377\377"..., 4096) = 2252
6310  close(12)                         = 0
6310  munmap(0x7fae2ecd1000, 4096)      = 0
6310  fstat(1, {st_dev=makedev(8, 30), st_ino=2289612, st_mode=S_IFREG|0755, st_nlink=1, st_uid=0, st_gid=0, st_blksize=4096, st_blocks=8, st_size=525, st_atime=2009/02/24-06:09:16, st_mtime=2009/02/24-06:09:17, st_ctime=2009/02/24-06:09:17}) = 0
6310  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2ecd1000
6310  write(1, "Register xen platform.\n", 23) = 23
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5130) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  write(1, "Done register platform.\n", 24) = 24
6310  stat("/etc/disable-guest-log-throttle", 0x7fff36cd51c0) = -1 ENOENT (No such file or directory)
6310  mlock(0x7fff36cd5000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd5170) = 0
6310  munlock(0x7fff36cd5000, 4096)     = 0
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eba0000
6310  lseek(9, 0, SEEK_END)             = 16458753024
6310  lseek(9, 0, SEEK_SET)             = 0
6310  read(9, "\353\4M3.0\372\374\276\0|\277\0\6\214\310\216\320\211\364\216\300\216\330Q\271\0\1\363\245Y\351\0\212\373\264\2\315\26$\3<\3u\5\306\6a\7\1\273\276\7\271\4\0\200?\200t\16\203\303\20\342\366\275u\7\271\23\0\351\346\0\264\0\315\23S\264A\273\252U\271\0\0\315\23r?\201\373U\252u9\367\301\1\0t3\275\244\7\271\3\0\350\310\0[S\271\5\0fj\0f\377w\10f\3776\\\7j\1j\20\264B\211\346\315\23\237\203\304\20\236s{\264\0\315\23\342\335\353k\275\247\7\271\3\0\350\225\0[S\212\26`\7\264\10\315\23s\10\275b\7\271\23\0\353y\210\310$?\242Y\7\376\306\366\346\243Z\7\213G\10\213W\n\3676Z\7\211\303\211\320\3666Y\7\376\3040\311\210\375\301\351\2\200\341\300\10\341\210\335\210\306\212\26`\7\304\36\\\7\276\5\0\270\1\2\315\23s\22\264\0\315\23N\203\376\0u\357\275\210\7\271\16\0\353#\273\0|\201\277\376\1U\252t\10\275\226\7\271\v\0\353\20\212\26`\7^f\377\26\\\7\275\241\7\271\3\0\273O\0\350\f\0\315\30\200>a\7\0t\30\273\37\0`\270\1\23\272\0\27\315\20\260\7\271\1\0\315\20\264\0\315\26a\303\0\0\0\0|\0\0\200\0Can\'t re"..., 512) = 512
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eb7f000
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eb5e000
6310  lseek(8, 0, SEEK_END)             = 0
6310  mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fae2eb3d000
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0007\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/xen_extended_power_mgmt\0", 55 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 55
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "xs_read(/local/domain/0/device-model/1/xen_extended_power_mgmt): read error\n", 76) = 76
6310  clock_gettime(CLOCK_MONOTONIC, {179, 575561268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 575630745}) = 0
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\v\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/state\0", 37) = 37
6310  write(5, "running", 7 <unfinished ...>
6423  <... read resumed> "\v\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "OK\0", 3)                = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 7
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  pipe([12, 13])                    = 0
6310  write(13, "\0", 1)                = 1
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 3 (in [3 11 12], left {0, 9996})
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0*\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/params\0", 42 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0", 16) = 16
6423  read(5, "/dev/loop0", 10)         = 10
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 42
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  write(2, "medium change watch on `hdc\' (index: 0): /dev/loop0\n", 52) = 52
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0(\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/backend/vbd/1/5632/type\0", 40 <unfinished ...>
6423  <... read resumed> "\2\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0", 16) = 16
6423  read(5, "phy", 3)                 = 3
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 40
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  read(3, "33\0\0\0\26\342$\245\242\16\340\206\335`\0\0\0\0$\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\2\0\0\0\0\0\0\0\0\0\0\0\0\0\26:\0\5\2\0\0\1\0\217\0`\10\0\0\0\1\4\0\0\0\377\2\0\0\0\0\0\0\0\0\0\1\377\242\16\340", 4096) = 90
6310  clock_gettime(CLOCK_MONOTONIC, {179, 578418681}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 578497054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 578564137}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 2 (in [11 12], left {0, 9995})
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0,\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/logdirty/key\0", 44 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 44
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 579770532}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 579838371}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 2 (in [11 12], left {0, 9996})
6310  read(12, "\0", 1)                 = 1
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
6310  write(5, "\2\0\0\0\0\0\0\0\0\0\0\0\'\0\0\0", 16) = 16
6310  write(5, "/local/domain/0/device-model/1/command\0", 39 <unfinished ...>
6423  <... read resumed> "\20\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0", 16) = 16
6423  read(5, "ENOENT\0", 7)            = 7
6423  read(5,  <unfinished ...>
6310  <... write resumed> )             = 39
6310  rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 580878417}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 580945258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 581527387}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 581594210}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 581961292}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 582028468}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 582611103}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 582678052}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583045077}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583112035}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mlock(0x7fff36cd4000, 4096)       = 0
6310  ioctl(4, SNDCTL_DSP_RESET, 0x7fff36cd4fa0) = 0
6310  munlock(0x7fff36cd4000, 4096)     = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583691352}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 583758235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584135820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584202611}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584569764}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 584636588}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585002999}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585070286}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585436784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585503611}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585870410}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 585937264}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586304112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586370956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586737858}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 586804726}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587171880}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587238722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587605605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 587672435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588039364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588106609}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588473272}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588540080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588906973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 588973767}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589353009}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589419930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589787195}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 589854027}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590230020}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590296939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590663796}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 590730587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591096733}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591164081}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591530659}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591597462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 591964136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592031037}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592397862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592464634}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592831386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 592898216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593265046}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593331881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593698604}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 593765406}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594131817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594198952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594575453}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 594642526}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595009200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595075980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595442403}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595509098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595875823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 595942572}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596309150}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596375959}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596742471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 596809199}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597175385}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597242559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597608697}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 597675425}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598041743}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598108479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598474944}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598541716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598908268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 598975073}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599343205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599409930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599786851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 599853776}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600229749}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600296672}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600664906}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 600732116}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601098670}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601165430}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601532015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601598787}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 601965584}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602032411}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602399067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602465752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602832142}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 602898879}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603265030}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603332188}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603698323}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 603765042}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604133343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604200148}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604566618}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 604633343}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605009932}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605076856}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605443731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605510557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605877011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 605943867}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606310197}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606377361}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606743608}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 606810395}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607177048}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607243857}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607610295}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 607677148}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608043928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608110727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608477093}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608543838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608910222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 608977024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609344477}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609411578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609777447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 609844124}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610231440}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610298467}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610665998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 610732788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611099337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611166193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611533248}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611600065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 611966515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612033356}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612399803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612466971}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612833211}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 612900067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613267074}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613333895}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613700374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 613767158}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614134016}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614200821}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614567436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 614634259}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615000927}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615068194}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615444319}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615511166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615877379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 615944316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616309117}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616375802}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616740976}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 616807626}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617172447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617239276}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617605541}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 617670986}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618037161}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618102726}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618468802}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618534607}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618899092}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 618965862}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9994})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619334495}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619401216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619765926}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 619832690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620207252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620272772}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620648831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 620715918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621082144}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621148875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621512669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621579785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 621945014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622011708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622375523}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622442397}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622806634}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 622873500}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623238748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623304258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623670013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 623736749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624100256}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624167501}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624531328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624598130}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 624961735}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625028637}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625392644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625459500}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625833610}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 625900654}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626265227}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626330673}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626695892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 626761509}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627125374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627192392}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627556012}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627621446}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 627985336}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628052072}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628415803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628482597}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628846295}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 628911755}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629276727}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629343502}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629705898}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 629772979}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630147165}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630212781}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630576695}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 630642191}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631018960}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631084930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631449122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631514649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631878473}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 631944107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632308033}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632373551}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632736862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 632802676}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633166297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633231781}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633595683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 633661219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634023908}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634092294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634454668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634521509}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634884202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 634948351}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635301104}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635365505}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635718369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 635782483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636145318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636209914}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636563545}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636627745}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 636980972}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637045145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637400132}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637464371}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637817457}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 637881741}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638234941}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638299024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638652236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 638716460}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639071252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639135528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639488667}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639552903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639906010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 639970408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640333690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640397875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640751386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 640815565}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641168961}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641243193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641597010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 641661138}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642014125}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642078651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642431668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642495848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642848991}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 642913089}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643266298}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643330464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643683587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 643747682}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644100669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644165156}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644518189}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644582383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644935564}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 644999636}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645352846}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645417020}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645770363}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 645834557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646187316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646261569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646615212}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 646679265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647032111}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647096183}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647449206}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647513367}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647866262}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 647930357}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648283227}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648347601}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648700178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 648764237}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649118886}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649183068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649536108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649600206}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 649953307}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650025641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650378856}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650443251}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650796184}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 650860327}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651213822}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651289449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651643436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 651707466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652060354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652124470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652477688}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652541966}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652894756}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 652958902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653311922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653376050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653729076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 653793258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654146473}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654210649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654563663}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654627827}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 654980641}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655045050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655399719}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655463895}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655817062}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 655881218}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656234130}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656308221}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656662163}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 656726261}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657079018}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657143440}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657496280}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657560510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657913605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 657977802}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658330843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658394926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658747877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 658812065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659166322}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659230819}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659583470}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 659647658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660008234}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660074497}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660428053}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660492322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660845656}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 660909899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661263071}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661327340}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661690637}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 661754690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662107552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662171683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662524835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662588981}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 662941857}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663005950}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663358981}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663423176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663775654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 663839920}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664194341}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664258508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664611301}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 664675480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665028476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665092571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665445454}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665509582}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665862252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 665926727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666279134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666343214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666706546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 666770675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667123943}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667188201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667541514}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667605711}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 667958680}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668023156}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668376170}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668440304}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668793297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 668857459}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669212119}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669276325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669629372}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 669693530}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670055058}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670119725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670472820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670536903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670890011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 670954235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671307309}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671371449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671735190}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 671799362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672152535}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672217080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672570291}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672634557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 672989461}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673053742}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673407298}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673471549}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673824871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 673889153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674242352}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674306945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674660126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 674724360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675077875}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675142131}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675495427}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675559759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675913249}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 675977560}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676330574}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676395094}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676758700}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 676822942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677176647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677240905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677594551}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 677658865}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678012582}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678076974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678141165}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678495062}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678559400}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678912974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 678977605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9994})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679333312}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679397630}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679751452}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 679815799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680180939}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680245252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680599051}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 680663356}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681016807}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681081370}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681434779}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681499099}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681863231}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 681927437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682281047}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682345421}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682699118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 682763362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683116655}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683181232}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683534750}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683599042}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 683952644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684016880}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684370415}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684434756}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684788438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 684852781}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685205933}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685270603}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685624141}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 685688470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686042188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686106499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686459842}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686524138}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686887941}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 686952279}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687305673}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687370320}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687723759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 687788088}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688141707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688206030}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688559517}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688623750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 688977207}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689041593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689396398}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689460945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689814294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 689878629}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690241369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690305719}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690660859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 690725248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691078982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691143290}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691496856}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691561298}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691924448}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 691988756}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692342222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692406486}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692760173}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 692824496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693177884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693242168}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693595602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 693659910}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694013100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694078750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694432345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694496578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694849978}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 694914229}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695267596}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695331814}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695685289}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 695749612}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696102677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696167119}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696520112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696584346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 696947510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697011699}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697364887}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697429129}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697782427}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 697846705}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698199806}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698264443}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698617353}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 698681553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699034785}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699100449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699454070}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699518384}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699871647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 699935895}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700298169}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700362743}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700715892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 700780239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701133536}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701197805}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701551080}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701615346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 701978873}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702043163}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702396108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702460761}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702813870}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 702878047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703231369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703295686}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703648967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 703713239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704066312}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704130588}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704483503}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704548098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704901112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 704965408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705318484}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705382735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705736054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 705800396}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706153643}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706217981}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706570848}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706635435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 706998274}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707062599}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707416066}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707480382}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707833980}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 707898267}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708251628}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708315966}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708670634}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 708735175}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709089638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709154051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709507639}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709571815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709925221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 709989529}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710351690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710415998}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710768967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 710833541}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711186699}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711250989}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711604296}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 711668577}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712031685}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712096008}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712449283}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712513614}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712866838}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 712931269}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713284196}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713348510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713701668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 713765955}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714119388}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714183663}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714536857}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714601168}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 714954364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715018735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715371468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715435961}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715788852}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 715853164}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716206321}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716270507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716623646}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 716687960}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717051368}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717115691}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717468744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717533276}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717886248}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 717950521}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718303765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718368064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718720877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 718785197}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719139996}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719204259}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719557321}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719621928}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 719974796}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720047308}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720401044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720465286}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720818752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 720882980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721236141}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721300353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721653349}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 721717911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722082987}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722147649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722500887}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722565132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722918386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 722982574}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723335759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723400057}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723753078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 723817688}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724172253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724236507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724589943}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 724654230}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725007646}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725071956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725425187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725489441}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725842449}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 725907056}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726261864}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726326163}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726679360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 726743590}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727110896}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727175279}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727529407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727593790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 727947672}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728012178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728365866}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728430246}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728783930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 728848226}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729203780}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729268156}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729621890}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 729686216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730047606}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730112055}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730465758}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730530386}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730883900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 730948187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731302025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731366353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731720083}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 731784445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732148221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732212601}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732566223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732630911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 732984470}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733048814}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733402582}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733466950}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733820815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 733885207}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734238993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734303325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734656692}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 734721378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735074847}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735139200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735492806}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735557072}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735910826}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 735975236}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736329037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736393285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736746650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 736811329}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737172575}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737237012}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737590867}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 737655166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738009048}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738073461}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738427292}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738491756}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738845028}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 738909641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739264581}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739328885}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739682690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 739747067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740109067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740173423}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740527236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740591542}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 740944985}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741009554}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741362927}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741427277}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741780809}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 741845117}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742208537}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742272878}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742626524}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 742690894}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743044085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743108654}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743461749}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743526071}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743879523}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 743943833}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744298755}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744362994}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744716200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 744780481}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745133347}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745197967}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745550902}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745615270}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 745968476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746032760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746386095}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746450451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746803686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 746867982}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747230991}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747295725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747649098}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 747713337}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748066686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748131042}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748484412}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748548780}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748902198}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 748966414}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749320759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749385337}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749738440}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 749802602}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750163594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750227770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750581054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750645299}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 750998360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751062545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751415331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751479867}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751832749}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 751896970}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752259979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752324449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752678340}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 752742630}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753096324}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753160764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753514257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753578760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753932112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 753996447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754351940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754416248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754769798}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 754834172}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755187697}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755252041}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755605309}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 755669651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756022799}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756087503}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756440792}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756505007}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756858332}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 756922640}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757285389}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757350084}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757704215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 757768505}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758121728}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758186317}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758539544}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758603918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 758957318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759021578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759376397}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759440735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759794249}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 759858473}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760220091}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760284674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760638105}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 760702389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761055912}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761120154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761473707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761537937}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761893146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 761957430}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762320041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762385017}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762738405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 762802725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763156493}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763220771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763574417}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763638854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 763992658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764057048}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764410298}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764474900}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764828386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 764892710}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765246262}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765310639}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765664219}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 765728566}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766082245}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766146550}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766500004}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766564591}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766917790}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 766982134}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767335801}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767412826}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767767831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 767832184}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768186438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768250911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768605002}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 768669622}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769023349}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769089178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769443252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769507715}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769862014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 769926358}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770365680}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770470825}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770865010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 770929875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771284965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771349255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771702799}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 771767218}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772120444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772184806}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772538117}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772612483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 772966859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773031086}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773384645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773448849}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773802111}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 773866449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774219568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774284091}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774637096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 774701309}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775054706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775118985}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775472179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775536498}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775889818}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 775954036}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776306918}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776371472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776724627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 776788797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777141946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777206220}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777559558}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777633505}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 777988115}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778052426}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778116659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778471008}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778535472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778888878}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 778953522}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779308339}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779372677}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779728063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 779792431}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780156384}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780220605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780573922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780638185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 780991151}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781055642}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781408383}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781472535}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781825813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 781890040}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782243179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782307332}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782670386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 782735005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783088385}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783153019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783506297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783570515}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783923951}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 783988271}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784343501}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784407836}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784760877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 784825152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785178208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785242773}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785595844}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 785660155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786013489}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786077809}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786431039}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786495395}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786849026}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 786913211}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787266138}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787330722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787683879}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 787758386}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788111885}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788176028}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788529279}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788593578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 788946817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789010987}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789365642}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789430183}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789783003}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 789847227}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790220004}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790284273}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790637796}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 790702077}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791055554}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791119889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791473056}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791537412}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791890623}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 791954913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792308287}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792372535}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792726199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 792800394}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793154462}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793218740}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793572536}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793636787}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 793989666}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794054222}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794407303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794471613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794824744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 794889028}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795242361}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795306747}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795660079}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 795724297}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796077290}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796141892}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796494839}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796559157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796912476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 796976721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797329974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797394306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797749407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 797823297}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798176722}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798241296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798594316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 798677807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799031094}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799095327}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799450331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799514615}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799868063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 799932326}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800295184}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800359387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800712362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 800776817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801129836}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801194072}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801547059}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801611265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 801964599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802028901}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802382104}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802446286}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802799267}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 802863797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803227121}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803291366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803644635}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 803708825}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804061918}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804126196}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804479422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804543727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804896328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 804960818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805313784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805378148}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805731216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 805795464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806148568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806212846}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806565845}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806630090}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 806982954}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807047424}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807400187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807464483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807817538}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 807881760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808245449}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808309673}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808663013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 808727345}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809080790}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809146587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809499785}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809564069}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809917329}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 809981634}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810343551}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810407719}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810761011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 810825208}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811178342}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811242593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811595238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 811659630}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812012677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812076869}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812429862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812494101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812847073}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 812911243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813274968}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813339261}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813692281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 813756709}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814111381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814175723}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814529321}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814593499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 814946481}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815010684}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815365434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815429671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815782475}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 815846858}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816199986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816264132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816617260}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 816681523}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817034746}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817098911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817452081}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817516319}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817869360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 817933848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818300397}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818364654}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818718162}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 818782374}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819137176}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819201613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819555171}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819619419}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 819972476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820045512}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820399320}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820463633}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820817396}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 820881705}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821235653}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821299995}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821653667}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 821717954}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822071534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822136166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822489790}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822554030}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822907786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 822972043}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823336211}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823400528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823754330}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 823818614}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824172451}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824236861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824590507}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 824654854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825008356}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825072658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825426625}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825490894}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825844708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 825908962}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826262602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826326912}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826680208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 826744752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827098407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827162682}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827516373}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827580693}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827934429}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 827998671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828362303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828426566}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828779837}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 828844466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829200058}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829264339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829618019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 829682291}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830044658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830109133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830463096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830527332}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830880759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 830945355}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831298881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831363225}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831716793}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 831781140}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832135100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832199408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832553267}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832617619}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 832971277}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833035920}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833401595}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833465942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833819647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 833883913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834237550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834301900}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834655630}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 834719965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835072889}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835137439}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835490822}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835555115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835908647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 835972838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836326430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836390726}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836744105}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 836808449}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837161628}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837226106}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837579393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837643683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 837997224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838061508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838426470}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838490801}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838844265}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 838908576}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839263351}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839327820}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839681113}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 839745415}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840107346}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840171678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840525686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840589976}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 840943474}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841007767}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841361242}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841425577}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841778555}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 841843064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842196476}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842260799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842614238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 842678447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843032033}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843096350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843460072}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843524425}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843877820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 843942379}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844297255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844361531}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844715221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 844779508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845132974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845197278}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845550900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845615196}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 845968444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846033051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846386314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846450559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846803974}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 846868186}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847221820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847286125}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847639732}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 847704025}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848057614}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848122206}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848486668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848550964}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848905167}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 848969568}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849324835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849389137}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849743127}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 849807483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850169613}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850234265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850587771}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 850652031}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851007478}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851071807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851425546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851489932}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851843320}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 851907571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852261028}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852325606}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852679093}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 852743454}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853097058}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853161366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853525107}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853589462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 853943422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854007764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854361116}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854425738}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854779178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 854843518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855197139}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855261432}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855615093}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 855679473}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856033068}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856097325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856450758}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856515392}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856868769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 856933074}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857286650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857350890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857704518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 857768868}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858122534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858186893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858549992}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858614663}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 858968500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859032835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859388405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859452710}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859806422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 859870775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860233100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860297437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860650874}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 860715400}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861068672}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861132938}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861486646}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861550972}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861904352}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 861968596}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862322392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862386691}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862739864}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 862804348}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863157602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863221796}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863585078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 863649383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864003110}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864067229}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864420983}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864485189}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864838685}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 864902990}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865255650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865319842}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865673215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 865737394}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866090687}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866154962}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866508134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866572323}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866925357}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 866989641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867342706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867407120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867759993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 867824133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868177422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868241640}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868604784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 868670649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869024571}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869088837}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869443686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869508165}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869861494}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 869925846}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870287739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870352032}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870705510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 870769740}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871123126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871187366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871540550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871605107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 871958100}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872022378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872375910}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872440140}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872793528}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 872857815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873211222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873275472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873638620}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 873703392}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874057041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874123133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874476836}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874541153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874894820}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 874959080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875312430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875376613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875729824}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 875794447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876147634}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876211792}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876565270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876629488}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 876982883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877047152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877400615}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877464779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877817892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 877882541}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878235942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878300217}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878364587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878728454}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 878792854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879148515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879212931}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879566835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879631107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 879985077}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880059647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880413644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880478182}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880831618}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 880895908}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881249497}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881313760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881667645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 881731987}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882085698}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882149929}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882503473}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882568107}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882921660}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 882985884}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883339704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883404005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883767587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 883831909}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884185819}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884250187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884603662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 884668168}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885021678}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885086004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885439558}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885503772}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885857248}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 885921559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886275037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886339219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886693982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 886758589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887111896}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887176091}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887529455}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887593700}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 887947191}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888011433}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888365225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888429428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888792465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 888857224}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889212439}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889276867}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889630600}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 889694902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890058193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890122659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890476934}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890541293}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890894973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 890959653}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891313748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891378026}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891731968}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 891796393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892150494}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892214835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892568726}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892633133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 892986596}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893051128}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893404838}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893469334}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893833137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 893897522}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894250815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894315018}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894668541}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 894732793}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895086395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895150715}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895503930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895568013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895921324}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 895985620}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896339140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896403346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896756767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 896821030}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897174326}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897238568}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897591561}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 897656063}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898009266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898073382}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898426678}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898490935}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898856041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 898920734}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899275928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899340184}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899693734}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 899757980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900119891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900184199}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900537896}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900602075}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 900955552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901019764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901373143}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901437317}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901790678}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 901854887}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902207997}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902272365}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902625645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 902689947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903043153}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903107284}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903460762}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903525050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903888146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 903952735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904308827}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904373378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904726760}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 904790831}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905144207}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905208497}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905561975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905626157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 905979543}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906043823}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906396930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906461343}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906814354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 906878614}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907231973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907296209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907649468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 907713708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908066949}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908131131}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908484046}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908548510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908912816}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 908977516}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909332928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909397280}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909750984}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 909815234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910177697}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910242064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910595510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 910660012}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911013053}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911077355}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911430923}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911495087}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911848595}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 911912991}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912266469}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912330705}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912683860}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 912748485}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913101708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913165852}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913519225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913583539}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 913937026}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914011518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914365317}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914429589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914782998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 914847521}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915201029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915265253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915618881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 915683025}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916036620}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916100963}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916454445}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916518666}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916872102}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 916936683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917290044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917354307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917707875}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 917772150}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918125939}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918190139}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918543797}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918608093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 918961263}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919035243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919391605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919455844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919809364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 919873516}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920235615}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920299923}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920653635}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 920717871}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921071210}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921135514}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921488771}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921553016}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921906605}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 921970808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922326217}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922390388}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922743920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 922808285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923161841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923226101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923579414}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923643965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 923997317}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924073731}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924428626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924492907}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924846828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 924911088}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925265136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925329588}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925683168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 925747737}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926101206}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926165591}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926519381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926583599}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 926937494}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927001910}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927355774}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927420013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927773488}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 927838113}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928191687}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928255965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928609815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 928674105}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929027808}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929092056}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929457471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929521871}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929875305}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 929939843}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930301982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930366302}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930720137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 930784393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931137824}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931202149}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931555795}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931620011}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 931973294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932037947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932391146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932455382}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932809061}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 932873393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933226904}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933291068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933644618}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 933708947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934062212}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934128377}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934492243}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934556557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934910164}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 934974442}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935328225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935392527}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935746688}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 935810906}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936164324}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936228989}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936582323}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 936646514}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937000124}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937064498}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937418126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937482374}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937835906}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 937900283}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938253662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938318150}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938671547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 938735903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939089250}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939154800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939519501}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939583893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 939939168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940011716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940366560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940430997}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940784457}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 940848693}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941202263}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941266583}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941620304}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 941684590}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942038302}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942102542}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942456088}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942520336}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942873707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 942938302}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943291780}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943356002}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943709719}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 943774066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944127736}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944192023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944556493}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944620876}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 944974393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945038857}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945392224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945456508}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945810108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 945874294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946227928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946292259}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946645782}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 946709932}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947063149}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947127754}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947481280}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947545435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947898871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 947963125}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948316768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948381028}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948734707}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 948798892}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949153583}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949218110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949582379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 949646800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950008068}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950074643}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950428621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950492941}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950846931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 950911223}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951264986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951329398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951683140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 951747346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952101255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952165549}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952519362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952583583}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 952937400}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953001716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953355500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953419721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953773199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 953837759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954191351}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954255518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954619132}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 954683398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955036999}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955101222}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955455000}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955519263}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955872929}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 955937207}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956290563}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956354919}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956708484}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 956772678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957126507}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957190865}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957544556}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957610344}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 957964208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958028513}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958382000}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958446371}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958799780}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 958864082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959218925}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959283068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959647137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 959711517}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960073398}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960137662}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960491556}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960555936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960909423}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 960973650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961327101}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961391400}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961745118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 961809426}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962163053}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962227287}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962580765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962645046}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 962998359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963063009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963416379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963480603}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963834435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 963898791}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964254131}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964318481}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964682134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 964746502}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965099785}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965164303}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965517727}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965582059}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965935654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 965999890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966353509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966417889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966771343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 966835555}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967188797}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967253434}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967606751}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 967670963}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968024342}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968088656}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968442239}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968506529}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968860121}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 968924384}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969279063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969343577}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969707206}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 969771586}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970153308}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970222023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970605970}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 970674841}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9995})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971060037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971128337}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971503554}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971571782}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 971952452}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972021519}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972398907}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972467569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972847215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 972915964}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973297640}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973366051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973740768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 973808642}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974188813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974257606}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974637675}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 974706445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975100318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975168833}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975547362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975615479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 975995638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976064258}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976440706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976509266}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976891667}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 976960021}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977337223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977405238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977784597}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 977853537}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978232783}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978301483}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978370142}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978749148}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 978818004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979197363}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979265803}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979644441}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 979712822}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980095589}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980159825}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980523302}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980587154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 980938710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981003009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981354813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981418732}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981770273}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 981834174}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982185286}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982249427}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982600710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 982664608}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983016122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983080031}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983431590}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983495457}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983846843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 983910767}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984261883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984326038}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984679067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 984742926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985094407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985158275}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985519826}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985585391}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 985936869}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986000749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986352041}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986416250}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986767626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 986831584}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987183086}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987246966}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987598392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 987662353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988013924}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988077923}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988429069}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988493191}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988844394}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 988908306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989259877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989323763}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989675124}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 989739076}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990099830}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990163751}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990525560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990589746}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 990940938}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991004770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991356409}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991420238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991771659}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 991835554}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992186951}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992250918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992602021}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 992666167}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993017214}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993081046}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993432377}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993496218}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993847621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 993911486}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994262778}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994326633}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994677752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 994742090}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995093157}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995156890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995518509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995584066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995935397}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 995999241}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996350641}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996414545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996765888}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 996829807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997180886}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997244775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997596037}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 997659881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998011467}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998075428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998426810}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998490689}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998841973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 998905894}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999256953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999321062}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999672178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {179, 999736025}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115941}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542094}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 605980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 957385}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1021262}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1372395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1436496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1787498}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 1851339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2204275}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2268155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2619456}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 2683285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3034428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3098151}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3448928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3513039}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3863688}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 3927445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4278434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4342227}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4693181}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 4756968}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5107960}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5171765}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5533897}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5598315}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 5949344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6013095}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6364193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6427958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6779179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 6843101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7194126}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7257955}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7608861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 7673034}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8024054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8087847}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8439094}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8502899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8853931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 8917820}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9269039}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9332952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9683768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 9747902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10107984}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10172013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10523638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10599900}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 10951851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11015652}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11366816}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11430627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11781662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 11845571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12196549}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12260312}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12611431}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 12675254}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13026761}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13090650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13441712}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13505532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13856920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 13920835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14271660}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14335708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14686518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 14750305}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15101552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15165393}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15516643}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15582086}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 15943724}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16007658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16359201}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16423303}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16774422}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 16838289}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17189959}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17253901}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17605209}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 17669127}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18020626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18084434}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18435379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18499462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18850622}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 18914461}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19265744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19329650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19681080}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 19744873}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20108568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20172511}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20524202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20588342}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 20949921}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21013779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21365395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21429272}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21780843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 21844794}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22196344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22260272}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22611375}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 22675569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23026610}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23090469}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23441788}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23505695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23857029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 23920912}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24272129}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24336021}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24687199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 24751354}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25102366}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25166273}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25517912}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25583185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 25944619}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26008544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26359833}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26423686}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26774840}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 26838768}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27190039}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27253904}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27605217}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 27669052}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28020428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28084311}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28435531}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28499351}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28850844}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 28914747}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29265602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29329702}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29680632}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 29744479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30105019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30169069}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30520999}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30584891}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 30946391}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31010409}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31361946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31426017}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31777337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 31841294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32193189}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32257200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32608768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 32672722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33024383}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33088338}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33439534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33503707}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33855257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 33919229}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34270731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34334590}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34686149}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 34750008}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35101530}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35165446}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35516798}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35582474}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 35943813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36007842}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36359437}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36423389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36775172}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 36839310}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37191030}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37255018}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37608205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 37672525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38024216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38088149}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38439810}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38503771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38855698}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 38919610}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39271145}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39335117}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39686652}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 39750927}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40133122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40197098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40549225}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40613114}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 40974993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41038957}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41390935}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41454785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41806322}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 41870136}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42221695}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42285883}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42637367}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 42701328}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43053072}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43117006}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43468627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43532552}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43884380}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 43948278}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44299573}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44363758}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44715197}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 44778960}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45130662}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45194580}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45547930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45611983}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 45973570}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46037731}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46389245}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46453383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46804773}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 46868662}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47220640}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47284625}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47636354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 47700234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48051867}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48115750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48467204}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48531398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48882891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 48946864}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49298565}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49362544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49714013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 49777896}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50137573}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50201548}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50552535}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50616610}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 50967509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51041609}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51393889}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51457838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51809881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 51873905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52225793}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52289763}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52641133}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 52705411}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53056811}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53120765}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53472036}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53535988}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53887855}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 53951834}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54303386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54367359}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54718661}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 54782845}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55133975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55197882}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55552546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55616515}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 55967870}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56043189}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56395565}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56459376}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56810764}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 56874949}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57226364}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57290235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57641781}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 57705748}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58057229}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58121007}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58472434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58536326}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58887791}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 58952004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59303097}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59366989}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59718365}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 59782203}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60142222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60206060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60557331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60621181}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 60972108}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61036209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61397808}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61461838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61813803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 61877881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62229862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62293939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62645854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 62709926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63061454}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63125742}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63477238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63541255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63893233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 63957250}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64309015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64373054}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64724903}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 64788948}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65140384}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65204674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65557774}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65621792}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 65973518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66037524}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66399407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66463338}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66814376}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 66878235}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67229434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67293592}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67644786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 67708725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68060011}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68123844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68475007}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68538841}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68890257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 68954080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69305156}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69369323}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69720238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 69784082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70144861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70208815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70560805}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70624679}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 70976185}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71040071}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71401346}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71465463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71816710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 71880697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72232469}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72296399}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72647964}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 72711922}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73065313}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73129211}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73480425}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73544556}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73895971}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 73959854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74311311}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74375152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74726771}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 74790650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75142344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75206249}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75559343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75623651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 75975162}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76039080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76402794}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76466680}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76818460}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 76882358}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77234303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77298296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77650205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 77714223}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78065964}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78129874}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78193990}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78545567}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78609515}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 78961353}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79025262}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79376980}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79440905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79792700}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 79856688}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80219067}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80283312}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80634883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 80698828}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81050396}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81114266}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81476192}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81540237}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81891930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 81955897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82307467}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82371775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82723193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 82787157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83138841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83202793}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83554534}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83618489}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 83970194}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84034200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84385465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84449698}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84800924}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 84864852}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85216650}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85280593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85634051}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 85698098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86049827}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86113764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86478519}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86542782}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86894380}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 86958325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87310657}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87374668}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87726260}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 87790271}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88142103}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88206078}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88557559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88621759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 88973297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89037323}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89389263}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89453154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89804821}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 89868850}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90228988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90292964}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90646202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 90710522}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91061987}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91125872}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91487738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91551735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91903883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 91967946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92319768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92383710}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92735542}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 92799796}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93151459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93215423}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93567227}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93631239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 93983085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94047135}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94398892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94462813}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94814294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 94878623}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95230205}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95294180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95647728}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 95711829}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96063705}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96127684}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96488920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96553243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96905029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 96969233}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97320884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97384919}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97736930}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 97800930}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98152722}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98216761}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98568861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98632846}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 98984647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99048970}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99400621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99464602}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99816559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 99880487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100241167}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100305101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100656768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 100720708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101072047}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101136157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101487530}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101561917}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101913949}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 101977745}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102329510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102393462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102745611}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 102809469}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103161031}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103225231}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103576739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103640574}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 103992438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104056372}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104408218}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104472106}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104823881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 104887788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105239253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105303381}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105656188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 105720041}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106071821}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106135686}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106487415}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106561309}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106913008}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 106976822}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107328543}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107392719}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107744187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 107808001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108159931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108223817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108577328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108641175}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 108992928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109056829}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109408491}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109472569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109824199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 109888103}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110248410}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110312289}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110664216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 110728171}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111080089}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111143969}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111495654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111569693}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111922159}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 111986084}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112338161}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112402100}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112754216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 112818209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113170331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113234214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113585940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 113650114}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114001996}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114065977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114417982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114481886}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114833945}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 114897899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115249859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115313772}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115666858}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 115731082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116082982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116146853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116498888}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116572946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116925378}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 116989255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117341374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117405340}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117757343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 117821174}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118172967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118236915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118588842}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 118652671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119004691}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119068627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119420752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119484587}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119836715}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 119900622}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120261032}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120325040}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120676656}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 120740538}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121092359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121156221}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121507947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121571794}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121934075}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 121997968}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122349302}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122413951}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122765599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 122829416}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123181412}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123245367}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123597027}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 123660874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124012571}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124076543}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124427931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124492014}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124843502}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 124907408}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125259237}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125323111}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125676200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 125740062}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126093405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126157324}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126508859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126572945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 126936907}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127000724}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127352489}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127416428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127768086}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 127831945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128184003}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128247884}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128599418}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 128663624}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  write(2, "cirrus vga map change while on lfb mode\n", 40) = 40
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129102386}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129166838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129518368}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129582254}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129933965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 129997866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130358995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130422983}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130775033}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 130838939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131190043}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131254306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131605548}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 131679456}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132031649}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132095562}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132447282}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132511108}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132862712}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 132926663}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133278096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133342296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133693331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 133757250}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134108923}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134172859}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134524211}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134588064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 134939515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135003403}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135354465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135418690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135771547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 135835316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136186756}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136250650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136602125}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 136675973}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137027862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137091753}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137443357}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137507569}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137858577}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 137922484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138273988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138337844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138689085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 138752974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139122979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139187104}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139538462}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139602659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 139953996}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140026790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140383380}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140447292}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140799040}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 140862997}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141214292}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141278180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141629431}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 141693691}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142055849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142119888}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142529449}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142593466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 142945103}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143009066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143360921}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143424933}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143776216}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 143842027}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144193436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144257553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144608474}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 144672374}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145023816}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145087749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145439038}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145502963}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145855579}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 145919461}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146270490}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146334699}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146685817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 146749727}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147111736}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147175616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147527492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147591459}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 147942862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148006709}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148358025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148422252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148773314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 148837251}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149188492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149252260}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149603705}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 149667674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150028831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150092953}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150444018}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150508182}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150860861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 150924697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151276044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151339924}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151691264}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 151755111}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152116658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152180589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152531663}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152595815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 152947158}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153011095}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153362815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153426785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153778293}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 153842239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154194471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154258036}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  write(2, "I/O request not ready: 0, ptr: 0, port: e9, data: 20, count: 1, size: 1\n", 72) = 72
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154637560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 154701311}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 7161})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c6dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd47b0) = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158312940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158377499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9995})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158730882}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 158794737}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c5dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd47b0) = 0
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 159548651}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 159612755}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 159961945}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 160036295}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 8537})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 161866981}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 161931346}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162285828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162349974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162704772}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 162769012}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163122442}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163186938}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163539713}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163603853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 163957340}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164021466}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164374851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164439093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164792508}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 164856675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165209743}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165274201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165629200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 165693335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166047010}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166111195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166467344}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166531491}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166896282}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 166960252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167312903}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167377226}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167729737}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 167793674}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168146711}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168210735}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168563617}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168627671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 168980538}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169044496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169396869}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169461174}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169813769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 169877780}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170250522}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170314658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170668182}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 170732154}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171085316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171149387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171502276}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171566353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 171938508}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172002770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172355329}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172419260}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172771726}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 172835681}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173188434}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173252487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173604744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 173668650}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174020850}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174085182}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174437423}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174501417}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174854078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 174917972}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175270131}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175334065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175688136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 175751958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176103823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176168074}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176520303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176584219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 176947453}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177011411}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177364338}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177428283}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177780854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 177844913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178197604}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178261711}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178325666}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178678060}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 178742252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179094553}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179158487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179510938}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179574866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179927686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 179991613}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180370641}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180434760}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180788232}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 180852453}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181205060}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181269113}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181622337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 181686402}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182050882}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182114992}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182468635}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182532800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182886194}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 182950280}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183303609}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183367965}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183721002}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 183785098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184140393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184204480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184557736}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184621790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 184975199}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185039291}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185392009}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185456353}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185810993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 185875053}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186228273}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186292332}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186645670}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 186709703}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187073032}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187137155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187490234}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187554605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187907179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 187971176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188324405}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188388467}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188741458}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 188805484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189158420}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189222426}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189574940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189639233}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 189991995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190075195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190428439}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190492484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190845632}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 190909697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191262337}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191326316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191679111}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 191743164}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192106350}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192170607}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192523316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192587312}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 192940042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193004050}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193357031}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193421055}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193773647}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 193837628}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194190193}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194254501}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194606770}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 194670796}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195023789}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195087835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195440523}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195504520}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195858738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 195922818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196275362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196339634}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196692459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 196756528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197119708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197183737}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197536811}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197600945}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 197953986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198018037}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198371479}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198435628}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198788345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 198852339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199205173}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199269193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199622165}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 199686216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200057934}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200122194}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200475777}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200539788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200892505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 200956786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201309219}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201373153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201727735}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 201791786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202161090}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202225191}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202578322}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202642274}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 202994973}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203059269}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203411969}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203475962}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203828578}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 203892544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204245463}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204309462}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204662015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 204725922}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205078255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205142578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205495020}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205560436}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205913935}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 205977910}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206330927}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206394972}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206747863}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 206811827}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207174674}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207239048}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207591963}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 207656020}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208008923}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208072893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208426042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208490122}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208843088}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 208907112}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209259586}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209323915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209676617}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 209740581}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210113125}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210177376}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210530891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210595049}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 210948623}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211012808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211366061}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211430178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211783353}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 211847499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212210815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212274889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212628098}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 212692178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213045099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213109206}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213462215}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213526316}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213879099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 213943359}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214296190}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214360304}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214713222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 214777242}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215130203}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215194358}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215547420}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215612862}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 215965478}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216029876}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216382767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216446788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216799739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 216863799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217226829}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217290903}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217644157}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 217708300}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218060841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218125176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218477890}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218541977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218894922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 218958975}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219311873}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219375956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219730851}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 219794913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220167460}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220231860}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220584880}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 220648919}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221002107}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221066200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221419025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221483075}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221836233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 221900322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222263392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222327816}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222680684}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 222744752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223097925}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223161897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223514948}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223579082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223931988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 223995984}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224348621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224413031}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224765638}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 224829608}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225182602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225246694}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225601319}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 225665426}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226018204}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226082209}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226434447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226498807}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226851374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 226915356}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227278587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227342751}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227696202}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 227760366}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228113545}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228177701}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228530858}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228595118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 228948027}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229012120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229365185}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229429299}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229782702}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 229846750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230219444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230283518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230636457}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 230700388}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231053064}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231117447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231470063}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231533969}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231886977}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 231951007}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232314091}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232378285}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232731122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 232795155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233147480}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233211791}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233564236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233628589}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 233981468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234045339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234397928}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234462020}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234814435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 234878387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235230593}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235294901}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235648855}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 235712785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236065557}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236129553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236482235}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236546171}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236898761}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 236962736}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237326179}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237390847}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237744029}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 237808145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238161096}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238225087}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238578178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238642330}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 238995341}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239059308}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239411744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239476133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239828871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 239892931}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240265861}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240330118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240683378}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 240747425}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241100704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241164952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241517975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241582059}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241934956}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 241999063}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242362243}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242426647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242780326}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 242844493}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243197993}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243262058}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243615428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 243679649}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244032633}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244096977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244446704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244510409}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244866828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 244930908}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245284421}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245348601}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245703504}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 245767513}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246120213}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246184595}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246537226}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246601288}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 246954437}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247018490}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247381566}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247445889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247799172}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 247863339}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248216578}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248281003}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248634170}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 248698378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249052042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249116060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249469118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249533282}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249886509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 249950553}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250338147}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250402369}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250755548}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 250819643}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251173222}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251237350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251590616}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 251654627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252008007}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252072153}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252425304}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252501396}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252854942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 252919307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253272285}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253336389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253689919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 253754047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254107468}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254171564}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254524727}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254588913}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 254941579}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255005956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255360879}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255424999}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255779594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 255843596}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256196748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256260847}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256613800}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 256677743}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257030560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257094934}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257447310}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257521143}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257874947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 257939010}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258292099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258356098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258709235}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 258773360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259126030}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259190305}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259542965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259607000}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 259959966}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260043230}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260397085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260461088}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260814131}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 260878047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261230893}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261294992}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261647509}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 261711440}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262064271}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262128294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262481281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262555193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262909051}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 262973047}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263326140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263390124}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263742731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 263807060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264159759}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264223747}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264576539}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264640602}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 264993304}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265057292}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265410123}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265474132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265828424}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 265892720}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266245165}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266309192}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266661907}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 266725879}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267078803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267142811}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267495466}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267559367}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267922520}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 267986975}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268339528}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268403545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268756775}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 268820885}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269174501}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269238527}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269591374}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 269655454}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270025539}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270090524}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270443505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270507540}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270860318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 270924253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271277090}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271341101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271693813}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 271757708}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272110255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272174545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272526891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272590818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 272957847}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273021810}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273374710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273438773}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273791966}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 273855888}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274208435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274272620}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274625281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 274689310}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275042073}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275105996}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275459120}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275523138}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275877382}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 275941334}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276293926}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276358222}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276710984}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 276774861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277127845}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277191884}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277544676}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277608628}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 277972191}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278036319}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278100067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278452956}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278517066}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278869969}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 278934301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279286942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279350881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279704105}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 279768102}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280142362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280206592}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280560738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280624968}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 280978428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281042580}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281396046}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281460256}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281813818}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 281877976}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282232014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282296178}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282649953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 282723771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283077902}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283142060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283494763}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283559092}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283911893}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 283975980}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284328931}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284393023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284746232}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 284810255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285163078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285227149}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285581645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285646214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 285998883}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286062844}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286415912}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286479977}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286833024}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 286897111}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287250265}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287314334}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287667081}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 287731413}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288095099}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288159275}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288512505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288576586}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288929986}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 288994195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289347425}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289411496}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289764417}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 289828821}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290214594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290278797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290634027}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 290698301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291052087}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291116335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291470059}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291534187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291887399}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 291951644}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292304847}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292369295}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292722226}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 292786321}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293150621}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293214812}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293568123}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293632307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 293985825}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294050001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294402901}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294467335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294820418}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 294884603}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295237715}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295301834}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295656660}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 295720815}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296073978}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296138143}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296491208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296555647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296908293}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 296972391}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297325444}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297389507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297742389}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 297806544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298170431}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298234437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298586911}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 298651297}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299004102}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299068239}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299421123}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299485132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299838137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 299902289}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300275900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300339947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300692754}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 300756958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301109411}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301173437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301526281}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301590385}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 301943135}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302007225}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302360233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302424373}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302777025}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 302841123}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303204977}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303269407}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303622221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 303686335}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304039552}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304103632}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304456742}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304520897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304874301}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 304938300}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305290675}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305355067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305709390}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 305773545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306126239}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306190241}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306543252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306607357}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 306960017}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307024056}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307376629}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307441019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307793451}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 307857481}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308221224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308285379}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308640447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 308704525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309057737}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309121835}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309474384}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309538700}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309891224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 309955265}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310326686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310390617}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310743173}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 310807145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311159588}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311223575}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311576119}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311640302}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 311992519}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312056483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312409188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312473167}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312825627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 312889540}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313252950}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313317165}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313669748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 313734158}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314086992}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314151120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314504086}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314568242}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314921411}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 314985579}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315338362}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315402455}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315757175}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 315821600}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316174318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316238446}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316591627}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 316655816}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317008704}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317072838}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317425837}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317489924}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317842360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 317906728}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318269683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318333685}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318686427}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 318750451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319103546}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319167665}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319520314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319584277}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 319936884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320037295}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 2 (in [3 11], left {0, 9997})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  read(3, "33\377\242\16\340\342$\245\242\16\340\206\335`\0\0\0\0\30:\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\2\0\0\0\0\0\0\0\0\0\1\377\242\16\340\207\0\330\375\0\0\0\0\376\200\0\0\0\0\0\0\340$\245\377\376\242\16\340", 4096) = 78
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320494952}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320559033}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320912311}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 320976349}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321328983}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321392985}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321746287}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 321810344}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322163369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322227345}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322580350}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 322644314}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323007036}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323071448}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323424654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323488699}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323841889}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 323905984}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324259166}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324323241}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324675976}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 324739961}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325092626}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325156916}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325509426}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325573372}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325928258}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 325992248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326346957}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326411040}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326763844}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 326827790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327180073}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327244340}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327596953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 327660904}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328026818}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328090893}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328444658}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328508556}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328861181}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 328925219}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329278587}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329342671}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329695257}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 329759304}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330131947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330196157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330549150}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330613236}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 330966178}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331030162}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331382598}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331446616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331799226}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 331863390}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332215769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332279688}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332632819}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 332696741}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333059654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333124163}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333477428}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333541386}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333893705}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 333958055}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334310728}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334374676}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334727136}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 334791085}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335144066}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335207991}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335560370}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335625947}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 335978542}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336042766}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336394915}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336458878}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336811809}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 336875706}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337228134}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337292112}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337644800}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 337708713}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338070677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338135500}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338488945}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338553005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338906171}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 338970216}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339323550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339387645}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339740701}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 339804874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340176741}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340241552}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340594683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 340658877}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341012594}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341076722}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341429976}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341494161}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341847768}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 341911953}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342265162}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342329721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342683188}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 342747328}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343100776}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343176675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343530654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343594632}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 343947679}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344013463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344367013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344431159}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344783850}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 344847861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345201171}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345265147}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345619631}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 345683711}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346037090}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346101060}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346453966}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346518110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346871052}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 346935276}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347287897}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347351996}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347705280}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 347769303}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348121982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348196234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348550314}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348614421}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 348966849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349031333}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349384355}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349448435}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349801414}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 349865557}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350238823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350302975}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350656229}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 350720441}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351073765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351137929}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351490602}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351554757}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351908065}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 351972220}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352325339}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352389470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352742778}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 352806915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353159767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353234005}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353587809}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 353652093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354004772}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354068888}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354422330}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354486558}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354839455}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 354903616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355257075}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355321161}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355675865}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 355740352}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356093540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356157647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356510520}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356574639}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356927884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 356991974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357344895}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357408978}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357761789}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 357826159}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358178769}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358252869}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358607012}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 358671068}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359024034}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359088097}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359441167}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359505238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359857872}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 359922287}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360294054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360358110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360710953}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 360774983}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361128087}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361192152}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361544843}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361608899}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 361963721}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362027880}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362380631}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362445001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362797898}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 362861940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363214831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363278918}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363642711}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 363706849}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364059932}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364124123}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364477463}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364541621}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364894411}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 364958494}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365311694}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365375786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365730351}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 365794414}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366147575}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366211703}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366564606}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366628782}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 366981479}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367045715}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367398142}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367462255}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367815305}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 367879364}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368231956}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368296118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368659885}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 368723974}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369076536}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369140969}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369493729}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369557779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369910760}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 369974823}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370347540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370411681}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370764919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 370829080}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371182233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371246433}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371599223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 371663378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372016608}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372080775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372433869}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372497926}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372851146}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 372915233}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373267998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373332198}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373696436}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 373760858}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374114087}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374178248}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374531891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374596023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 374949252}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375013464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375367081}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375431200}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375786290}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 375850804}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376204168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376268318}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376621664}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 376685861}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377039654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377103875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377457101}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377521319}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377874450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 377938911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378291679}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378355841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378420131}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378784748}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 378848939}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379202007}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379266120}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379620815}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 379685013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380071275}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380135714}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380489492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380553647}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380906416}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 380970580}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381323848}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381388033}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381740919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 381805116}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382158435}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382222573}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382575835}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382640024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 382993112}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383057489}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383410270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383474482}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383838419}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 383902545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384255690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384319998}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384673402}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 384737524}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385090154}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385154675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385507740}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385571859}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385926359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 385990544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386343857}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386408082}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386761045}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 386825215}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387177947}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387242378}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387595182}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 387659394}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388012636}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388076759}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388429686}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388493946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388860767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 388924958}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389277783}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389342322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389695390}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 389759545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390132331}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390196585}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390549836}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390613871}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 390966492}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391030683}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391383505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391447619}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391799786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 391863941}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392216673}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392280750}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392633370}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 392697468}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393050305}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393114350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393466842}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393531022}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393894402}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 393958788}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394311407}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394375571}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394728831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 394792944}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395145825}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395210103}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395563393}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395629045}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 395981559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396046017}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396398794}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396462874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396815772}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 396879885}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397232825}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397296941}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397651721}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 397715927}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398068654}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398132971}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398485335}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398549463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398912731}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 398976853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399329779}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399393940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399746942}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 399811101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400184187}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400248399}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400601057}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 400665101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401017755}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401081868}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401434784}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401498950}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401851653}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 401915790}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402268706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402332858}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402685387}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 402749716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403102359}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403166448}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403519231}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403583365}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 403946450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404010491}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404363391}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404427609}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404780767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 404844914}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405197463}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405261659}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405616258}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 405680350}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406033316}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406097510}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406450710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406514853}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406867699}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 406931897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407284459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407348775}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407701430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 407765615}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408118746}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408182848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408535541}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408599712}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 408962975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409027032}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409379371}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409443831}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409796450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 409860573}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410233153}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410297305}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410650664}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 410714687}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411067291}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411131488}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411484922}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411549002}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411901147}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 411965240}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412318050}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412382083}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412734687}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 412798943}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413151900}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413215942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413568540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413632749}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 413997115}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414061470}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414413994}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414478104}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414831166}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 414895234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415249988}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415314185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415668558}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 415732651}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416084937}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416149320}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416501909}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416566019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416918698}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 416982802}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417335598}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417399660}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417752309}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 417816440}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418169038}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418233322}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418585515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 418649605}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419012848}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419077093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419430346}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419494520}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419847965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 419912201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420284739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420349001}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420702135}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 420766518}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421119593}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421183784}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421537208}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421601360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 421954519}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422018695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422372047}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422436166}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422789168}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 422853653}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423206730}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423270834}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423624013}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 423688180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424053639}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424117779}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424470880}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424534990}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424887833}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 424952201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425304884}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425368986}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425724455}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 425788502}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426141438}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426205459}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426558500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426622542}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 426975044}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427039483}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427392183}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427456176}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427809172}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 427873247}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428226521}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428290574}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428643460}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 428707531}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429070957}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429135445}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429488453}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429552525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429905862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 429969946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430354078}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430418240}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430771823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 430835936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431189189}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431253399}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431606584}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 431670661}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432023744}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432087887}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432441347}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432505454}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432860403}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 432924504}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433277962}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433342063}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433694867}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 433759253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434122915}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434187013}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434540471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434604644}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 434958254}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435022451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435375644}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435439952}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435794916}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 435859373}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436212256}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436276387}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436629967}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 436694065}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437047164}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437111336}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437464491}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437528581}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437881268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 437945795}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438298881}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438362889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438715939}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 438780067}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439141496}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439205702}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439559019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439623203}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 439976266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440058866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440412266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440476437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440829720}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 440893800}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441247023}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441311083}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441664390}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 441728480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442081008}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442145409}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442498345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442562414}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442915395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 442979463}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443332821}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443396914}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443749862}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 443813957}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444177278}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444241694}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444594849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 444658995}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445012464}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445076511}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445429752}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445493946}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445848730}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 445912784}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446265348}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446329692}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446682643}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 446746679}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447100148}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447164294}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447517365}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447581499}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447934532}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 447998543}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448351272}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448415592}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448768145}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 448832252}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449195474}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449259528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449612508}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 449676487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450048747}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450113201}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450466767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450530820}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450885336}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 450949545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451302242}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451366203}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451719303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 451783177}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452136050}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452200074}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452553085}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452617064}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 452969448}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453033808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453386684}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453450641}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453803491}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 453867478}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454230317}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454294535}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454647950}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 454712091}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455065266}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455129690}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455482450}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455546578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455901547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 455965642}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456318965}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456383093}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456736451}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 456800520}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457153297}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457217716}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457570673}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457634709}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 457987998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458052187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458405767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458469808}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458822909}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 458887043}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459249669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459314434}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459667253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 459731301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460103663}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460167785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460521150}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460585364}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 460938738}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461002863}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461356042}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461420251}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461773238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 461837321}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462190255}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462254362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462607789}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 462671897}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463025069}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463089108}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463442421}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463506472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463859213}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 463923551}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464286186}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464350677}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464704221}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 464768343}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465122001}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465186096}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465539236}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465604984}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 465958708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466023145}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466375946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466440075}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466793355}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 466857507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467210557}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467274799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467627969}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 467692160}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468044961}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468109476}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468463871}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468528044}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468881510}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 468945725}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469299137}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469373545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469727464}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 469791619}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470165480}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470229770}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470583057}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 470647307}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471000538}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471064643}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471417875}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471482180}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471835518}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 471899583}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472252540}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472316797}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472669919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 472734296}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473086998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473151160}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473504578}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473568778}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473921885}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 473986187}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474339270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474413567}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474767399}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 474832051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475185488}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475249721}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475604535}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 475669256}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476023135}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476087360}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476440828}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476505035}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476858303}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 476922911}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477276116}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477340469}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477693989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 477758195}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478111617}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478175903}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478240038}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478593899}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 478658027}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479011251}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479075532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479438893}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479503764}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479856940}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 479921119}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480295972}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480360098}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480712989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 480777192}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481130559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481194678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481547270}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481611464}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 481964224}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482028325}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482381459}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482445617}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482798706}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 482862822}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483215118}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483279171}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483632068}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 483696146}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484048253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484112503}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484479786}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484544453}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484898500}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 484962656}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485316190}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485380427}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485735629}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 485799905}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486153395}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486219526}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486572720}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486636890}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 486990467}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487054631}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487407891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487472157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487825486}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 487889664}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488242367}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488306909}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488660054}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 488724126}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489077155}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489141352}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489494854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489569397}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489922824}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 489987019}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490360933}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490425115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490777746}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 490841785}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491195034}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491259127}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491611982}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 491676122}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492029223}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492093234}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492445979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492510096}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492862831}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 492927139}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493279482}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493343544}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493696774}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 493760837}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494113599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494177739}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494530754}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494604970}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 494958424}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495022882}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495375877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495439936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495794690}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 495858866}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496212497}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496276673}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496629681}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 496693837}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497046955}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497111437}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497464433}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497528543}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497881979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 497946096}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498299101}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498363301}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498716665}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 498780701}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499133343}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499197786}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499550919}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499624881}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 499978326}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500062812}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500416565}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500480670}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500833803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 500897940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501251076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501315115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501667683}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 501731757}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502085020}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502149004}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502501961}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502566024}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502919197}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 502983220}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503335839}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503399868}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503752595}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 503816875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504171354}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504235344}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504588277}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 504652262}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505015975}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505080100}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505433527}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505497550}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505852055}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 505916157}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506268994}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506333101}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506685505}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 506749534}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507102830}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507166892}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507519708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507583777}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 507936755}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508000799}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508353238}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508417552}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508770437}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 508834404}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509187128}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509251193}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509604389}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 509668487}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510050803}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510115059}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510468271}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510532591}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510884920}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 510948829}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511301849}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511365771}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511718332}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 511782383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512135148}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512199022}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512551153}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512615443}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 512967981}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513031902}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513384198}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513448155}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513801184}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 513865133}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514217599}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514281593}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514633933}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 514698214}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515061586}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515125684}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515478926}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515542874}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515897218}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 515961277}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516314420}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516378383}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516730410}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 516794714}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517147369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517211362}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517564014}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517627924}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 517981588}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518045617}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518397979}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518461936}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518814522}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 518878752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519231104}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519295062}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519648019}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 519711956}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520094219}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520158243}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520511877}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520575852}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520928765}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 520992848}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521345656}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521409940}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521764200}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 521828253}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522181677}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522245656}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522598469}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 522662579}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523015710}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523079695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523431811}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523496185}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523848998}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 523913009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524265739}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524329675}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524682720}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 524746695}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525110430}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525174507}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525527267}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525591578}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 525945404}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526009472}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526362333}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526426306}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526778892}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 526842942}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527195854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527259860}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527612002}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 527676364}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528028866}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528092889}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528445559}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528509616}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528862810}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 528926818}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529279447}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529343536}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529696140}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 529760523}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530179076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530243537}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530597372}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 530661532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531014679}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531078831}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531432345}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531496488}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531849448}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 531913627}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532266767}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532331177}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532683859}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 532748023}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533101408}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533165584}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533518365}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533582529}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 533935995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534000118}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534352817}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534417299}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534770259}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 534834384}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535197516}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535261545}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535616143}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 535680527}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536033268}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536097429}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536450294}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536514479}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536866642}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 536930849}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537283722}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537347862}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537700502}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 537764657}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538117563}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538181658}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538534035}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538598226}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 538950812}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539015081}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539367349}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539431451}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539786249}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 539850389}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540243328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540307564}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540661465}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 540725743}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541078830}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541143126}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541496060}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541560280}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541913241}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 541977480}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542330865}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542395089}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542748079}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 542812357}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543165515}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543229778}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543582076}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543646525}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 543999461}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544063697}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544416544}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544480678}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544833823}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 544898078}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545261392}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545325660}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545680396}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 545744854}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546097703}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546161915}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546515286}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546579528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546932416}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 546996817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547350253}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547414447}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547767186}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 547831739}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548184645}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548248875}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548601854}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 548666054}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549019547}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549083783}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549436841}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549501110}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549854097}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 549918611}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550301568}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550365687}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550718782}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 550782817}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551135471}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551199528}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551552521}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551616559}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 551968995}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552033132}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552385560}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552449804}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552801989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 552866051}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553218946}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553282987}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553635708}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 553699791}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554052620}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554116679}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554468669}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554533115}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554885464}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 554949532}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555314328}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555378484}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555733318}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 555797390}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556150335}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556214514}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556567636}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556631734}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 556984185}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557048257}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557402891}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557467049}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557820122}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 557884314}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558237561}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558301594}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558654129}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 558718284}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559070989}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559135202}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559487628}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559551720}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559904668}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 559968752}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560353684}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560417687}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560770826}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 560834883}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561187379}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561251450}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561604009}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 561668009}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562020487}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562084471}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562437381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562501404}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562853882}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 562917935}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563270608}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563334742}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563686819}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 563751061}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564103614}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564167635}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564520340}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564584313}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 564937308}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565001398}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565364015}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565428128}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565782233}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 565847355}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566199360}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566263326}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566616107}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 566680061}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567032381}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567096428}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567449239}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567513238}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567865369}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 567929736}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  ioctl(11, EVIOCGKEYCODE, 0x7fff36cd50f0) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 568281550}) = 0
6310  clock_gettime(CLOCK_MONOTONIC, {180, 568345855}) = 0
6310  select(13, [3 6 10 11 12], [], [], {0, 10000}) = 1 (in [11], left {0, 9996})
6310  read(11, "\34\0\0\0", 4)          = 4
6310  write(11, "\34\0\0\0", 4)         = 4
6310  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0x7fae2c4dd000
6310  ioctl(4, SNDCTL_DSP_STEREO, 0x7fff36cd47b0) = 0
6310  --- SIGBUS (Bus error) @ 0 (0) ---
6423  +++ killed by SIGBUS +++

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-24 11:38                     ` Boris Derzhavets
@ 2009-02-25 14:28                       ` Andrew Lyon
  2009-02-25 15:10                         ` Boris Derzhavets
                                           ` (2 more replies)
  0 siblings, 3 replies; 36+ messages in thread
From: Andrew Lyon @ 2009-02-25 14:28 UTC (permalink / raw)
  To: Boris Derzhavets
  Cc: Jeremy Fitzhardinge, xen-devel@lists.xensource.com, Ian Jackson,
	Ian Campbell

On Tue, Feb 24, 2009 at 11:38 AM, Boris Derzhavets
<bderzhavets@yahoo.com> wrote:
> I fixed error in hvm profile and got a similar qemu-dm.strace (
> /usr/lib64/.../qemu-dm).
>
> --- On Mon, 2/23/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
>
> From: Jeremy Fitzhardinge <jeremy@goop.org>
> Subject: Re: [Xen-devel] HVM pvops failures
> To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
> Cc: "Andrew Lyon" <andrew.lyon@gmail.com>, "xen-devel@lists.xensource.com"
> <xen-devel@lists.xensource.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
> Date: Monday, February 23, 2009, 7:12 PM
>
> Ian Jackson wrote:
>> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
> [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>>
>>> On Mon, Feb 23, 2009 at 2:53 PM, Ian
>  Jackson
> <Ian.Jackson@eu.citrix.com> wrote:
>>>
>>>> These messages are not very surprising.  Is it working ?
>>>>
>>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
> this error:
>>>
>>
>> Ah.  This is rather odd.  Normally I would hope that xend would report
>> an exit status.  (I haven't tried pvops with qemu.)
>>
>>
> Hm, I'm getting:
> [2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model
> failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log
>
> Hm, signal 7 - SIGBUS.  I wonder if
>
> Using stub domains doesn't work either.
>
>> I would suggest running qemu-dm under strace.  This can be done easily
>> enough with a simple wrapper script, something like:
>>   #!/bin/sh
>>   set -e
>>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>>
>  /usr/lib/xen/bin/qemu-dm "$@"
>> and then give the name of the script as device_model in your config file.


Is there anything more I can do to help debug this problem? I am eager
to do more testing with pv_ops and I have time to do it at the moment,
but hvm support is currently broken so there is little I can do with
my test box.

Thx
Andy

>>
> I see:
>
> ...
> 5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539747423}) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539837298}) = 0
> 5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0,
> 9995})
> 5079  read(10, "\36\0\0\0"..., 4)       = 4
> 5079  write(10, "\36\0\0\0"..., 4)      = 4
> 5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540495964}) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540591278}) = 0
> 5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left {0,
> 9995})
> 5079  read(10, "\36\0\0\0"..., 4)       = 4
> 5079  write(10, "\36\0\0\0"..., 4)      = 4
> 5079  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) =
> 0x7f1ad5f2b000
> 5079
>  ioctl(4, SNDCTL_DSP_STEREO, 0x7fffdfd52230) = 0
> 5079  --- SIGBUS (Bus error) @ 0 (0) ---
> 5157  +++ killed by SIGBUS +++
>
>
> This mmap and ioctl is from /proc/xen/privcmd.
>
>     J
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-25 14:28                       ` Andrew Lyon
@ 2009-02-25 15:10                         ` Boris Derzhavets
  2009-02-25 23:57                           ` Jeremy Fitzhardinge
  2009-02-25 15:41                         ` Boris Derzhavets
  2009-02-25 21:02                         ` Jeremy Fitzhardinge
  2 siblings, 1 reply; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-25 15:10 UTC (permalink / raw)
  To: Andrew Lyon
  Cc: Jeremy Fitzhardinge, xen-devel@lists.xensource.com, Ian Jackson,
	Ian Campbell


[-- Attachment #1.1: Type: text/plain, Size: 3968 bytes --]

Hi Andy,

Stubdoms fail as well ( as Jeremy suspected).
QEMU is  obviously important issue for pv-ops in Dom0.

Boris.

--- On Wed, 2/25/09, Andrew Lyon <andrew.lyon@gmail.com> wrote:
From: Andrew Lyon <andrew.lyon@gmail.com>
Subject: Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)
To: "Boris Derzhavets" <bderzhavets@yahoo.com>
Cc: "Jeremy Fitzhardinge" <jeremy@goop.org>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
Date: Wednesday, February 25, 2009, 9:28 AM

On Tue, Feb 24, 2009 at 11:38 AM, Boris Derzhavets
<bderzhavets@yahoo.com> wrote:
> I fixed error in hvm profile and got a similar qemu-dm.strace (
> /usr/lib64/.../qemu-dm).
>
> --- On Mon, 2/23/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
>
> From: Jeremy Fitzhardinge <jeremy@goop.org>
> Subject: Re: [Xen-devel] HVM pvops failures
> To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
> Cc: "Andrew Lyon" <andrew.lyon@gmail.com>,
"xen-devel@lists.xensource.com"
> <xen-devel@lists.xensource.com>, "Ian Campbell"
<Ian.Campbell@citrix.com>
> Date: Monday, February 23, 2009, 7:12 PM
>
> Ian Jackson wrote:
>> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
> [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>>
>>> On Mon, Feb 23, 2009 at 2:53 PM, Ian
>  Jackson
> <Ian.Jackson@eu.citrix.com> wrote:
>>>
>>>> These messages are not very surprising.  Is it working ?
>>>>
>>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
> this error:
>>>
>>
>> Ah.  This is rather odd.  Normally I would hope that xend would report
>> an exit status.  (I haven't tried pvops with qemu.)
>>
>>
> Hm, I'm getting:
> [2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model
> failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log
>
> Hm, signal 7 - SIGBUS.  I wonder if
>
> Using stub domains doesn't work either.
>
>> I would suggest running qemu-dm under strace.  This can be done easily
>> enough with a simple wrapper script, something like:
>>   #!/bin/sh
>>   set -e
>>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>>
>  /usr/lib/xen/bin/qemu-dm "$@"
>> and then give the name of the script as device_model in your config
file.


Is there anything more I can do to help debug this problem? I am eager
to do more testing with pv_ops and I have time to do it at the moment,
but hvm support is currently broken so there is little I can do with
my test box.

Thx
Andy

>>
> I see:
>
> ...
> 5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539747423}) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539837298}) = 0
> 5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left
{0,
> 9995})
> 5079  read(10, "\36\0\0\0"..., 4)       = 4
> 5079  write(10, "\36\0\0\0"..., 4)      = 4
> 5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540495964}) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540591278}) = 0
> 5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left
{0,
> 9995})
> 5079  read(10, "\36\0\0\0"..., 4)       = 4
> 5079  write(10, "\36\0\0\0"..., 4)      = 4
> 5079  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) =
> 0x7f1ad5f2b000
> 5079
>  ioctl(4, SNDCTL_DSP_STEREO, 0x7fffdfd52230) = 0
> 5079  --- SIGBUS (Bus error) @ 0 (0) ---
> 5157  +++ killed by SIGBUS +++
>
>
> This mmap and ioctl is from /proc/xen/privcmd.
>
>     J
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 4897 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-25 14:28                       ` Andrew Lyon
  2009-02-25 15:10                         ` Boris Derzhavets
@ 2009-02-25 15:41                         ` Boris Derzhavets
  2009-02-25 21:02                         ` Jeremy Fitzhardinge
  2 siblings, 0 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-25 15:41 UTC (permalink / raw)
  To: Andrew Lyon
  Cc: Jeremy Fitzhardinge, xen-devel@lists.xensource.com, Ian Jackson,
	Ian Campbell


[-- Attachment #1.1: Type: text/plain, Size: 4859 bytes --]

  1.You can install a lot of PV DomUs i guess via two pygrub profiles,
first one to install DomU, second one to load DomU, for guests having 
distros on DVDs with xen-inified or pv_ops (DomU) enabled kernel. 
It works fine, through my experience. Details here:-


http://lxer.com/module/newswire/view/112300/index.html

F10 has been tested.


 2. For Ubuntu( or Debian)  DomUs  "debootstrap port"  to your Xen Unstable
Dom0 will allow straight forward installations. I prefer trick with HVM
image prebuilt for corresponding PV DomU pygrub's profile at Xen 3.3.X Dom0s. However, now i  learned debootstrap (debian tool) and liked it very much ;). Details here:-

http://lxer.com/module/newswire/view/114465/index.html

Ubuntu Intrepid Server (64 bit) has been tested

 3. You can try to install OpenSolaris 2008/11 or Solaris Nevada
PV DomU on ZFS. That's really tuff. Pygrub won't help you to
read Sun's the most recent ZFS images. 

Details here:-
http://www.neuhalfen.name/drupal/node/3


--- On Wed, 2/25/09, Andrew Lyon <andrew.lyon@gmail.com> wrote:
From: Andrew Lyon <andrew.lyon@gmail.com>
Subject: Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)
To: "Boris Derzhavets" <bderzhavets@yahoo.com>
Cc: "Jeremy Fitzhardinge" <jeremy@goop.org>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
Date: Wednesday, February 25, 2009, 9:28 AM

On Tue, Feb 24, 2009 at 11:38 AM, Boris Derzhavets
<bderzhavets@yahoo.com> wrote:
> I fixed error in hvm profile and got a similar qemu-dm.strace (
> /usr/lib64/.../qemu-dm).
>
> --- On Mon, 2/23/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
>
> From: Jeremy Fitzhardinge <jeremy@goop.org>
> Subject: Re: [Xen-devel] HVM pvops failures
> To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
> Cc: "Andrew Lyon" <andrew.lyon@gmail.com>,
"xen-devel@lists.xensource.com"
> <xen-devel@lists.xensource.com>, "Ian Campbell"
<Ian.Campbell@citrix.com>
> Date: Monday, February 23, 2009, 7:12 PM
>
> Ian Jackson wrote:
>> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
> [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>>
>>> On Mon, Feb 23, 2009 at 2:53 PM, Ian
>  Jackson
> <Ian.Jackson@eu.citrix.com> wrote:
>>>
>>>> These messages are not very surprising.  Is it working ?
>>>>
>>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
> this error:
>>>
>>
>> Ah.  This is rather odd.  Normally I would hope that xend would report
>> an exit status.  (I haven't tried pvops with qemu.)
>>
>>
> Hm, I'm getting:
> [2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model
> failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log
>
> Hm, signal 7 - SIGBUS.  I wonder if
>
> Using stub domains doesn't work either.
>
>> I would suggest running qemu-dm under strace.  This can be done easily
>> enough with a simple wrapper script, something like:
>>   #!/bin/sh
>>   set -e
>>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>>
>  /usr/lib/xen/bin/qemu-dm "$@"
>> and then give the name of the script as device_model in your config
file.


Is there anything more I can do to help debug this problem? I am eager
to do more testing with pv_ops and I have time to do it at the moment,
but hvm support is currently broken so there is little I can do with
my test box.

Thx
Andy

>>
> I see:
>
> ...
> 5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539747423}) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 539837298}) = 0
> 5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left
{0,
> 9995})
> 5079  read(10, "\36\0\0\0"..., 4)       = 4
> 5079  write(10, "\36\0\0\0"..., 4)      = 4
> 5079  ioctl(10, EVIOCGKEYCODE, 0x7fffdfd52b70) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540495964}) = 0
> 5079  clock_gettime(CLOCK_MONOTONIC, {1324, 540591278}) = 0
> 5079  select(14, [3 6 10 11 13], [], [], {0, 10000}) = 1 (in [10], left
{0,
> 9995})
> 5079  read(10, "\36\0\0\0"..., 4)       = 4
> 5079  write(10, "\36\0\0\0"..., 4)      = 4
> 5079  mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) =
> 0x7f1ad5f2b000
> 5079
>  ioctl(4, SNDCTL_DSP_STEREO, 0x7fffdfd52230) = 0
> 5079  --- SIGBUS (Bus error) @ 0 (0) ---
> 5157  +++ killed by SIGBUS +++
>
>
> This mmap and ioctl is from /proc/xen/privcmd.
>
>     J
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 5854 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-25 14:28                       ` Andrew Lyon
  2009-02-25 15:10                         ` Boris Derzhavets
  2009-02-25 15:41                         ` Boris Derzhavets
@ 2009-02-25 21:02                         ` Jeremy Fitzhardinge
  2009-02-26 11:35                           ` Ian Jackson
  2 siblings, 1 reply; 36+ messages in thread
From: Jeremy Fitzhardinge @ 2009-02-25 21:02 UTC (permalink / raw)
  To: Andrew Lyon
  Cc: Boris Derzhavets, xen-devel@lists.xensource.com, Ian Jackson,
	Ian Campbell

Andrew Lyon wrote:
> On Tue, Feb 24, 2009 at 11:38 AM, Boris Derzhavets
> <bderzhavets@yahoo.com> wrote:
>   
>> I fixed error in hvm profile and got a similar qemu-dm.strace (
>> /usr/lib64/.../qemu-dm).
>>
>> --- On Mon, 2/23/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
>>
>> From: Jeremy Fitzhardinge <jeremy@goop.org>
>> Subject: Re: [Xen-devel] HVM pvops failures
>> To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
>> Cc: "Andrew Lyon" <andrew.lyon@gmail.com>, "xen-devel@lists.xensource.com"
>> <xen-devel@lists.xensource.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
>> Date: Monday, February 23, 2009, 7:12 PM
>>
>> Ian Jackson wrote:
>>     
>>> Andrew Lyon writes ("Re: [Xen-devel] HVM guest question (was Re:
>>>       
>> [PATCH] ioemu: Cleanup the code of PCI passthrough.)"):
>>     
>>>> On Mon, Feb 23, 2009 at 2:53 PM, Ian
>>>>         
>>  Jackson
>> <Ian.Jackson@eu.citrix.com> wrote:
>>     
>>>>> These messages are not very surprising.  Is it working ?
>>>>>
>>>>>           
>>>> No, when try to start HVM on Xen unstable with pv_ops kernel I get
>>>>         
>> this error:
>>     
>>> Ah.  This is rather odd.  Normally I would hope that xend would report
>>> an exit status.  (I haven't tried pvops with qemu.)
>>>
>>>
>>>       
>> Hm, I'm getting:
>> [2009-02-23 15:26:18 4380] WARNING (image:482) domain win7: device model
>> failure: pid 5409: died due to signal 7; see /var/log/xen/qemu-dm-win7.log
>>
>> Hm, signal 7 - SIGBUS.  I wonder if
>>
>> Using stub domains doesn't work either.
>>
>>     
>>> I would suggest running qemu-dm under strace.  This can be done easily
>>> enough with a simple wrapper script, something like:
>>>   #!/bin/sh
>>>   set -e
>>>   exec strace -vvs500 -f -o /root/qemu-dm.strace \
>>>
>>>       
>>  /usr/lib/xen/bin/qemu-dm "$@"
>>     
>>> and then give the name of the script as device_model in your config file.
>>>       
>
>
> Is there anything more I can do to help debug this problem? I am eager
> to do more testing with pv_ops and I have time to do it at the moment,
> but hvm support is currently broken so there is little I can do with
> my test box.
>   

I was hoping Ian J would pop up and say "Its broken like this!  Fix it 
like this!".

There does appear to be some incompatibility between the pvops dom0 and 
qemu which is causing this SIGBUS; it would be really useful to know 
what page qemu is trying to access.  It might be a problem in the pvops 
/proc/xen/privcmd implementation, or it could be a bug in qemu which 
happens to work with 2.6.18.

The alternative is to try stubdom, which should avoid the issue.  I 
haven't had much success in making it work, but it looks like I was not 
starting fs-backend.  I'll try again shortly.

    J

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-25 15:10                         ` Boris Derzhavets
@ 2009-02-25 23:57                           ` Jeremy Fitzhardinge
  2009-02-26  6:47                             ` Boris Derzhavets
  0 siblings, 1 reply; 36+ messages in thread
From: Jeremy Fitzhardinge @ 2009-02-25 23:57 UTC (permalink / raw)
  To: bderzhavets
  Cc: Andrew Lyon, Ian Jackson, xen-devel@lists.xensource.com,
	Ian Campbell

Boris Derzhavets wrote:
> Hi Andy,
>
> Stubdoms fail as well ( as Jeremy suspected).
>

I made more progress when I ran "fs-backend" first, and set up proper 
disk and vif entries.  Now I'm getting to the state where the domain and 
its stub domains are running, but the main domain is doing nothing in 
its zilch state (no state flags in xm list, no cpu consumption).  
There's a window, but it has no output (not even bios, so it isn't 
starting at all).

    J

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-25 23:57                           ` Jeremy Fitzhardinge
@ 2009-02-26  6:47                             ` Boris Derzhavets
  0 siblings, 0 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-02-26  6:47 UTC (permalink / raw)
  To: Jeremy Fitzhardinge
  Cc: Andrew Lyon, Ian Jackson, xen-devel@lists.xensource.com,
	Ian Campbell


[-- Attachment #1.1: Type: text/plain, Size: 1162 bytes --]

>There's a window, but it has no output (not even bios, so 
>it isn't starting at all).
Same results

--- On Wed, 2/25/09, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
From: Jeremy Fitzhardinge <jeremy@goop.org>
Subject: Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)
To: bderzhavets@yahoo.com
Cc: "Andrew Lyon" <andrew.lyon@gmail.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Ian Campbell" <Ian.Campbell@citrix.com>
Date: Wednesday, February 25, 2009, 6:57 PM

Boris Derzhavets wrote:
> Hi Andy,
> 
> Stubdoms fail as well ( as Jeremy suspected).
> 

I made more progress when I ran "fs-backend" first, and set up proper
disk and vif entries.  Now I'm getting to the state where the domain and its
stub domains are running, but the main domain is doing nothing in its zilch
state (no state flags in xm list, no cpu consumption).  There's a window,
but it has no output (not even bios, so it isn't starting at all).

   J

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 1569 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-25 21:02                         ` Jeremy Fitzhardinge
@ 2009-02-26 11:35                           ` Ian Jackson
  2009-03-03 10:55                             ` Andrew Lyon
  0 siblings, 1 reply; 36+ messages in thread
From: Ian Jackson @ 2009-02-26 11:35 UTC (permalink / raw)
  To: Jeremy Fitzhardinge
  Cc: Ian Campbell, Boris Derzhavets, Andrew Lyon,
	xen-devel@lists.xensource.com

Jeremy Fitzhardinge writes ("Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)"):
> I was hoping Ian J would pop up and say "Its broken like this!  Fix it 
> like this!".

Yes, when I have a moment I'll try it myself but I've been buried in
the bowels of a nightmare USB emulation.  Soon I'll know whether the
latter works and thus whether I have any time to dig into pvops.

Ian.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-02-26 11:35                           ` Ian Jackson
@ 2009-03-03 10:55                             ` Andrew Lyon
  2009-03-03 11:27                               ` Boris Derzhavets
  2009-03-03 17:41                               ` Jeremy Fitzhardinge
  0 siblings, 2 replies; 36+ messages in thread
From: Andrew Lyon @ 2009-03-03 10:55 UTC (permalink / raw)
  To: Ian Jackson
  Cc: Ian Campbell, Jeremy Fitzhardinge, xen-devel@lists.xensource.com,
	Boris Derzhavets

On Thu, Feb 26, 2009 at 11:35 AM, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
> Jeremy Fitzhardinge writes ("Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)"):
>> I was hoping Ian J would pop up and say "Its broken like this!  Fix it
>> like this!".
>
> Yes, when I have a moment I'll try it myself but I've been buried in
> the bowels of a nightmare USB emulation.  Soon I'll know whether the
> latter works and thus whether I have any time to dig into pvops.
>
> Ian.
>

Has anybody made any progress on the qemu-dm / hvm issue with pv_ops?
I spent most of yesterday going through the strace logs but I cannot
see why it fails as it does.

pv domU seems to work ok, but I dont have any need to run pv.

andy

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-03-03 10:55                             ` Andrew Lyon
@ 2009-03-03 11:27                               ` Boris Derzhavets
  2009-03-03 17:41                               ` Jeremy Fitzhardinge
  1 sibling, 0 replies; 36+ messages in thread
From: Boris Derzhavets @ 2009-03-03 11:27 UTC (permalink / raw)
  To: Ian Jackson, Andrew Lyon
  Cc: Ian Campbell, Jeremy Fitzhardinge, xen-devel@lists.xensource.com


[-- Attachment #1.1: Type: text/plain, Size: 4117 bytes --]

Quoting Stefano Stabellini:-

Hi all,
this patch series imports from qemu mainstream the recent DisplayState
interface changes.
The new interface allows to have multiple frontends running at the same
time (vnc and sdl), however this series does not enable it in xend yet.
Most of the patches are just backports from qemu mainstream, adapted to
qemu-xen whenever was necessary.
The last two patches are not in qemu mainstream yet:

- patch 12 of 13 deals with changes to the xenfb frontend and backend;

- patch 13 of 13 introduces a DisplaySurface allocator interface that
allows display frontends (like xenfbfront and sdl) to provide the
DisplaySurface buffer to graphic devices whenever necessary.
Currently it is used only by xenfbfront but it is also useful for sdl.

[Xen-devel] [PATCH 13 of 13] introducing a DisplayAllocator interface
    Mon, 3/2/09    18KB
Read        
    
Stefano Stabellini
[Xen-devel] [PATCH 12 of 13] fix xenfb frontend and backend
    Mon, 3/2/09    12KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 11 of 13] serial: open a null device if the CharDriverState argument is null
    Mon, 3/2/09    6KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 10 of 13] add an init function parameter to qemu_chr_open()
    Mon, 3/2/09    9KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 9 of 13] fix screendump
    Mon, 3/2/09    9KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 6 of 13] graphical_console_init change
    Mon, 3/2/09    97KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 4 of 13] DisplayState interface change
    Mon, 3/2/09    70KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 2 of 13] Introduce accessors for DisplayState
    Mon, 3/2/09    44KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 2 of 13] Introduce accessors for DisplayState
    Mon, 3/2/09    44KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 8 of 13] Coalesce virtual console screen updates.
    Mon, 3/2/09    9KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 7 of 13] fix console switch
    Mon, 3/2/09    7KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 5 of 13] exploiting the new interface in vnc.c
    Mon, 3/2/09    26KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 3 of 13] remove bgr
    Mon, 3/2/09    9KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 1 of 13] Implement "info chardev" command. (Gerd Hoffmann)
    Mon, 3/2/09    14KB
Read        
        
Stefano Stabellini
[Xen-devel] [PATCH 0 of 13] DisplayState changes
    Mon, 3/2/09    5KB

--- On Tue, 3/3/09, Andrew Lyon <andrew.lyon@gmail.com> wrote:
From: Andrew Lyon <andrew.lyon@gmail.com>
Subject: Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)
To: "Ian Jackson" <Ian.Jackson@eu.citrix.com>
Cc: "Ian Campbell" <Ian.Campbell@eu.citrix.com>, "Jeremy Fitzhardinge" <jeremy@goop.org>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Boris Derzhavets" <bderzhavets@yahoo.com>
Date: Tuesday, March 3, 2009, 5:55 AM

On Thu, Feb 26, 2009 at 11:35 AM, Ian Jackson <Ian.Jackson@eu.citrix.com>
wrote:
> Jeremy Fitzhardinge writes ("Re: [Xen-devel] HVM pvops failures (one
more qemu-dm.strace obtained)"):
>> I was hoping Ian J would pop up and say "Its broken like this!
 Fix it
>> like this!".
>
> Yes, when I have a moment I'll try it myself but I've been buried
in
> the bowels of a nightmare USB emulation.  Soon I'll know whether the
> latter works and thus whether I have any time to dig into pvops.
>
> Ian.
>

Has anybody made any progress on the qemu-dm / hvm issue with pv_ops?
I spent most of yesterday going through the strace logs but I cannot
see why it fails as it does.

pv domU seems to work ok, but I dont have any need to run pv.

andy

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 6005 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-03-03 10:55                             ` Andrew Lyon
  2009-03-03 11:27                               ` Boris Derzhavets
@ 2009-03-03 17:41                               ` Jeremy Fitzhardinge
  2009-03-18  8:17                                 ` Andrew Lyon
  1 sibling, 1 reply; 36+ messages in thread
From: Jeremy Fitzhardinge @ 2009-03-03 17:41 UTC (permalink / raw)
  To: Andrew Lyon
  Cc: Ian Campbell, Boris Derzhavets, xen-devel@lists.xensource.com,
	Ian Jackson

Andrew Lyon wrote:
> On Thu, Feb 26, 2009 at 11:35 AM, Ian Jackson <Ian.Jackson@eu.citrix.com> wrote:
>   
>> Jeremy Fitzhardinge writes ("Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)"):
>>     
>>> I was hoping Ian J would pop up and say "Its broken like this!  Fix it
>>> like this!".
>>>       
>> Yes, when I have a moment I'll try it myself but I've been buried in
>> the bowels of a nightmare USB emulation.  Soon I'll know whether the
>> latter works and thus whether I have any time to dig into pvops.
>>
>> Ian.
>>
>>     
>
> Has anybody made any progress on the qemu-dm / hvm issue with pv_ops?
> I spent most of yesterday going through the strace logs but I cannot
> see why it fails as it does.
>   

Thanks for looking into this.  The crash is a SIGBUS in qemu, shortly 
after an mmap of /proc/xen/privcmd, which is a suspicious combination.  
The SIGBUS means we managed to create a mapping where the kernel thinks 
there are no backing pages (at least in part).  It would be useful to 
know if any memory accesses to the privcmd mapping succeed, and what the 
offset of the failing one is.  (Assuming the SIGBUS is related to a 
privcmd mapping at all.)

I don't think privcmd mappings can be completely broken, because the 
qemu backend for pvfb works fine, and I assume that uses that path to 
map the framebuffer...

Also, have you tried using stub domains?  They should have no dependence 
on the dom0 kernel at all, so in theory they should work regardless.

    J

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-03-03 17:41                               ` Jeremy Fitzhardinge
@ 2009-03-18  8:17                                 ` Andrew Lyon
  2009-03-18 14:42                                   ` Boris Derzhavets
  2009-03-23 18:07                                   ` Jeremy Fitzhardinge
  0 siblings, 2 replies; 36+ messages in thread
From: Andrew Lyon @ 2009-03-18  8:17 UTC (permalink / raw)
  To: Jeremy Fitzhardinge
  Cc: Ian Campbell, Boris Derzhavets, xen-devel@lists.xensource.com,
	Ian Jackson

On Tue, Mar 3, 2009 at 5:41 PM, Jeremy Fitzhardinge <jeremy@goop.org> wrote:
> Andrew Lyon wrote:
>>
>> On Thu, Feb 26, 2009 at 11:35 AM, Ian Jackson <Ian.Jackson@eu.citrix.com>
>> wrote:
>>
>>>
>>> Jeremy Fitzhardinge writes ("Re: [Xen-devel] HVM pvops failures (one more
>>> qemu-dm.strace obtained)"):
>>>
>>>>
>>>> I was hoping Ian J would pop up and say "Its broken like this!  Fix it
>>>> like this!".
>>>>
>>>
>>> Yes, when I have a moment I'll try it myself but I've been buried in
>>> the bowels of a nightmare USB emulation.  Soon I'll know whether the
>>> latter works and thus whether I have any time to dig into pvops.
>>>
>>> Ian.
>>>
>>>
>>
>> Has anybody made any progress on the qemu-dm / hvm issue with pv_ops?
>> I spent most of yesterday going through the strace logs but I cannot
>> see why it fails as it does.
>>
>
> Thanks for looking into this.  The crash is a SIGBUS in qemu, shortly after
> an mmap of /proc/xen/privcmd, which is a suspicious combination.  The SIGBUS
> means we managed to create a mapping where the kernel thinks there are no
> backing pages (at least in part).  It would be useful to know if any memory
> accesses to the privcmd mapping succeed, and what the offset of the failing
> one is.  (Assuming the SIGBUS is related to a privcmd mapping at all.)
>
> I don't think privcmd mappings can be completely broken, because the qemu
> backend for pvfb works fine, and I assume that uses that path to map the
> framebuffer...
>
> Also, have you tried using stub domains?  They should have no dependence on
> the dom0 kernel at all, so in theory they should work regardless.
>
>   J
>

I tried Stub domains yesterday but as soon as I "xm create" the system
locked up, I could still ping it but no response on the serial console
and ssh was responsive, very strange.. I've never seen a system ping
but have unresponsive console.

Can we try to debug the problem with hvm on pv_ops?

Andy

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-03-18  8:17                                 ` Andrew Lyon
@ 2009-03-18 14:42                                   ` Boris Derzhavets
  2009-03-23 14:15                                     ` Andrew Lyon
  2009-03-23 18:07                                   ` Jeremy Fitzhardinge
  1 sibling, 1 reply; 36+ messages in thread
From: Boris Derzhavets @ 2009-03-18 14:42 UTC (permalink / raw)
  To: Jeremy Fitzhardinge, Andrew Lyon
  Cc: Ian Campbell, xen-devel@lists.xensource.com, Ian Jackson


[-- Attachment #1.1: Type: text/plain, Size: 2949 bytes --]

Ping is based on ICMP.

 TCP (UDP) services might fail to reach the host.
 Failure of cheksum offloading on the second host may be the first example.
 But here it doesn't seem to be the case.
"tcpdump" on Xen host may help after issue comes up.
 See what happens to ssh packages when they arrive.

Boris.
 

--- On Wed, 3/18/09, Andrew Lyon <andrew.lyon@gmail.com> wrote:
From: Andrew Lyon <andrew.lyon@gmail.com>
Subject: Re: [Xen-devel] HVM pvops failures (one more qemu-dm.strace obtained)
To: "Jeremy Fitzhardinge" <jeremy@goop.org>
Cc: "Ian Campbell" <Ian.Campbell@eu.citrix.com>, "Boris Derzhavets" <bderzhavets@yahoo.com>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>
Date: Wednesday, March 18, 2009, 4:17 AM

On Tue, Mar 3, 2009 at 5:41 PM, Jeremy Fitzhardinge <jeremy@goop.org>
wrote:
> Andrew Lyon wrote:
>>
>> On Thu, Feb 26, 2009 at 11:35 AM, Ian Jackson
<Ian.Jackson@eu.citrix.com>
>> wrote:
>>
>>>
>>> Jeremy Fitzhardinge writes ("Re: [Xen-devel] HVM pvops
failures (one more
>>> qemu-dm.strace obtained)"):
>>>
>>>>
>>>> I was hoping Ian J would pop up and say "Its broken like
this!  Fix it
>>>> like this!".
>>>>
>>>
>>> Yes, when I have a moment I'll try it myself but I've been
buried in
>>> the bowels of a nightmare USB emulation.  Soon I'll know
whether the
>>> latter works and thus whether I have any time to dig into pvops.
>>>
>>> Ian.
>>>
>>>
>>
>> Has anybody made any progress on the qemu-dm / hvm issue with pv_ops?
>> I spent most of yesterday going through the strace logs but I cannot
>> see why it fails as it does.
>>
>
> Thanks for looking into this.  The crash is a SIGBUS in qemu, shortly
after
> an mmap of /proc/xen/privcmd, which is a suspicious combination.  The
SIGBUS
> means we managed to create a mapping where the kernel thinks there are no
> backing pages (at least in part).  It would be useful to know if any
memory
> accesses to the privcmd mapping succeed, and what the offset of the
failing
> one is.  (Assuming the SIGBUS is related to a privcmd mapping at all.)
>
> I don't think privcmd mappings can be completely broken, because the
qemu
> backend for pvfb works fine, and I assume that uses that path to map the
> framebuffer...
>
> Also, have you tried using stub domains?  They should have no dependence
on
> the dom0 kernel at all, so in theory they should work regardless.
>
>   J
>

I tried Stub domains yesterday but as soon as I "xm create" the
system
locked up, I could still ping it but no response on the serial console
and ssh was responsive, very strange.. I've never seen a system ping
but have unresponsive console.

Can we try to debug the problem with hvm on pv_ops?

Andy

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 3767 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-03-18 14:42                                   ` Boris Derzhavets
@ 2009-03-23 14:15                                     ` Andrew Lyon
  0 siblings, 0 replies; 36+ messages in thread
From: Andrew Lyon @ 2009-03-23 14:15 UTC (permalink / raw)
  To: bderzhavets
  Cc: Ian Campbell, Jeremy Fitzhardinge, xen-devel@lists.xensource.com,
	Ian Jackson

On Wed, Mar 18, 2009 at 2:42 PM, Boris Derzhavets <bderzhavets@yahoo.com> wrote:
> Ping is based on ICMP.
>
>  TCP (UDP) services might fail to reach the host.
>  Failure of cheksum offloading on the second host may be the first example.
>  But here it doesn't seem to be the case.
> "tcpdump" on Xen host may help after issue comes up.
>  See what happens to ssh packages when they arrive.
>
> Boris.

It is not a network problem, the system completely locks up when I try
to start a stubdom, even the local keyboard and vga is not responsive.

Andy

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: HVM pvops failures (one more qemu-dm.strace obtained)
  2009-03-18  8:17                                 ` Andrew Lyon
  2009-03-18 14:42                                   ` Boris Derzhavets
@ 2009-03-23 18:07                                   ` Jeremy Fitzhardinge
  1 sibling, 0 replies; 36+ messages in thread
From: Jeremy Fitzhardinge @ 2009-03-23 18:07 UTC (permalink / raw)
  To: Andrew Lyon
  Cc: Ian Campbell, Boris Derzhavets, xen-devel@lists.xensource.com,
	Ian Jackson

Andrew Lyon wrote:
> I tried Stub domains yesterday but as soon as I "xm create" the system
> locked up, I could still ping it but no response on the serial console
> and ssh was responsive, very strange.. I've never seen a system ping
> but have unresponsive console.
>
> Can we try to debug the problem with hvm on pv_ops?
>   

I haven't seen anything like that before.  All I've seen is that domain 
creation fails, but dom0 is unaffected.  On the other hand, I haven't 
had a chance to try out hvm lately, as I've been working on other things.

    J

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2009-03-23 18:07 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-17  9:20 [PATCH] ioemu: Cleanup the code of PCI passthrough Yuji Shimada
2009-02-19 17:13 ` Ian Jackson
2009-02-20  4:55   ` Yuji Shimada
2009-02-23  1:40     ` Yuji Shimada
2009-02-23  5:56       ` Simon Horman
2009-02-23 11:36         ` Ian Jackson
2009-02-23 14:23           ` Boris Derzhavets
2009-02-23 14:53             ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Ian Jackson
2009-02-23 15:09               ` Andrew Lyon
2009-02-23 16:21                 ` HVM pvops failures Ian Jackson
2009-02-23 18:47                   ` Boris Derzhavets
2009-02-23 19:45                     ` Andrew Lyon
2009-02-23 20:02                       ` Boris Derzhavets
2009-02-24  0:12                   ` Jeremy Fitzhardinge
2009-02-24 11:21                     ` HVM pvops failures (one more qemu-dm.strace obtained) Boris Derzhavets
2009-02-24 11:38                     ` Boris Derzhavets
2009-02-25 14:28                       ` Andrew Lyon
2009-02-25 15:10                         ` Boris Derzhavets
2009-02-25 23:57                           ` Jeremy Fitzhardinge
2009-02-26  6:47                             ` Boris Derzhavets
2009-02-25 15:41                         ` Boris Derzhavets
2009-02-25 21:02                         ` Jeremy Fitzhardinge
2009-02-26 11:35                           ` Ian Jackson
2009-03-03 10:55                             ` Andrew Lyon
2009-03-03 11:27                               ` Boris Derzhavets
2009-03-03 17:41                               ` Jeremy Fitzhardinge
2009-03-18  8:17                                 ` Andrew Lyon
2009-03-18 14:42                                   ` Boris Derzhavets
2009-03-23 14:15                                     ` Andrew Lyon
2009-03-23 18:07                                   ` Jeremy Fitzhardinge
2009-02-23 15:36               ` HVM guest question (was Re: [PATCH] ioemu: Cleanup the code of PCI passthrough.) Boris Derzhavets
2009-02-23 16:22                 ` Ian Jackson
2009-02-23 17:08                   ` Andrew Lyon
2009-02-23 17:38                   ` Boris Derzhavets
2009-02-23 15:04             ` Re: [PATCH] ioemu: Cleanup the code of PCI passthrough Andrew Lyon
2009-02-23 22:30           ` Simon Horman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.