Re: [E-devel] Enlightenment 0.26.0 / efl 1.27.0 multiple crashes on Debian Bookworm AMD64
[email protected] Tue, 24 Sep 2024 11:23:19 -0700
| Newsgroups | gmane.comp.window-managers.enlightenment.devel |
|---|---|
| Message-ID | <[email protected]> |
On 2024-09-23 09:01, Carsten Haitzler wrote: > On Mon, 23 Sep 2024 08:44:33 -0700 [email protected] said: > >> On 2024-09-22 17:05, Carsten Haitzler wrote: >> > On Sun, 22 Sep 2024 05:47:09 -0700 [email protected] said: >> > >> >> On 2024-09-21 04:43, Carsten Haitzler wrote: >> >> > On Sat, 21 Sep 2024 00:37:32 -0700 [email protected] said: >> >> > >> >> > >> >> >> I installed all these dbgs: >> >> >> (< http://www.enlightenment.org/ss/e-66ee76f50c86a5.48118502.jpg >) >> >> >> >> >> >> Hopefully pasted below e crash log will be adequate: >> >> > >> >> > ... >> >> > >> >> >> #4 0x00007fe29b8c4050 in <signal handler called> () at >> >> >> /lib/x86_64-linux-gnu/libc.so.6 >> >> >> #5 eet_write_cipher (ef=0x55a72dc62c50, name=0x55a72cb112d4 "config", >> >> >> data=0x55a72eb0cbe0, size=14526, comp=11, cipher_key=0x0) at >> >> >> ../src/lib/eet/eet_lib.c:2479 >> >> >> in = 0x55a72e654c70 >> >> >> efn = 0x2775becd05b78900 >> >> >> exists_already = 0 >> >> >> hash = 46 >> >> >> #6 0x00007fe29c97ac01 in eet_data_write_cipher (ef=0x55a72dc62c50, >> >> >> edd=0x55a72d5d03f0, name=0x55a72cb112d4 "config", cipher_key=0x0, >> >> >> data=0x55a72d5d8180, comp=11) at ../src/lib/eet/eet_data.c:2410 >> >> >> ed = 0x55a72dc3c100 >> >> >> data_enc = 0x55a72eb0cbe0 >> >> >> size = 14526 >> >> >> val = 32765 >> >> >> __func__ = "eet_data_write_cipher" >> >> >> #7 0x00007fe29c97ac6f in eet_data_write (ef=0x55a72dc62c50, >> >> >> edd=0x55a72d5d03f0, name=0x55a72cb112d4 "config", data=0x55a72d5d8180, >> >> >> comp=11) at ../src/lib/eet/eet_data.c:2422 >> >> >> #8 0x000055a72c9949bf in e_config_domain_save (domain=0x55a72cb13c33 >> >> >> "e_bindings", edd=0x55a72d5d03f0, data=0x55a72d5d8180) at >> >> >> ../src/bin/e_config.c:2328 >> >> >> ef = 0x55a72dc62c50 >> >> >> buf = "/home/jose/.e/e/config/standard/e_bindings.cfg", >> >> >> '\000' >> >> >> <repeats 370 times>... >> >> >> buf2 = >> >> >> "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000efox", '\000' >> >> >> <repeats 3137 times>... >> >> >> ok = 0 >> >> >> len = 46 >> >> >> len2 = 10 >> >> > >> >> > ok. so eet_lib.c:2479 ... it's writing out e's bindings cfg file. we're >> >> > getting >> >> > somewhere. that's >> >> > >> >> > LOCK_FILE(ef); >> >> > /* Does this node already exist? */ >> >> > for (efn = ef->header->directory->nodes[hash]; efn; efn = efn->next) >> >> > { >> >> > /* if it matches */ >> >> > >> >> > the for () line there.... gee... at this point i don't know - that >> >> > should not >> >> > crash. the header should be there as should the directory etc. and the >> >> > directory size is fixed as the hash is calculated and limited to that >> >> > size. >> >> > unfortunately this has moved us along but not given us the problem. >> >> > it's time >> >> > to use valgrind. >> >> > >> >> > https://www.enlightenment.org/contrib/enlightenment-debug.md >> >> > >> >> > we need to find out what there is wrong and why. it should not be. >> >> > something >> >> > deeper has gone wrong and it's time to dig out some tooling. >> >> >> >> Using: >> >> Xephyr -ac -br -noreset -screen 1366x720 :1 >> >> then >> >> DISPLAY=:1 enlightenment_start -valgrind >> > >> > oh ha! i forgot - i removed -valgrind as no one was using it or >> > reporting >> > issues with it... so -valgrind would not have helped. you need to do >> > the >> > following instead >> > >> > E_START=1 DISPLAY=:1 \ >> > valgrind --tool=memcheck --num-callers=64 --show-reachable=no \ >> > --read-var-info=yes --leak-check=yes --leak-resolution=high \ >> > --undef-value-errors=yes --track-origins=yes --vgdb-error=0 \ >> > --vgdb=full --redzone-size=512 --freelist-vol=100000000 \ >> > enlightenment >> > >> > valgrind will give you some instructions. use another vt or ssh in and: >> > >> > gdb enlightenment >> > >> > (and in gdb at the prompt) >> > >> > target remote | /usr/lib/valgrind/../../bin/vgdb --pid=49940 >> > >> > .. or more specifically use what valgrind told you - not the above - >> > the above >> > was just an example. it will ask if you want to attach. of course >> > answer y. >> > then type "cont" at the prompt to continue running. >> > >> > enlightenment will now run very slowly. trigger your bug. you might get >> > other >> > complaints - it's possible. you could skip some with "cont" command in >> > gdb to just continue. valgrind's stdout will tell you a fair bit of >> > very useful >> > info -t he gdb will be in a trap and allow you to interact (bt = >> > backtrace, p >> > VAR = print variable VAR value, l = list core, fr N = go to stack trace >> > frame N >> > (listed in bt). when finally you get a backtrace in that eet write func >> > in >> > saving config... then valgrind might tell us something useful. >> > [] >> >> The crash occurred during these two snapshots: >> < http://www.enlightenment.org/ss/e-66f18214602f31.27343491.jpg > >> < http://www.enlightenment.org/ss/e-66f1858325f0c4.93746507.jpg > >> >> Here is a log fragment generated (I followed the instructions >> immediately below in another virtual terminal): > > ignore those - just "cont" until the valgrind trace shows its barfing > in the > eet cipher write (like i snipped down to in a previous reply). it's > complaining > about things outside of e/efl or things i am pretty sure it's not right > about > (the dpms thing). the others i actually already just fixed in git. > > so try again - but "cont" in gdb until finally valgrind complains about > what > we're looking for. the eet write inside the e config save of > e_bindgings.cfg > [] I am just getting extremely frequent: '[Inferior 1 (Remote target) exited with code 0145]' see snapshot below: < http://www.enlightenment.org/ss/e-66f301a30fe112.69927132.jpg > not bt, no p, only l, I got a crash dump but it was *after* an '[Inferior 1 (Remote target) exited with code 0145]' The program is not being run. Thread 9 (Thread 0x7f8959d0b6c0 (LWP 1377) "Ethread-feedbac"): #0 0x00007f8978a53e26 in epoll_wait (epfd=95, events=0x7f8959d0a9f0, maxevents=2, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30 sc_ret = -4 sc_cancel_oldtype = 1 #1 0x00007f89799abc4f in () at /lib/x86_64-linux-gnu/libecore.so.1 #2 0x00007f89799ab127 in ecore_pipe_wait () at /lib/x86_64-linux-gnu/libecore.so.1 #3 0x000055dd1e23b95c in () #4 0x00007f89799b1f6c in () at /lib/x86_64-linux-gnu/libecore.so.1 #5 0x00007f8979afa19c in () at /lib/x86_64-linux-gnu/libeina.so.1 #6 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140227894097600, -5591975566697391009, -240, 0, 140730989327488, 140227885707264, 5582207859150986335, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7f895a5146c0 (LWP 1376) "Ethread-feedbac"): #0 0x00007f8978a498dc in __GI___select (nfds=87, readfds=0x7f895a5138b0, writefds=0x7f895a513930, exceptfds=0x7f895a5139b0, timeout=0x7f895a5138a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 6, tv_nsec = 665442224} pts64 = 0x7f895a5137f0 #1 0x000055dd1e20a1b6 in e_powersave_sleeper_sleep () #2 0x00007f895a62228c in () at /usr/lib/x86_64-linux-gnu/enlightenment/modules/temperature/linux-gnu-x86_64-0.26.0/module.so #3 0x00007f89799b1f6c in () at /lib/x86_64-linux-gnu/libecore.so.1 #4 0x00007f8979afa19c in () at /lib/x86_64-linux-gnu/libeina.so.1 #5 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140227902523072, -5591975566697391009, -240, 0, 140730989326800, 140227894132736, 5582206773061131359, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7f89617846c0 (LWP 1359) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55dd1edba3a0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55dd1edba3a0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f89789d0efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55dd1edba3a0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f89789d3558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55dd1edba350, cond=0x55dd1edba378) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f89789d32e0 <__condvar_cleanup_waiting>, __arg = 0x7f8961783b00, __canceltype = 1, __prev = 0x0} cbuffer = {wseq = 20, cond = 0x55dd1edba378, mutex = 0x55dd1edba350, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 20 seq = 10 private = 0 #4 ___pthread_cond_wait (cond=0x55dd1edba378, mutex=0x55dd1edba350) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f896d2bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f896d26e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f896d2bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140228022519488, -5591975566697391009, -240, 19, 140730989312320, 140228014129152, 5582085474594757727, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7f8961f856c0 (LWP 1358) "Eanimator-vsync"): #0 0x00007f8978a498dc in __GI___select (nfds=56, readfds=0x7f8961f848e0, writefds=0x7f8961f84960, exceptfds=0x7f8961f849e0, timeout=0x7f8961f848d0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 0, tv_nsec = 91764995} pts64 = 0x7f8961f84820 #1 0x00007f8978b80bbd in () at /lib/x86_64-linux-gnu/libecore_x.so.1 #2 0x00007f89799b1f6c in () at /lib/x86_64-linux-gnu/libecore.so.1 #3 0x00007f8979afa19c in () at /lib/x86_64-linux-gnu/libeina.so.1 #4 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140228030912192, -5591975566697391009, -240, 2, 140730989308464, 140228022521856, 5582084371325033567, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #5 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7f89627866c0 (LWP 1357) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55dd1ed8db68) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55dd1ed8db68, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f89789d0efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55dd1ed8db68, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f89789d3558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55dd1ed8db18, cond=0x55dd1ed8db40) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f89789d32e0 <__condvar_cleanup_waiting>, __arg = 0x7f8962785b00, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x55dd1ed8db40, mutex = 0x55dd1ed8db18, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 0 seq = 0 private = 0 #4 ___pthread_cond_wait (cond=0x55dd1ed8db40, mutex=0x55dd1ed8db18) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f896d2bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f896d26e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f896d2bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140228039304896, -5591975566697391009, -240, 0, 140730989308400, 140228030914560, 5582083272350276703, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7f896ffff6c0 (LWP 1332) "Ethread-feedbac"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55dd1ec492a8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55dd1ec492a8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f89789d0efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55dd1ec492a8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f89789dbc4f in do_futex_wait (sem=sem@entry=0x55dd1ec492a8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f89789dbce0 in __new_sem_wait_slow64 (sem=0x55dd1ec492a8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f89789dbc30 <__sem_wait_cleanup>, __arg = 0x55dd1ec492a8, __canceltype = 1275078256, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f8979acffab in () at /lib/x86_64-linux-gnu/libeina.so.1 #6 0x00007f8979ad0355 in () at /lib/x86_64-linux-gnu/libeina.so.1 #7 0x00007f8979ad0c4f in eina_thread_queue_wait () at /lib/x86_64-linux-gnu/libeina.so.1 #8 0x000055dd1e123384 in () #9 0x00007f89799b1f6c in () at /lib/x86_64-linux-gnu/libecore.so.1 #10 0x00007f8979afa19c in () at /lib/x86_64-linux-gnu/libeina.so.1 #11 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140228266292928, -5591975566697391009, -240, 1, 140730989323264, 140228257902592, 5582088757560384607, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #12 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7f8975f136c0 (LWP 1330) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55dd1ea6c7d8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55dd1ea6c7d8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f89789d0efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55dd1ea6c7d8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f89789dbc4f in do_futex_wait (sem=sem@entry=0x55dd1ea6c7d8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f89789dbce0 in __new_sem_wait_slow64 (sem=0x55dd1ea6c7d8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f89789dbc30 <__sem_wait_cleanup>, __arg = 0x55dd1ea6c7d8, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f8979acffab in () at /lib/x86_64-linux-gnu/libeina.so.1 #6 0x00007f8979ad0355 in () at /lib/x86_64-linux-gnu/libeina.so.1 #7 0x00007f8979ad0c4f in eina_thread_queue_wait () at /lib/x86_64-linux-gnu/libeina.so.1 #8 0x00007f89795c928f in () at /lib/x86_64-linux-gnu/libevas.so.1 #9 0x00007f8979afa19c in () at /lib/x86_64-linux-gnu/libeina.so.1 #10 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140228365989568, -5591975566697391009, -240, 2, 140730989327488, 140228357599232, 5582110840134736991, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7f89767146c0 (LWP 1329) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f8976713ac0, op=137, expected=0, futex_word=0x7f897982f1f0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7f897982f1f0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f8976713ac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007f89789d0efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f897982f1f0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f8976713ac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f89789d383c in __pthread_cond_wait_common (abstime=0x7f8976713ac0, clockid=1, mutex=0x7f897982f200, cond=0x7f897982f1c8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f89789d32e0 <__condvar_cleanup_waiting>, __arg = 0x7f8976713a20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 20, cond = 0x7f897982f1c8, mutex = 0x7f897982f200, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 20 seq = 10 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7f897982f1c8, mutex=0x7f897982f200, abstime=0x7f8976713ac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007f89795da4cd in () at /lib/x86_64-linux-gnu/libevas.so.1 #6 0x00007f89795da91a in () at /lib/x86_64-linux-gnu/libevas.so.1 #7 0x00007f8979afa19c in () at /lib/x86_64-linux-gnu/libeina.so.1 #8 0x00007f89789d4144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140228374382272, -5591975566697391009, -240, 2, 140730989327504, 140228365991936, 5582109741159980127, 5582140149547179103}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f8978a547dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7f89774ae980 (LWP 1319) "enlightenment"): #0 0x00007f8978a1ed32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x000055dd1e2a494c in e_alert_show () #2 0x000055dd1e224271 in () #3 0x000055dd1e224292 in e_sigseg_act () #4 0x00007f8978987050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 0x00007f8979a50769 in eet_write_cipher () at /lib/x86_64-linux-gnu/libeet.so.1 #6 0x00007f8979a3dc01 in eet_data_write_cipher () at /lib/x86_64-linux-gnu/libeet.so.1 #7 0x00007f8979a3dc6f in eet_data_write () at /lib/x86_64-linux-gnu/libeet.so.1 #8 0x000055dd1e1319bf in e_config_domain_save () #9 0x000055dd1e132fa5 in () #10 0x000055dd1e20a4ec in () #11 0x00007f89799ae474 in () at /lib/x86_64-linux-gnu/libecore.so.1 #12 0x00007f89799ae95f in () at /lib/x86_64-linux-gnu/libecore.so.1 #13 0x00007f8979a1f87a in () at /lib/x86_64-linux-gnu/libeo.so.1 #14 0x00007f8979a1fa87 in () at /lib/x86_64-linux-gnu/libeo.so.1 #15 0x00007f8979a1fb40 in efl_event_callback_call () at /lib/x86_64-linux-gnu/libeo.so.1 #16 0x00007f89799afef4 in () at /lib/x86_64-linux-gnu/libecore.so.1 #17 0x00007f89799afd1b in () at /lib/x86_64-linux-gnu/libecore.so.1 #18 0x00007f8979962d4a in () at /lib/x86_64-linux-gnu/libecore.so.1 #19 0x00007f89799601b7 in () at /lib/x86_64-linux-gnu/libecore.so.1 #20 0x00007f8979968663 in () at /lib/x86_64-linux-gnu/libecore.so.1 #21 0x00007f897996acc1 in efl_loop_begin () at /lib/x86_64-linux-gnu/libecore.so.1 #22 0x00007f8979960393 in ecore_main_loop_begin () at /lib/x86_64-linux-gnu/libecore.so.1 #23 0x000055dd1e1e536c in main () [Inferior 1 (process 1319) detached] Thread 9 (Thread 0x7fe280c486c0 (LWP 1376) "Ethread-feedbac"): #0 0x00007fe29b990e26 in epoll_wait (epfd=95, events=0x7fe280c479f0, maxevents=2, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30 sc_ret = -4 sc_cancel_oldtype = 1 #1 0x00007fe29c8e8c4f in _ecore_pipe_wait (p=0x55a72d34ce00, message_count=1, wait=10) at ../src/lib/ecore/ecore_pipe.c:526 timerfdbuf = 140611265949257 pollincoming = {{events = 2626612809, data = {ptr = 0x68000c6000007fe2, fd = 32738, u32 = 32738, u64 = 7494003386400931810}}, {events = 32738, data = {ptr = 0x7fe280c47a40, fd = -2134607296, u32 = 2160360000, u64 = 140610799696448}}} timeout = 10.005000000000001 ret = 0 total = 0 time_exit = -1 fd_read_found = 0 '\000' fd_timer_found = 0 '\000' tspec_new = {it_interval = {tv_sec = 0, tv_nsec = 0}, it_value = {tv_sec = 10, tv_nsec = 5000000}} sec = 10 usec = 5000000 __func__ = "_ecore_pipe_wait" #2 0x00007fe29c8e8127 in ecore_pipe_wait (p=0x55a72d34ce00, message_count=1, wait=10) at ../src/lib/ecore/ecore_pipe.c:172 #3 0x000055a72ca9e95c in _cb_watchdog_thread_pingpong (data=0x0, thread=0x55a72df89050) at ../src/bin/e_watchdog.c:36 seq_new = 0x7fe268000b70 seq = 1226 #4 0x00007fe29c8eef6c in _ecore_direct_worker (data=0x55a72df89050, t=140610799699648) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611265949257, 2475394632868573266, -240, 0, 140725467060368, 140610791309312, 2475394632822435922, 2475404025255702610}, __mask_was_saved = 0}}, __pad = {0x7fe280c47c10, 0x0, 0x7fe29ca36ed0 <_eina_thread_self+9>, 0x7fe280c47b20}} __cancel_routine = 0x7fe29c8eed8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55a72df89050 __not_first_call = 0 work = 0x55a72df89050 #5 0x00007fe29ca3719c in _eina_internal_call (context=0x55a72dc81830) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140610799699648, 2475394632757424210, -240, 0, 140725467060368, 140610791309312, 2475394632870670418, 2475403661226815570}, __mask_was_saved = 0}}, __pad = {0x7fe280c47ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29c9cc916 <_eina_debug_thread_del> __cancel_arg = 0x7fe280c47b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140610799699648, 2475394632757424210, -240, 0, 140725467060368, 140610791309312, 2475394632870670418, 2475403660230668370}, __mask_was_saved = 0}}, __pad = {0x7fe280c47cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29b920e30 <__GI___libc_free> __cancel_arg = 0x55a72dc81830 __not_first_call = 0 c = 0x55a72dc81830 r = 0x0 self = 140610799699648 #6 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140610799699648, -2477155968752144302, -240, 0, 140725467060368, 140610791309312, 2475394632751132754, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7fe2814516c0 (LWP 1375) "Ethread-feedbac"): #0 0x00007fe29b9868dc in __GI___select (nfds=87, readfds=0x7fe2814508b0, writefds=0x7fe281450930, exceptfds=0x7fe2814509b0, timeout=0x7fe2814508a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 5, tv_nsec = 593844868} pts64 = 0x7fe2814507f0 #1 0x000055a72ca6d1b6 in e_powersave_sleeper_sleep (sleeper=0x55a72ddfca10, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15969035 rfds = {fds_bits = {0, 4194304, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 969035} ret = 0 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007fe28155f28c in _temperature_check_main (data=0x55a72ddd7140, th=0x55a72ddfca30) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x55a72ddd7140 ptemp = 57 temp = 57 #3 0x00007fe29c8eef6c in _ecore_direct_worker (data=0x55a72ddfca30, t=140610808125120) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611265949257, 2475393540336267346, -240, 0, 140725467059680, 140610799734784, 2475393540290130002, 2475404025255702610}, __mask_was_saved = 0}}, __pad = {0x7fe281450c10, 0x0, 0x7fe29ca36ed0 <_eina_thread_self+9>, 0x7fe281450b20}} __cancel_routine = 0x7fe29c8eed8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55a72ddfca30 __not_first_call = 0 work = 0x55a72ddfca30 #4 0x00007fe29ca3719c in _eina_internal_call (context=0x55a72ddf7b50) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140610808125120, 2475393540225118290, -240, 0, 140725467059680, 140610799734784, 2475393540338364498, 2475403661226815570}, __mask_was_saved = 0}}, __pad = {0x7fe281450ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29c9cc916 <_eina_debug_thread_del> __cancel_arg = 0x7fe281450b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140610808125120, 2475393540225118290, -240, 0, 140725467059680, 140610799734784, 2475393540338364498, 2475403660230668370}, __mask_was_saved = 0}}, __pad = {0x7fe281450cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29b920e30 <__GI___libc_free> __cancel_arg = 0x55a72ddf7b50 __not_first_call = 0 c = 0x55a72ddf7b50 r = 0x0 self = 140610808125120 #5 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140610808125120, -2477155968752144302, -240, 0, 140725467059680, 140610799734784, 2475393540218826834, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7fe2845846c0 (LWP 1358) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55a72d7387e4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55a72d7387e4, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fe29b90defb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55a72d7387e4, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fe29b910558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55a72d738790, cond=0x55a72d7387b8) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fe29b9102e0 <__condvar_cleanup_waiting>, __arg = 0x7fe284583b00, __canceltype = 1, __prev = 0x0} cbuffer = {wseq = 935, cond = 0x55a72d7387b8, mutex = 0x55a72d738790, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 935 seq = 467 private = 0 #4 ___pthread_cond_wait (cond=0x55a72d7387b8, mutex=0x55a72d738790) at ./nptl/pthread_cond_wait.c:618 #5 0x00007fe2900bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007fe29006e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007fe2900bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140610859714240, -2477155968752144302, -240, 19, 140725467045200, 140610851323904, 2475387105820946514, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7fe284d856c0 (LWP 1357) "Eanimator-vsync"): #0 0x00007fe29b9868dc in __GI___select (nfds=56, readfds=0x7fe284d848e0, writefds=0x7fe284d84960, exceptfds=0x7fe284d849e0, timeout=0x7fe284d848d0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 0, tv_nsec = 93926665} pts64 = 0x7fe284d84820 #1 0x00007fe29babdbbd in _drm_tick_core (data=0x0, thread=0x55a72d725040) at ../src/lib/ecore_x/ecore_x_vsync.c:512 wfds = {fds_bits = {0 <repeats 16 times>}} ret = 1 tv = {tv_sec = 0, tv_usec = 100000} rfds = {fds_bits = {36028797018963968, 0 <repeats 15 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} max_fd = 55 msg = 0x0 ref = 0x55a72e8a2b40 tick = 1 __func__ = "_drm_tick_core" #2 0x00007fe29c8eef6c in _ecore_direct_worker (data=0x55a72d725040, t=140610868106944) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611265949257, 2475386009111113810, -240, 2, 140725467041344, 140610859716608, 2475386009064976466, 2475404025255702610}, __mask_was_saved = 0}}, __pad = {0x7fe284d84c10, 0x0, 0x7fe29ca36ed0 <_eina_thread_self+9>, 0x7fe284d84b20}} __cancel_routine = 0x7fe29c8eed8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55a72d725040 __not_first_call = 0 work = 0x55a72d725040 #3 0x00007fe29ca3719c in _eina_internal_call (context=0x55a72d712a80) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140610868106944, 2475386008999964754, -240, 2, 140725467041344, 140610859716608, 2475386009113210962, 2475403661226815570}, __mask_was_saved = 0}}, __pad = {0x7fe284d84ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29c9cc916 <_eina_debug_thread_del> __cancel_arg = 0x7fe284d84b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140610868106944, 2475386008999964754, -240, 2, 140725467041344, 140610859716608, 2475386009113210962, 2475403660230668370}, __mask_was_saved = 0}}, __pad = {0x7fe284d84cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29b920e30 <__GI___libc_free> __cancel_arg = 0x55a72d712a80 __not_first_call = 0 c = 0x55a72d712a80 r = 0x0 self = 140610868106944 #4 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140610868106944, -2477155968752144302, -240, 2, 140725467041344, 140610859716608, 2475386008993673298, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #5 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7fe2855866c0 (LWP 1356) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55a72d70c708) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55a72d70c708, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fe29b90defb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55a72d70c708, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fe29b910558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55a72d70c6b8, cond=0x55a72d70c6e0) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fe29b9102e0 <__condvar_cleanup_waiting>, __arg = 0x7fe285585b00, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x55a72d70c6e0, mutex = 0x55a72d70c6b8, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 0 seq = 0 private = 0 #4 ___pthread_cond_wait (cond=0x55a72d70c6e0, mutex=0x55a72d70c6b8) at ./nptl/pthread_cond_wait.c:618 #5 0x00007fe2900bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007fe29006e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007fe2900bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140610876499648, -2477155968752144302, -240, 0, 140725467041280, 140610868109312, 2475384910018916434, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7fe292d676c0 (LWP 1333) "Ethread-feedbac"): #0 0x00007fe29b986bfa in __GI_fdatasync (fd=75) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007fe29c989446 in eet_flush2 (ef=0x55a72d4088c0, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7fe260000b70 error = EET_ERROR_NONE head = {1108338462, 16777216, 33554432} num_directory_entries = 1 num_dictionary_entries = 2 bytes_directory_entries = 36 bytes_dictionary_entries = 40 bytes_strings = 26 data_offset = 129 strings_offset = 83 data_pad = 2 pad = 7 orig_data_offset = 104 num = 256 i = 256 j = 2 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007fe29c989bc1 in eet_sync_sync (ef=0x55a72d4088c0) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x000055a72c9860ee in _e_config_pending_file_del (path=0x55a72e84a5c0 "/home/jose/.e/e/config/standard/module.syscon.cfg.tmp") at ../src/bin/e_config.c:193 err = 21927 erstr = 0x55a72cb1135b "" ef = 0x55a72d4088c0 ok = 0 '\000' #4 0x000055a72c9863ba in _e_config_save_thread_main (data=0x0, eth=0x55a72d5c7230) at ../src/bin/e_config.c:279 msg = 0x55a72ded1724 ref = 0x55a72ded1590 run = 1 '\001' #5 0x00007fe29c8eef6c in _ecore_direct_worker (data=0x55a72d5c7230, t=140611102865088) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611265949257, 2475425538916364370, -240, 1, 140725467056144, 140611094474752, 2475425538870227026, 2475404025255702610}, __mask_was_saved = 0}}, __pad = {0x7fe292d66c10, 0x0, 0x7fe29ca36ed0 <_eina_thread_self+9>, 0x7fe292d66b20}} __cancel_routine = 0x7fe29c8eed8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55a72d5c7230 __not_first_call = 0 work = 0x55a72d5c7230 #6 0x00007fe29ca3719c in _eina_internal_call (context=0x55a72d5c73f0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611102865088, 2475425538805215314, -240, 1, 140725467056144, 140611094474752, 2475425538918461522, 2475403661226815570}, __mask_was_saved = 0}}, __pad = {0x7fe292d66ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29c9cc916 <_eina_debug_thread_del> __cancel_arg = 0x7fe292d66b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611102865088, 2475425538805215314, -240, 1, 140725467056144, 140611094474752, 2475425538918461522, 2475403660230668370}, __mask_was_saved = 0}}, __pad = {0x7fe292d66cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29b920e30 <__GI___libc_free> __cancel_arg = 0x55a72d5c73f0 __not_first_call = 0 c = 0x55a72d5c73f0 r = 0x0 self = 140611102865088 #7 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140611102865088, -2477155968752144302, -240, 1, 140725467056144, 140611094474752, 2475425538798923858, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7fe298ecb6c0 (LWP 1330) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55a72d3ea738) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55a72d3ea738, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fe29b90defb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55a72d3ea738, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007fe29b918c4f in do_futex_wait (sem=sem@entry=0x55a72d3ea738, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007fe29b918ce0 in __new_sem_wait_slow64 (sem=0x55a72d3ea738, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7fe29b918c30 <__sem_wait_cleanup>, __arg = 0x55a72d3ea738, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007fe29ca0cfab in eina_semaphore_lock (sem=0x55a72d3ea738) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007fe29ca0d355 in _eina_thread_queue_wait (thq=0x55a72d3ea710) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007fe29ca0dc4f in eina_thread_queue_wait (thq=0x55a72d3ea710, allocref=0x7fe298ecaad0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7fe298ecaa90 blk = 0x6d61732d656c #8 0x00007fe29c50628f in _evas_common_scale_sample_thread (data=0x0, t=140611204986560) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007fe29ca3719c in _eina_internal_call (context=0x55a72d3ea7d0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611204986560, 2475412011805716562, -240, 2, 140725467060368, 140611196596224, 2475412011918962770, 2475403661226815570}, __mask_was_saved = 0}}, __pad = {0x7fe298ecaba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29c9cc916 <_eina_debug_thread_del> __cancel_arg = 0x7fe298ecab68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611204986560, 2475412011805716562, -240, 2, 140725467060368, 140611196596224, 2475412011918962770, 2475403660230668370}, __mask_was_saved = 0}}, __pad = {0x7fe298ecacb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29b920e30 <__GI___libc_free> __cancel_arg = 0x55a72d3ea7d0 __not_first_call = 0 c = 0x55a72d3ea7d0 r = 0x0 self = 140611204986560 #10 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140611204986560, -2477155968752144302, -240, 2, 140725467060368, 140611196596224, 2475412011799425106, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7fe2996cc6c0 (LWP 1329) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7fe2996cbac0, op=137, expected=0, futex_word=0x7fe29c76c1f4 <evas_thread_queue_condition+52>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7fe29c76c1f4 <evas_thread_queue_condition+52>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7fe2996cbac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007fe29b90defb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7fe29c76c1f4 <evas_thread_queue_condition+52>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7fe2996cbac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fe29b91083c in __pthread_cond_wait_common (abstime=0x7fe2996cbac0, clockid=1, mutex=0x7fe29c76c200 <evas_thread_queue_lock>, cond=0x7fe29c76c1c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fe29b9102e0 <__condvar_cleanup_waiting>, __arg = 0x7fe2996cba20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 371, cond = 0x7fe29c76c1c8 <evas_thread_queue_condition+8>, mutex = 0x7fe29c76c200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 371 seq = 185 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7fe29c76c1c8 <evas_thread_queue_condition+8>, mutex=0x7fe29c76c200 <evas_thread_queue_lock>, abstime=0x7fe2996cbac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007fe29c5174cd in eina_condition_timedwait (cond=0x7fe29c76c1c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 13554, tv_nsec = 483367531} sec = 2250 nsec = 0 err = 110 r = 0 '\000' #6 0x00007fe29c51791a in evas_thread_worker_func (data=0x0, thread=140611213379264) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x55a72dda3340 len = 0 max = 128 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007fe29ca3719c in _eina_internal_call (context=0x55a72d3ea2c0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611213379264, 2475410912830959698, -240, 2, 140725467060384, 140611204988928, 2475410912944205906, 2475403661226815570}, __mask_was_saved = 0}}, __pad = {0x7fe2996cbba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29c9cc916 <_eina_debug_thread_del> __cancel_arg = 0x7fe2996cbb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140611213379264, 2475410912830959698, -240, 2, 140725467060384, 140611204988928, 2475410912944205906, 2475403660230668370}, __mask_was_saved = 0}}, __pad = {0x7fe2996cbcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fe29b920e30 <__GI___libc_free> __cancel_arg = 0x55a72d3ea2c0 __not_first_call = 0 c = 0x55a72d3ea2c0 r = 0x0 self = 140611213379264 #8 0x00007fe29b911144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140611213379264, -2477155968752144302, -240, 2, 140725467060384, 140611204988928, 2475410912824668242, 2475406287666950226}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fe29b9917dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7fe29a1e5980 (LWP 1315) "enlightenment"): #0 0x00007fe29b95bd32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x000055a72cb0794c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x000055a72ca87271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x000055a72ca87292 in e_sigseg_act (x=11, info=0x7ffd337972f0, data=0x7ffd337971c0) at ../src/bin/e_signals.c:91 #4 0x00007fe29b8c4050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 eet_write_cipher (ef=0x55a72dc62c50, name=0x55a72cb112d4 "config", data=0x55a72eb0cbe0, size=14526, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2479 in = 0x55a72e654c70 efn = 0x2775becd05b78900 exists_already = 0 hash = 46 #6 0x00007fe29c97ac01 in eet_data_write_cipher (ef=0x55a72dc62c50, edd=0x55a72d5d03f0, name=0x55a72cb112d4 "config", cipher_key=0x0, data=0x55a72d5d8180, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x55a72dc3c100 data_enc = 0x55a72eb0cbe0 size = 14526 val = 32765 __func__ = "eet_data_write_cipher" #7 0x00007fe29c97ac6f in eet_data_write (ef=0x55a72dc62c50, edd=0x55a72d5d03f0, name=0x55a72cb112d4 "config", data=0x55a72d5d8180, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x000055a72c9949bf in e_config_domain_save (domain=0x55a72cb13c33 "e_bindings", edd=0x55a72d5d03f0, data=0x55a72d5d8180) at ../src/bin/e_config.c:2328 ef = 0x55a72dc62c50 buf = "/home/jose/.e/e/config/standard/e_bindings.cfg", '\000' <repeats 370 times>... buf2 = "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000efox", '\000' <repeats 3137 times>... ok = 0 len = 46 len2 = 10 #9 0x000055a72c995fc5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2563 #10 0x000055a72ca6d4ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x55a72e8a4ca0 #11 0x00007fe29c8eb474 in _ecore_call_task_cb (func=0x55a72ca6d445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007fe29c8eb95f in _ecore_timer_legacy_tick (data=0x55a72e95a6f0, event=0x7ffd337999d0) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x55a72e95a6f0 inside_call = 0 '\000' #13 0x00007fe29c95c87a in _event_callback_call (obj_id=0x40000039205e, pd=0x55a72e818750, desc=0x7fe29c9263a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7fe29c929940 <internal> cb = 0x55a72dfbc3d8 restart_lookup = 0x0 ev = {object = 0x40000039205e, desc = 0x7fe29c9263a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7fe29c9263a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007fe29c95ca87 in _efl_object_event_callback_call (obj_id=0x40000039205e, pd=0x55a72e818750, desc=0x7fe29c9263a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007fe29c95cb40 in efl_event_callback_call (obj=0x40000039205e, desc=0x7fe29c9263a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x40000039205e, obj = 0x55a72e818710, func = 0x7fe29c95ca4d <_efl_object_event_callback_call>, data = 0x55a72e818750, extn1 = 0x55a72e818790, extn2 = 0x7fe29c90f614, extn3 = 0x7ffd33799ae0, extn4 = 0x40000039205e} _func_ = 0x7fe29c95ca4d <_efl_object_event_callback_call> #16 0x00007fe29c8ecef4 in _efl_loop_timer_expired_call (obj=0x40000000028d, pd=0x55a72d345710, when=12450.271410691999) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x55a72e818790 #17 0x00007fe29c8ecd1b in _efl_loop_timer_expired_timers_call (obj=0x40000000028d, pd=0x55a72d345710, when=12450.271410691999) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007fe29c89fd4a in _ecore_main_loop_iterate_internal (obj=0x40000000028d, pd=0x55a72d345710, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007fe29c89d1b7 in _ecore_main_loop_begin (obj=0x40000000028d, pd=0x55a72d345710) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007fe29c8a5663 in _efl_loop_begin (obj=0x40000000028d, pd=0x55a72d345710) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007fe29c8a7cc1 in efl_loop_begin (obj=0x40000000028d) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x40000000028d, obj = 0x55a72d345670, func = 0x7fe29c8a563c <_efl_loop_begin>, data = 0x55a72d345710, extn1 = 0x0, extn2 = 0x7fe29c906bab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7fe29c8a563c <_efl_loop_begin> #22 0x00007fe29c89d393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x000055a72ca4836c in main (argc=1, argv=0x7ffd337d2ef8) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x55a72d316ecc "\342\177" s = 0x0 action = {__sigaction_handler = {sa_handler = 0x55a72ca87314 <e_sigabrt_act>, sa_sigaction = 0x55a72ca87314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 1315) detached] Thread 9 (Thread 0x7f0c237fe6c0 (LWP 9239) "Ethread-feedbac"): #0 0x00007f0c4a64ce26 in epoll_wait (epfd=95, events=0x7f0c237fd9f0, maxevents=2, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30 sc_ret = -4 sc_cancel_oldtype = 1 #1 0x00007f0c4b5a4c4f in _ecore_pipe_wait (p=0x55974b902fa0, message_count=1, wait=10) at ../src/lib/ecore/ecore_pipe.c:526 timerfdbuf = 139690780569161 pollincoming = {{events = 1264234057, data = {ptr = 0x14000bb000007f0c, fd = 32524, u32 = 32524, u64 = 1441164731300740876}}, {events = 32524, data = {ptr = 0x7f0c237fda40, fd = 595581504, u32 = 595581504, u64 = 139690111916608}}} timeout = 10.005000000000001 ret = 0 total = 0 time_exit = -1 fd_read_found = 0 '\000' fd_timer_found = 0 '\000' tspec_new = {it_interval = {tv_sec = 0, tv_nsec = 0}, it_value = {tv_sec = 10, tv_nsec = 5000000}} sec = 10 usec = 5000000 __func__ = "_ecore_pipe_wait" #2 0x00007f0c4b5a4127 in ecore_pipe_wait (p=0x55974b902fa0, message_count=1, wait=10) at ../src/lib/ecore/ecore_pipe.c:172 #3 0x000055974b2fe95c in _cb_watchdog_thread_pingpong (data=0x0, thread=0x55974c541200) at ../src/bin/e_watchdog.c:36 seq_new = 0x7f0c14000b70 seq = 241 #4 0x00007f0c4b5aaf6c in _ecore_direct_worker (data=0x55974c541200, t=139690111919808) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690780569161, 1225063684161789314, -240, 0, 140725122945616, 139690103529472, 1225063684182760834, 1225151330898402690}, __mask_was_saved = 0}}, __pad = {0x7f0c237fdc10, 0x0, 0x7f0c4b6f2ed0 <_eina_thread_self+9>, 0x7f0c237fdb20}} __cancel_routine = 0x7f0c4b5aad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55974c541200 __not_first_call = 0 work = 0x55974c541200 #5 0x00007f0c4b6f319c in _eina_internal_call (context=0x55974c2375e0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690111919808, 1225063684113554818, -240, 0, 140725122945616, 139690103529472, 1225063684159692162, 1225151514966482306}, __mask_was_saved = 0}}, __pad = {0x7f0c237fdba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4b688916 <_eina_debug_thread_del> __cancel_arg = 0x7f0c237fdb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690111919808, 1225063684113554818, -240, 0, 140725122945616, 139690103529472, 1225063684159692162, 1225151515568364930}, __mask_was_saved = 0}}, __pad = {0x7f0c237fdcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4a5dce30 <__GI___libc_free> __cancel_arg = 0x55974c2375e0 __not_first_call = 0 c = 0x55974c2375e0 r = 0x0 self = 139690111919808 #6 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690111919808, -1218212628121133694, -240, 0, 140725122945616, 139690103529472, 1225063684111457666, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7f0c23fff6c0 (LWP 9238) "Ethread-feedbac"): #0 0x00007f0c4a6428dc in __GI___select (nfds=87, readfds=0x7f0c23ffe8b0, writefds=0x7f0c23ffe930, exceptfds=0x7f0c23ffe9b0, timeout=0x7f0c23ffe8a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 4, tv_nsec = 237294982} pts64 = 0x7f0c23ffe7f0 #1 0x000055974b2cd1b6 in e_powersave_sleeper_sleep (sleeper=0x55974c3b2a50, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15967389 rfds = {fds_bits = {0, 4194304, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 967389} ret = 0 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007f0c3021b28c in _temperature_check_main (data=0x55974c38cef0, th=0x55974c3b2a70) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x55974c38cef0 ptemp = 57 temp = 57 #3 0x00007f0c4b5aaf6c in _ecore_direct_worker (data=0x55974c3b2a70, t=139690120312512) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690780569161, 1225064785284029826, -240, 0, 140725122944928, 139690111922176, 1225064785305001346, 1225151330898402690}, __mask_was_saved = 0}}, __pad = {0x7f0c23ffec10, 0x0, 0x7f0c4b6f2ed0 <_eina_thread_self+9>, 0x7f0c23ffeb20}} __cancel_routine = 0x7f0c4b5aad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55974c3b2a70 __not_first_call = 0 work = 0x55974c3b2a70 #4 0x00007f0c4b6f319c in _eina_internal_call (context=0x55974c3adb90) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690120312512, 1225064785235795330, -240, 0, 140725122944928, 139690111922176, 1225064785281932674, 1225151514966482306}, __mask_was_saved = 0}}, __pad = {0x7f0c23ffeba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4b688916 <_eina_debug_thread_del> __cancel_arg = 0x7f0c23ffeb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690120312512, 1225064785235795330, -240, 0, 140725122944928, 139690111922176, 1225064785281932674, 1225151515568364930}, __mask_was_saved = 0}}, __pad = {0x7f0c23ffecb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4a5dce30 <__GI___libc_free> __cancel_arg = 0x55974c3adb90 __not_first_call = 0 c = 0x55974c3adb90 r = 0x0 self = 139690120312512 #5 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690120312512, -1218212628121133694, -240, 0, 140725122944928, 139690111922176, 1225064785233698178, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7f0c3338a6c0 (LWP 9219) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55974bceed34) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55974bceed34, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0c4a5c9efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55974bceed34, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f0c4a5cc558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55974bceece0, cond=0x55974bceed08) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f0c4a5cc2e0 <__condvar_cleanup_waiting>, __arg = 0x7f0c33389b00, __canceltype = 1271970368, __prev = 0x0} cbuffer = {wseq = 239, cond = 0x55974bceed08, mutex = 0x55974bceece0, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 239 seq = 119 private = 0 #4 ___pthread_cond_wait (cond=0x55974bceed08, mutex=0x55974bceece0) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f0c3f0bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f0c3f06e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f0c3f0bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690375685824, -1218212628121133694, -240, 19, 140725122930448, 139690367295488, 1225098260745674114, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7f0c33b8b6c0 (LWP 9218) "Eanimator-vsync"): #0 0x00007f0c4a613485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7f0c33b8a370, rem=rem@entry=0x0) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007f0c4a617d93 in __GI___nanosleep (req=req@entry=0x7f0c33b8a370, rem=rem@entry=0x0) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007f0c4a643185 in usleep (useconds=<optimized out>) at ../sysdeps/posix/usleep.c:31 ts = {tv_sec = 0, tv_nsec = 8304000} #3 0x00007f0c4a7795c1 in _drm_send_time (t=17899.754239636) at ../src/lib/ecore_x/ecore_x_vsync.c:335 t_delta_hist = {0.016714949000743218, 0.016709857998648658, 0.016710358002455905, 0.016742091000196524, 0.016673595997417578, 0.016719950999686262, 0.016704560999642126, 0.016609843001788249, 0.01669810699968366, 0.016632053000648739} t_delta = 0.016632053000648739 t_delta_min = 0.016609843001788249 t_sleep = 0.0083049215008941246 t_last = 17899.737607583 tim = 0x7f0c1c02d950 __func__ = "_drm_send_time" #4 0x00007f0c4a779759 in _drm_vblank_handler (fd=55, frame=1044834, sec=17899, usec=754616, data=0x0) at ../src/lib/ecore_x/ecore_x_vsync.c:418 t = 17899.754239636 pframe = 1044833 __func__ = "_drm_vblank_handler" #5 0x00007f0c4802f56c in drmHandleEvent () at /lib/x86_64-linux-gnu/libdrm.so.2 #6 0x00007f0c4a779c31 in _drm_tick_core (data=0x0, thread=0x55974bcdb5a0) at ../src/lib/ecore_x/ecore_x_vsync.c:530 wfds = {fds_bits = {0 <repeats 16 times>}} ret = 1 tv = {tv_sec = 0, tv_usec = 91809} rfds = {fds_bits = {36028797018963968, 0 <repeats 15 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} max_fd = 55 msg = 0x0 ref = 0x55974c4873d0 tick = 1 __func__ = "_drm_tick_core" #7 0x00007f0c4b5aaf6c in _ecore_direct_worker (data=0x55974bcdb5a0, t=139690384078528) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690780569161, 1225099361918246274, -240, 2, 140725122926592, 139690375688192, 1225099361939217794, 1225151330898402690}, __mask_was_saved = 0}}, __pad = {0x7f0c33b8ac10, 0x0, 0x7f0c4b6f2ed0 <_eina_thread_self+9>, 0x7f0c33b8ab20}} __cancel_routine = 0x7f0c4b5aad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55974bcdb5a0 __not_first_call = 0 work = 0x55974bcdb5a0 #8 0x00007f0c4b6f319c in _eina_internal_call (context=0x55974bcc88c0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690384078528, 1225099361870011778, -240, 2, 140725122926592, 139690375688192, 1225099361916149122, 1225151514966482306}, __mask_was_saved = 0}}, __pad = {0x7f0c33b8aba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4b688916 <_eina_debug_thread_del> __cancel_arg = 0x7f0c33b8ab68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690384078528, 1225099361870011778, -240, 2, 140725122926592, 139690375688192, 1225099361916149122, 1225151515568364930}, __mask_was_saved = 0}}, __pad = {0x7f0c33b8acb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4a5dce30 <__GI___libc_free> __cancel_arg = 0x55974bcc88c0 __not_first_call = 0 c = 0x55974bcc88c0 r = 0x0 self = 139690384078528 #9 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690384078528, -1218212628121133694, -240, 2, 140725122926592, 139690375688192, 1225099361867914626, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #10 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7f0c3438c6c0 (LWP 9217) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55974bcc2558) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55974bcc2558, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0c4a5c9efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55974bcc2558, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f0c4a5cc558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55974bcc2508, cond=0x55974bcc2530) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f0c4a5cc2e0 <__condvar_cleanup_waiting>, __arg = 0x7f0c3438bb00, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x55974bcc2530, mutex = 0x55974bcc2508, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 0 seq = 0 private = 0 #4 ___pthread_cond_wait (cond=0x55974bcc2530, mutex=0x55974bcc2508) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f0c3f0bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f0c3f06e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f0c3f0bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690392471232, -1218212628121133694, -240, 0, 140725122926528, 139690384080896, 1225087266703138178, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7f0c41d656c0 (LWP 9207) "Ethread-feedbac"): #0 0x00007f0c4a642bfa in __GI_fdatasync (fd=38) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007f0c4b645446 in eet_flush2 (ef=0x55974c217e70, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7f0c10000b70 error = EET_ERROR_NONE head = {1108338462, 16777216, 117440512} num_directory_entries = 1 num_dictionary_entries = 7 bytes_directory_entries = 36 bytes_dictionary_entries = 140 bytes_strings = 92 data_offset = 333 strings_offset = 183 data_pad = 4 pad = 3 orig_data_offset = 272 num = 256 i = 256 j = 7 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007f0c4b645bc1 in eet_sync_sync (ef=0x55974c217e70) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x000055974b1e60ee in _e_config_pending_file_del (path=0x55974d3fad10 "/home/jose/.e/e/config/standard/module.everything-files.cfg.tmp") at ../src/bin/e_config.c:193 err = 21911 erstr = 0x55974b37135b "" ef = 0x55974c217e70 ok = 0 '\000' #4 0x000055974b1e63ba in _e_config_save_thread_main (data=0x0, eth=0x55974bb7db70) at ../src/bin/e_config.c:279 msg = 0x55974c8c08cc ref = 0x55974c8c07b0 run = 1 '\001' #5 0x00007f0c4b5aaf6c in _ecore_direct_worker (data=0x55974bb7db70, t=139690620901056) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690780569161, 1225130544454557058, -240, 1, 140725122941392, 139690612510720, 1225130544475528578, 1225151330898402690}, __mask_was_saved = 0}}, __pad = {0x7f0c41d64c10, 0x0, 0x7f0c4b6f2ed0 <_eina_thread_self+9>, 0x7f0c41d64b20}} __cancel_routine = 0x7f0c4b5aad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55974bb7db70 __not_first_call = 0 work = 0x55974bb7db70 #6 0x00007f0c4b6f319c in _eina_internal_call (context=0x55974bb7dd30) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690620901056, 1225130544406322562, -240, 1, 140725122941392, 139690612510720, 1225130544452459906, 1225151514966482306}, __mask_was_saved = 0}}, __pad = {0x7f0c41d64ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4b688916 <_eina_debug_thread_del> __cancel_arg = 0x7f0c41d64b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690620901056, 1225130544406322562, -240, 1, 140725122941392, 139690612510720, 1225130544452459906, 1225151515568364930}, __mask_was_saved = 0}}, __pad = {0x7f0c41d64cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4a5dce30 <__GI___libc_free> __cancel_arg = 0x55974bb7dd30 __not_first_call = 0 c = 0x55974bb7dd30 r = 0x0 self = 139690620901056 #7 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690620901056, -1218212628121133694, -240, 1, 140725122941392, 139690612510720, 1225130544404225410, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7f0c437fe6c0 (LWP 9205) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55974b9a13f8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55974b9a13f8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0c4a5c9efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55974b9a13f8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f0c4a5d4c4f in do_futex_wait (sem=sem@entry=0x55974b9a13f8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f0c4a5d4ce0 in __new_sem_wait_slow64 (sem=0x55974b9a13f8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f0c4a5d4c30 <__sem_wait_cleanup>, __arg = 0x55974b9a13f8, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f0c4b6c8fab in eina_semaphore_lock (sem=0x55974b9a13f8) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f0c4b6c9355 in _eina_thread_queue_wait (thq=0x55974b9a13d0) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f0c4b6c9c4f in eina_thread_queue_wait (thq=0x55974b9a13d0, allocref=0x7f0c437fdad0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f0c437fda90 blk = 0x6d61732d656c #8 0x00007f0c4b1c228f in _evas_common_scale_sample_thread (data=0x0, t=139690648790720) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007f0c4b6f319c in _eina_internal_call (context=0x55974b9a1490) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690648790720, 1225134052857732482, -240, 2, 140725122945616, 139690640400384, 1225134052903869826, 1225151514966482306}, __mask_was_saved = 0}}, __pad = {0x7f0c437fdba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4b688916 <_eina_debug_thread_del> __cancel_arg = 0x7f0c437fdb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690648790720, 1225134052857732482, -240, 2, 140725122945616, 139690640400384, 1225134052903869826, 1225151515568364930}, __mask_was_saved = 0}}, __pad = {0x7f0c437fdcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4a5dce30 <__GI___libc_free> __cancel_arg = 0x55974b9a1490 __not_first_call = 0 c = 0x55974b9a1490 r = 0x0 self = 139690648790720 #10 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690648790720, -1218212628121133694, -240, 2, 140725122945616, 139690640400384, 1225134052855635330, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7f0c43fff6c0 (LWP 9204) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f0c43ffeac0, op=137, expected=0, futex_word=0x7f0c4b4281f4 <evas_thread_queue_condition+52>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7f0c4b4281f4 <evas_thread_queue_condition+52>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f0c43ffeac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007f0c4a5c9efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f0c4b4281f4 <evas_thread_queue_condition+52>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f0c43ffeac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f0c4a5cc83c in __pthread_cond_wait_common (abstime=0x7f0c43ffeac0, clockid=1, mutex=0x7f0c4b428200 <evas_thread_queue_lock>, cond=0x7f0c4b4281c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f0c4a5cc2e0 <__condvar_cleanup_waiting>, __arg = 0x7f0c43ffea20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 343, cond = 0x7f0c4b4281c8 <evas_thread_queue_condition+8>, mutex = 0x7f0c4b428200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 343 seq = 171 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7f0c4b4281c8 <evas_thread_queue_condition+8>, mutex=0x7f0c4b428200 <evas_thread_queue_lock>, abstime=0x7f0c43ffeac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007f0c4b1d34cd in eina_condition_timedwait (cond=0x7f0c4b4281c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 17947, tv_nsec = 547777113} sec = 2250 nsec = 0 err = 0 r = 0 '\000' #6 0x00007f0c4b1d391a in evas_thread_worker_func (data=0x0, thread=139690657183424) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x55974cd0b9c0 len = 0 max = 128 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007f0c4b6f319c in _eina_internal_call (context=0x55974b9a0f80) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690657183424, 1225135153979972994, -240, 2, 140725122945632, 139690648793088, 1225135154026110338, 1225151514966482306}, __mask_was_saved = 0}}, __pad = {0x7f0c43ffeba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4b688916 <_eina_debug_thread_del> __cancel_arg = 0x7f0c43ffeb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139690657183424, 1225135153979972994, -240, 2, 140725122945632, 139690648793088, 1225135154026110338, 1225151515568364930}, __mask_was_saved = 0}}, __pad = {0x7f0c43ffecb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0c4a5dce30 <__GI___libc_free> __cancel_arg = 0x55974b9a0f80 __not_first_call = 0 c = 0x55974b9a0f80 r = 0x0 self = 139690657183424 #8 0x00007f0c4a5cd144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139690657183424, -1218212628121133694, -240, 2, 140725122945632, 139690648793088, 1225135153977875842, 1225153543868243330}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f0c4a64d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7f0c490a7980 (LWP 9200) "enlightenment"): #0 0x00007f0c4a617d32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x000055974b36794c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x000055974b2e7271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x000055974b2e7292 in e_sigseg_act (x=11, info=0x7ffd1ef6acb0, data=0x7ffd1ef6ab80) at ../src/bin/e_signals.c:91 #4 0x00007f0c4a580050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 0x00007f0c4b64978b in eet_write_cipher (ef=0x55974b9bf370, name=0x55974b3712d4 "config", data=0x55974d49b7c0, size=57812, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2482 in = 0x55974ce98c90 efn = 0x2f736e6f63692f65 exists_already = 0 hash = 17966 #6 0x00007f0c4b636c01 in eet_data_write_cipher (ef=0x55974b9bf370, edd=0x55974bb834f0, name=0x55974b3712d4 "config", cipher_key=0x0, data=0x55974bb98980, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x55974ba279b0 data_enc = 0x55974d49b7c0 size = 57812 val = 32765 __func__ = "eet_data_write_cipher" #7 0x00007f0c4b636c6f in eet_data_write (ef=0x55974b9bf370, edd=0x55974bb834f0, name=0x55974b3712d4 "config", data=0x55974bb98980, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x000055974b1f49bf in e_config_domain_save (domain=0x55974b3738c8 "e", edd=0x55974bb834f0, data=0x55974bb98980) at ../src/bin/e_config.c:2328 ef = 0x55974b9bf370 buf = "/home/jose/.e/e/config/standard/e.cfg", '\000' <repeats 379 times>... buf2 = "/home/jose/.e/e/config/standard/e.cfg.tmp\000hK\f\177\000\000firefox", '\000' <repeats 505 times>... ok = 0 len = 37 len2 = 1 #9 0x000055974b1f5fa5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2562 #10 0x000055974b2cd4ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x55974d389010 #11 0x00007f0c4b5a7474 in _ecore_call_task_cb (func=0x55974b2cd445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007f0c4b5a795f in _ecore_timer_legacy_tick (data=0x55974d389030, event=0x7ffd1ef6d390) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x55974d389030 inside_call = 0 '\000' #13 0x00007f0c4b61887a in _event_callback_call (obj_id=0x4000002290cc, pd=0x55974cfbe6a0, desc=0x7f0c4b5e23a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7f0c4b5e5940 <internal> cb = 0x55974d3de738 restart_lookup = 0x0 ev = {object = 0x4000002290cc, desc = 0x7f0c4b5e23a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7f0c4b5e23a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007f0c4b618a87 in _efl_object_event_callback_call (obj_id=0x4000002290cc, pd=0x55974cfbe6a0, desc=0x7f0c4b5e23a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007f0c4b618b40 in efl_event_callback_call (obj=0x4000002290cc, desc=0x7f0c4b5e23a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x4000002290cc, obj = 0x55974cfbe660, func = 0x7f0c4b618a4d <_efl_object_event_callback_call>, data = 0x55974cfbe6a0, extn1 = 0x55974cfbe6e0, extn2 = 0x7f0c4b5cb614, extn3 = 0x7ffd1ef6d4a0, extn4 = 0x4000002290cc} _func_ = 0x7f0c4b618a4d <_efl_object_event_callback_call> #16 0x00007f0c4b5a8ef4 in _efl_loop_timer_expired_call (obj=0x4000000002d7, pd=0x55974b8fb8b0, when=17885.954497105002) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x55974cfbe6e0 #17 0x00007f0c4b5a8d1b in _efl_loop_timer_expired_timers_call (obj=0x4000000002d7, pd=0x55974b8fb8b0, when=17885.954497105002) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007f0c4b55bd4a in _ecore_main_loop_iterate_internal (obj=0x4000000002d7, pd=0x55974b8fb8b0, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007f0c4b5591b7 in _ecore_main_loop_begin (obj=0x4000000002d7, pd=0x55974b8fb8b0) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007f0c4b561663 in _efl_loop_begin (obj=0x4000000002d7, pd=0x55974b8fb8b0) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007f0c4b563cc1 in efl_loop_begin (obj=0x4000000002d7) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x4000000002d7, obj = 0x55974b8fb810, func = 0x7f0c4b56163c <_efl_loop_begin>, data = 0x55974b8fb8b0, extn1 = 0x0, extn2 = 0x7f0c4b5c2bab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7f0c4b56163c <_efl_loop_begin> #22 0x00007f0c4b559393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x000055974b2a836c in main (argc=2, argv=0x7ffd1efa68b8) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x55974b8ccecc "\f\177" s = 0x0 action = {__sigaction_handler = {sa_handler = 0x55974b2e7314 <e_sigabrt_act>, sa_sigaction = 0x55974b2e7314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 9200) detached] Thread 7 (Thread 0x7fa32840d6c0 (LWP 20539) "Ethread-feedbac"): #0 0x00007fa332d63485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7fa32840ca10, rem=rem@entry=0x7fa32840ca10) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007fa332d67d93 in __GI___nanosleep (req=req@entry=0x7fa32840ca10, rem=rem@entry=0x7fa32840ca10) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007fa332d67cca in __sleep (seconds=0) at ../sysdeps/posix/sleep.c:55 save_errno = 11 ts = {tv_sec = 5, tv_nsec = 71934436} #3 0x000055af4d9fd983 in _cb_watchdog_thread_pingpong (data=0x0, thread=0x55af4f65b510) at ../src/bin/e_watchdog.c:43 seq_new = 0x7fa2d4000b70 seq = 587 #4 0x00007fa333cfaf6c in _ecore_direct_worker (data=0x55af4f65b510, t=140338731734720) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338925645385, 2509175049704529276, -240, 0, 140732095934624, 140338723344384, 2509175049750666620, 2509163011887029628}, __mask_was_saved = 0}}, __pad = {0x7fa32840cc10, 0x0, 0x7fa333e42ed0 <_eina_thread_self+9>, 0x7fa32840cb20}} __cancel_routine = 0x7fa333cfad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55af4f65b510 __not_first_call = 0 work = 0x55af4f65b510 #5 0x00007fa333e4319c in _eina_internal_call (context=0x55af4f65d5a0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338731734720, 2509175049547242876, -240, 0, 140732095934624, 140338723344384, 2509175049702432124, 2509162638521621884}, __mask_was_saved = 0}}, __pad = {0x7fa32840cba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa333dd8916 <_eina_debug_thread_del> __cancel_arg = 0x7fa32840cb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338731734720, 2509175049547242876, -240, 0, 140732095934624, 140338723344384, 2509175049702432124, 2509162638175591804}, __mask_was_saved = 0}}, __pad = {0x7fa32840ccb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa332d2ce30 <__GI___libc_free> __cancel_arg = 0x55af4f65d5a0 __not_first_call = 0 c = 0x55af4f65d5a0 r = 0x0 self = 140338731734720 #6 0x00007fa332d1d144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140338731734720, -2480302621019513476, -240, 0, 140732095934624, 140338723344384, 2509175049553534332, 2509160627068165500}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007fa332d9d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7fa31bb846c0 (LWP 20538) "Ethread-feedbac"): #0 0x00007fa332d928dc in __GI___select (nfds=81, readfds=0x7fa31bb838b0, writefds=0x7fa31bb83930, exceptfds=0x7fa31bb839b0, timeout=0x7fa31bb838a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 0, tv_nsec = 690628546} pts64 = 0x7fa31bb837f0 #1 0x000055af4d9cc1b6 in e_powersave_sleeper_sleep (sleeper=0x55af4f4a1740, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15918507 rfds = {fds_bits = {0, 65536, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 918507} ret = 21935 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007fa32859928c in _temperature_check_main (data=0x55af4f4a1710, th=0x55af4f4a1760) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x55af4f4a1710 ptemp = 64 temp = 64 #3 0x00007fa333cfaf6c in _ecore_direct_worker (data=0x55af4f4a1760, t=140338521458368) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338925645385, 2509075193325510012, -240, 0, 140732095933936, 140338513068032, 2509075193371647356, 2509163011887029628}, __mask_was_saved = 0}}, __pad = {0x7fa31bb83c10, 0x0, 0x7fa333e42ed0 <_eina_thread_self+9>, 0x7fa31bb83b20}} __cancel_routine = 0x7fa333cfad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55af4f4a1760 __not_first_call = 0 work = 0x55af4f4a1760 #4 0x00007fa333e4319c in _eina_internal_call (context=0x55af4f498740) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338521458368, 2509075193168223612, -240, 0, 140732095933936, 140338513068032, 2509075193323412860, 2509162638521621884}, __mask_was_saved = 0}}, __pad = {0x7fa31bb83ba0, 0x0, 0x7fa304000b60, 0x7fa3040008e0}} __cancel_routine = 0x7fa333dd8916 <_eina_debug_thread_del> __cancel_arg = 0x7fa31bb83b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338521458368, 2509075193168223612, -240, 0, 140732095933936, 140338513068032, 2509075193323412860, 2509162638175591804}, __mask_was_saved = 0}}, __pad = {0x7fa31bb83cb0, 0x0, 0x20000, 0x55af4f0a9390}} __cancel_routine = 0x7fa332d2ce30 <__GI___libc_free> __cancel_arg = 0x55af4f498740 __not_first_call = 0 c = 0x55af4f498740 r = 0x7fa31bb83bb0 self = 140338521458368 #5 0x00007fa332d1d144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140338521458368, -2480302621019513476, -240, 0, 140732095933936, 140338513068032, 2509075193174515068, 2509160627068165500}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007fa332d9d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7fa31cb866c0 (LWP 20485) "Eanimator-vsync"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55af4f0992b8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55af4f0992b8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fa332d19efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55af4f0992b8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007fa332d24c4f in do_futex_wait (sem=sem@entry=0x55af4f0992b8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007fa332d24ce0 in __new_sem_wait_slow64 (sem=0x55af4f0992b8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7fa332d24c30 <__sem_wait_cleanup>, __arg = 0x55af4f0992b8, __canceltype = 481843280, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007fa333e18fab in eina_semaphore_lock (sem=0x55af4f0992b8) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007fa333e19355 in _eina_thread_queue_wait (thq=0x55af4f099290) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007fa333e19c4f in eina_thread_queue_wait (thq=0x55af4f099290, allocref=0x7fa31cb858a8) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7fa31cb85a70 blk = 0x55af4f0a89f0 #8 0x00007fa332ec98a8 in _drm_tick_core (data=0x0, thread=0x55af4f0a89f0) at ../src/lib/ecore_x/ec Thread 9 (Thread 0x7f0e46e006c0 (LWP 18375) "Ethread-feedbac"): #0 0x00007f0e65b10485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7f0e46dffa10, rem=rem@entry=0x7f0e46dffa10) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007f0e65b14d93 in __GI___nanosleep (req=req@entry=0x7f0e46dffa10, rem=rem@entry=0x7f0e46dffa10) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007f0e65b14cca in __sleep (seconds=0) at ../sysdeps/posix/sleep.c:55 save_errno = 11 ts = {tv_sec = 0, tv_nsec = 230643883} #3 0x0000559658a53983 in _cb_watchdog_thread_pingpong (data=0x0, thread=0x55965a233ed0) at ../src/bin/e_watchdog.c:43 seq_new = 0x7f0e30000b90 seq = 866 #4 0x00007f0e66aa7f6c in _ecore_direct_worker (data=0x55965a233ed0, t=139699295356608) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699828719177, 1947389541889177060, -240, 0, 140733358815760, 139699286966272, 1947389541843039716, 1947460026409383396}, __mask_was_saved = 0}}, __pad = {0x7f0e46dffc10, 0x0, 0x7f0e66befed0 <_eina_thread_self+9>, 0x7f0e46dffb20}} __cancel_routine = 0x7f0e66aa7d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55965a233ed0 __not_first_call = 0 work = 0x55965a233ed0 #5 0x00007f0e66bf019c in _eina_internal_call (context=0x559659f2a320) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699295356608, 1947389541778028004, -240, 0, 140733358815760, 139699286966272, 1947389541891274212, 1947460190143477220}, __mask_was_saved = 0}}, __pad = {0x7f0e46dffba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e66b85916 <_eina_debug_thread_del> __cancel_arg = 0x7f0e46dffb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699295356608, 1947389541778028004, -240, 0, 140733358815760, 139699286966272, 1947389541891274212, 1947460193962391012}, __mask_was_saved = 0}}, __pad = {0x7f0e46dffcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e65ad9e30 <__GI___libc_free> __cancel_arg = 0x559659f2a320 __not_first_call = 0 c = 0x559659f2a320 r = 0x0 self = 139699295356608 #6 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699295356608, -1938225936946334236, -240, 0, 140733358815760, 139699286966272, 1947389541771736548, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7f0e476096c0 (LWP 18374) "Ethread-feedbac"): #0 0x00007f0e65b3f8dc in __GI___select (nfds=87, readfds=0x7f0e476088b0, writefds=0x7f0e47608930, exceptfds=0x7f0e476089b0, timeout=0x7f0e476088a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 0, tv_nsec = 0} pts64 = 0x7f0e476087f0 #1 0x0000559658a221b6 in e_powersave_sleeper_sleep (sleeper=0x55965a0a5790, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15972529 rfds = {fds_bits = {0, 4194304, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 972529} ret = 21910 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007f0e4771628c in _temperature_check_main (data=0x55965a07fc30, th=0x55965a0a57b0) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x55965a07fc30 ptemp = 64 temp = 64 #3 0x00007f0e66aa7f6c in _ecore_direct_worker (data=0x55965a0a57b0, t=139699303782080) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699828719177, 1947392351334659556, -240, 0, 140733358815072, 139699295391744, 1947392351288522212, 1947460026409383396}, __mask_was_saved = 0}}, __pad = {0x7f0e47608c10, 0x0, 0x7f0e66befed0 <_eina_thread_self+9>, 0x7f0e47608b20}} __cancel_routine = 0x7f0e66aa7d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55965a0a57b0 __not_first_call = 0 work = 0x55965a0a57b0 #4 0x00007f0e66bf019c in _eina_internal_call (context=0x55965a0a08d0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699303782080, 1947392351223510500, -240, 0, 140733358815072, 139699295391744, 1947392351336756708, 1947460190143477220}, __mask_was_saved = 0}}, __pad = {0x7f0e47608ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e66b85916 <_eina_debug_thread_del> __cancel_arg = 0x7f0e47608b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699303782080, 1947392351223510500, -240, 0, 140733358815072, 139699295391744, 1947392351336756708, 1947460193962391012}, __mask_was_saved = 0}}, __pad = {0x7f0e47608cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e65ad9e30 <__GI___libc_free> __cancel_arg = 0x55965a0a08d0 __not_first_call = 0 c = 0x55965a0a08d0 r = 0x0 self = 139699303782080 #5 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699303782080, -1938225936946334236, -240, 0, 140733358815072, 139699295391744, 1947392351217219044, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7f0e4e7ef6c0 (LWP 18354) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5596599e2230) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5596599e2230, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0e65ac6efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5596599e2230, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f0e65ac9558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x5596599e21e0, cond=0x5596599e2208) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f0e65ac92e0 <__condvar_cleanup_waiting>, __arg = 0x7f0e4e7eeb00, __canceltype = 1, __prev = 0x0} cbuffer = {wseq = 712, cond = 0x5596599e2208, mutex = 0x5596599e21e0, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 712 seq = 356 private = 0 #4 ___pthread_cond_wait (cond=0x5596599e2208, mutex=0x5596599e21e0) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f0e5a2bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f0e5a26e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f0e5a2bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimizeore_x_vsync.c:457 msg = 0x55af4f516c94 ref = 0x55af4f516c50 tick = 0 __func__ = "_drm_tick_core" #9 0x00007fa333cfaf6c in _ecore_direct_worker (data=0x55af4f0a89f0, t=140338538243776) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338925645385, 2509077395569991036, -240, 2, 140732095915600, 140338529853440, 2509077395616128380, 2509163011887029628}, __mask_was_saved = 0}}, __pad = {0x7fa31cb85c10, 0x0, 0x7fa333e42ed0 <_eina_thread_self+9>, 0x7fa31cb85b20}} __cancel_routine = 0x7fa333cfad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55af4f0a89f0 __not_first_call = 0 work = 0x55af4f0a89f0 #10 0x00007fa333e4319c in _eina_internal_call (context=0x55af4f09b680) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338538243776, 2509077395412704636, -240, 2, 140732095915600, 140338529853440, 2509077395567893884, 2509162638521621884}, __mask_was_saved = 0}}, __pad = {0x7fa31cb85ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa333dd8916 <_eina_debug_thread_del> __cancel_arg = 0x7fa31cb85b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338538243776, 2509077395412704636, -240, 2, 140732095915600, 140338529853440, 2509077395567893884, 2509162638175591804}, __mask_was_saved = 0}}, __pad = {0x7fa31cb85cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa332d2ce30 <__GI___libc_free> __cancel_arg = 0x55af4f09b680 __not_first_call = 0 c = 0x55af4f09b680 r = 0x0 self = 140338538243776 #11 0x00007fa332d1d144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140338538243776, -2480302621019513476, -240, 2, 140732095915600, 140338529853440, 2509077395418996092, 2509160627068165500}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #12 0x00007fa332d9d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7fa32a5666c0 (LWP 20475) "Ethread-feedbac"): #0 0x00007fa332d92bfa in __GI_fdatasync (fd=55) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007fa333d95446 in eet_flush2 (ef=0x55af4f3fb3c0, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7fa300000b70 error = EET_ERROR_NONE head = {1108338462, 16777216, 0} num_directory_entries = 1 num_dictionary_entries = 0 bytes_directory_entries = 36 bytes_dictionary_entries = 0 bytes_strings = 7 data_offset = 56 strings_offset = 43 data_pad = 5 pad = 0 orig_data_offset = 48 num = 256 i = 256 j = 0 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007fa333d95bc1 in eet_sync_sync (ef=0x55af4f3fb3c0) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x000055af4d8e50ee in _e_config_pending_file_del (path=0x55af4fe3ddd0 "/home/jose/.e/e/config/profile.cfg.tmp") at ../src/bin/e_config.c:193 err = 21935 erstr = 0x55af4da7035b "" ef = 0x55af4f3fb3c0 ok = 0 '\000' #4 0x000055af4d8e53ba in _e_config_save_thread_main (data=0x0, eth=0x55af4ef5c620) at ../src/bin/e_config.c:279 msg = 0x55af4fe4a7c4 ref = 0x55af4fe4a780 run = 1 '\001' #5 0x00007fa333cfaf6c in _ecore_direct_worker (data=0x55af4ef5c620, t=140338766702272) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338925645385, 2509179289374121340, -240, 1, 140732095930400, 140338758311936, 2509179289420258684, 2509163011887029628}, __mask_was_saved = 0}}, __pad = {0x7fa32a565c10, 0x0, 0x7fa333e42ed0 <_eina_thread_self+9>, 0x7fa32a565b20}} __cancel_routine = 0x7fa333cfad8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55af4ef5c620 __not_first_call = 0 work = 0x55af4ef5c620 #6 0x00007fa333e4319c in _eina_internal_call (context=0x55af4ef5c7e0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338766702272, 2509179289216834940, -240, 1, 140732095930400, 140338758311936, 2509179289372024188, 2509162638521621884}, __mask_was_saved = 0}}, __pad = {0x7fa32a565ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa333dd8916 <_eina_debug_thread_del> __cancel_arg = 0x7fa32a565b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338766702272, 2509179289216834940, -240, 1, 140732095930400, 140338758311936, 2509179289372024188, 2509162638175591804}, __mask_was_saved = 0}}, __pad = {0x7fa32a565cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa332d2ce30 <__GI___libc_free> __cancel_arg = 0x55af4ef5c7e0 __not_first_call = 0 c = 0x55af4ef5c7e0 r = 0x0 self = 140338766702272 #7 0x00007fa332d1d144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140338766702272, -2480302621019513476, -240, 1, 140732095930400, 140338758311936, 2509179289223126396, 2509160627068165500}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007fa332d9d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7fa32bfff6c0 (LWP 20474) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55af4ed7ffb8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x55af4ed7ffb8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fa332d19efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55af4ed7ffb8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007fa332d24c4f in do_futex_wait (sem=sem@entry=0x55af4ed7ffb8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007fa332d24ce0 in __new_sem_wait_slow64 (sem=0x55af4ed7ffb8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7fa332d24c30 <__sem_wait_cleanup>, __arg = 0x55af4ed7ffb8, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007fa333e18fab in eina_semaphore_lock (sem=0x55af4ed7ffb8) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007fa333e19355 in _eina_thread_queue_wait (thq=0x55af4ed7ff90) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007fa333e19c4f in eina_thread_queue_wait (thq=0x55af4ed7ff90, allocref=0x7fa32bffead0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7fa32bffea90 blk = 0x6d61732d656c #8 0x00007fa33391228f in _evas_common_scale_sample_thread (data=0x0, t=140338794591936) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007fa333e4319c in _eina_internal_call (context=0x55af4ed80050) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338794591936, 2509180193844321660, -240, 2, 140732095934624, 140338786201600, 2509180193999510908, 2509162638521621884}, __mask_was_saved = 0}}, __pad = {0x7fa32bffeba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa333dd8916 <_eina_debd out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699423213248, -1938225936946334236, -240, 19, 140733358800592, 139699414822912, 1947407966644565476, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7f0e4eff06c0 (LWP 18353) "Eanimator-vsync"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5596599b7ac8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5596599b7ac8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0e65ac6efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5596599b7ac8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f0e65ad1c4f in do_futex_wait (sem=sem@entry=0x5596599b7ac8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f0e65ad1ce0 in __new_sem_wait_slow64 (sem=0x5596599b7ac8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f0e65ad1c30 <__sem_wait_cleanup>, __arg = 0x5596599b7ac8, __canceltype = 1325332560, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f0e66bc5fab in eina_semaphore_lock (sem=0x5596599b7ac8) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f0e66bc6355 in _eina_thread_queue_wait (thq=0x5596599b7aa0) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f0e66bc6c4f in eina_thread_queue_wait (thq=0x5596599b7aa0, allocref=0x7f0e4efef8a8) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f0e4efefa70 blk = 0x5596599ce9c0 #8 0x00007f0e65c768a8 in _drm_tick_core (data=0x0, thread=0x5596599ce9c0) at ../src/lib/ecore_x/ecore_x_vsync.c:457 msg = 0x55965a06fa84 ref = 0x55965a06fa40 tick = 0 __func__ = "_drm_tick_core" #9 0x00007f0e66aa7f6c in _ecore_direct_worker (data=0x5596599ce9c0, t=139699431605952) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699828719177, 1947406867787249124, -240, 2, 140733358796736, 139699423215616, 1947406867741111780, 1947460026409383396}, __mask_was_saved = 0}}, __pad = {0x7f0e4efefc10, 0x0, 0x7f0e66befed0 <_eina_thread_self+9>, 0x7f0e4efefb20}} __cancel_routine = 0x7f0e66aa7d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x5596599ce9c0 __not_first_call = 0 work = 0x5596599ce9c0 #10 0x00007f0e66bf019c in _eina_internal_call (context=0x5596599cbec0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699431605952, 1947406867676100068, -240, 2, 140733358796736, 139699423215616, 1947406867789346276, 1947460190143477220}, __mask_was_saved = 0}}, __pad = {0x7f0e4efefba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e66b85916 <_eina_debug_thread_del> __cancel_arg = 0x7f0e4efefb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699431605952, 1947406867676100068, -240, 2, 140733358796736, 139699423215616, 1947406867789346276, 1947460193962391012}, __mask_was_saved = 0}}, __pad = {0x7f0e4efefcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e65ad9e30 <__GI___libc_free> __cancel_arg = 0x5596599cbec0 __not_first_call = 0 c = 0x5596599cbec0 r = 0x0 self = 139699431605952 #11 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699431605952, -1938225936946334236, -240, 2, 140733358796736, 139699423215616, 1947406867669808612, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #12 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7f0e4f7f16c0 (LWP 18352) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5596599b5c98) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5596599b5c98, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0e65ac6efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5596599b5c98, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f0e65ac9558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x5596599b5c48, cond=0x5596599b5c70) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f0e65ac92e0 <__condvar_cleanup_waiting>, __arg = 0x7f0e4f7f0b00, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x5596599b5c70, mutex = 0x5596599b5c48, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 0 seq = 0 private = 0 #4 ___pthread_cond_wait (cond=0x5596599b5c70, mutex=0x5596599b5c48) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f0e5a2bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f0e5a26e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f0e5a2bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699439998656, -1938225936946334236, -240, 0, 140733358796672, 139699431608320, 1947410162446595556, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7f0e6147a6c0 (LWP 18342) "Ethread-feedbac"): #0 0x00007f0e65b3fbfa in __GI_fdatasync (fd=72) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007f0e66b42446 in eet_flush2 (ef=0x5596596b27a0, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7f0e2c000c90 error = EET_ERROR_NONE head = {1108338462, 16777216, 150994944} num_directory_entries = 1 num_dictionary_entries = 9 bytes_directory_entries = 36 bytes_dictionary_entries = 180 bytes_strings = 117 data_offset = 414 strings_offset = 223 data_pad = 3 pad = 2 orig_data_offset = 336 num = 256 i = 256 j = 9 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007f0e66b42bc1 in eet_sync_sync (ef=0x5596596b27a0) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x000055965893b0ee in _e_config_pending_file_del (path=0x55965a195490 "/home/jose/.e/e/config/standard/module.battery.cfg.tmp") at ../src/bin/e_config.c:193 err = 21910 erstr = 0x559658ac635b "" ef = 0x5596596b27a0 ok = 0 '\000' #4 0x000055965893b3ba in _e_config_save_thread_main (data=0x0, eth=0x559659870bd0) at ../src/bin/e_config.c:279 msg = 0x559659656ffc ref = 0x559659656f70 run = 1 '\001' #5 0x00007f0e66aa7f6c in _ecore_direct_worker (data=0x559659870bd0, t=139699738355392) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699828719177, 1947467402130060772, -240, 1, 140733358811536, 139699729965056, 1947467402083923428, 1947460026409383396}, __mask_was_saved = 0}}, __pad = {0x7f0e61479c10, 0x0, 0x7f0e66befed0 <_eina_thread_self+9>, 0x7f0e61479b20}} __cancel_routine = 0x7f0e66aa7d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x559659870bd0 __not_first_call = 0 work = 0x559659870bd0 #6 0x00007f0e66bf019c in _eina_internal_call (context=0x559659870d90) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699738355392, 1947467402018911716, -240, 1, 140733358811536, 139699729965056, 1947467402132157924, 1947460190143477220}, __mask_was_saved = 0}}, __pad = {0x7f0e61479ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e66b85916 <_eina_debug_thread_del> __cancel_arg = 0x7f0e61479b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699738355392, 1947467402018911716, -240, 1, 140733358811536, 139699729965056, 1947467402132157924, 1947460193962391012}, __mask_was_saved = 0}}, __pad = {0x7f0e61479cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e65ad9e30 <__GI___libc_free> __cancel_arg = 0x559659870d90 __not_first_call = 0 c = 0x559659870d90 r = 0x0 self = 139699738355392 #7 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699738355392, -1938225936946334236, -240, 1, 140733358811536, 139699729965056, 1947467402012620260, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7f0e62f136c0 (LWP 18340) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5596596944d8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5596596944d8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f0e65ac6efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5596596944d8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f0e65ad1c4f in do_futex_wait (sem=sem@entry=0x5596596944d8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f0e65ad1ce0 in __new_sem_wait_slow64 (sem=0x5596596944d8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f0e65ad1c30 <__sem_wait_cleanup>, __arg = 0x5596596944d8, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f0e66bc5fab in eina_semaphore_lock (sem=0x5596596944d8) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f0e66bc6355 in _eina_thread_queue_wait (thq=0x5596596944b0) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f0e66bc6c4f in eina_thread_queue_wait (thq=0x5596596944b0, allocref=0x7f0e62f12ad0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f0e62f12a90 blk = 0x6d61732d656c #8 0x00007f0e666bf28f in _evas_common_scale_sample_thread (data=0x0, t=139699766245056) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007f0e66bf019c in _eina_internal_call (context=0x559659694570) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699766245056, 1947468351743555044, -240, 2, 140733358815760, 139699757854720, 1947468351856801252, 1947460190143477220}, __mask_was_saved = 0}}, __pad = {0x7f0e62f12ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e66b85916 <_eina_debug_thread_del> __cancel_arg = 0x7f0e62f12b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699766245056, 1947468351743555044, -240, 2, 140733358815760, 139699757854720, 1947468351856801252, 1947460193962391012}, __mask_was_saved = 0}}, __pad = {0x7f0e62f12cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e65ad9e30 <__GI___libc_free> __cancel_arg = 0x559659694570 __not_first_call = 0 c = 0x559659694570 r = 0x0 self = 139699766245056 #10 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699766245056, -1938225936946334236, -240, 2, 140733358815760, 139699757854720, 1947468351737263588, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7f0e637146c0 (LWP 18339) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f0e63713ac0, op=137, expected=0, futex_word=0x7f0e669251f0 <evas_thread_queue_condition+48>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7f0e669251f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f0e63713ac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007f0e65ac6efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f0e669251f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f0e63713ac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f0e65ac983c in __pthread_cond_wait_common (abstime=0x7f0e63713ac0, clockid=1, mutex=0x7f0e66925200 <evas_thread_queue_lock>, cond=0x7f0e669251c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f0e65ac92e0 <__condvar_cleanup_waiting>, __arg = 0x7f0e63713a20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 422, cond = 0x7f0e669251c8 <evas_thread_queue_condition+8>, mutex = 0x7f0e66925200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 422 seq = 211 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7f0e669251c8 <evas_thread_queue_condition+8>, mutex=0x7f0e66925200 <evas_thread_queue_lock>, abstime=0x7f0e63713ac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007f0e666d04cd in eina_condition_timedwait (cond=0x7f0e669251c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 28618, tv_nsec = 5331ug_thread_del> __cancel_arg = 0x7fa32bffeb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338794591936, 2509180193844321660, -240, 2, 140732095934624, 140338786201600, 2509180193999510908, 2509162638175591804}, __mask_was_saved = 0}}, __pad = {0x7fa32bffecb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa332d2ce30 <__GI___libc_free> __cancel_arg = 0x55af4ed80050 __not_first_call = 0 c = 0x55af4ed80050 r = 0x0 self = 140338794591936 #10 0x00007fa332d1d144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140338794591936, -2480302621019513476, -240, 2, 140732095934624, 140338786201600, 2509180193850613116, 2509160627068165500}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007fa332d9d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7fa330ad76c0 (LWP 20473) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7fa330ad6ac0, op=137, expected=0, futex_word=0x7fa333b781f0 <evas_thread_queue_condition+48>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7fa333b781f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7fa330ad6ac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007fa332d19efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7fa333b781f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7fa330ad6ac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fa332d1c83c in __pthread_cond_wait_common (abstime=0x7fa330ad6ac0, clockid=1, mutex=0x7fa333b78200 <evas_thread_queue_lock>, cond=0x7fa333b781c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fa332d1c2e0 <__condvar_cleanup_waiting>, __arg = 0x7fa330ad6a20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 377376, cond = 0x7fa333b781c8 <evas_thread_queue_condition+8>, mutex = 0x7fa333b78200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 377376 seq = 188688 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7fa333b781c8 <evas_thread_queue_condition+8>, mutex=0x7fa333b78200 <evas_thread_queue_lock>, abstime=0x7fa330ad6ac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007fa3339234cd in eina_condition_timedwait (cond=0x7fa333b781c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 29975, tv_nsec = 186986540} sec = 2250 nsec = 0 err = 0 r = 0 '\000' #6 0x00007fa33392391a in evas_thread_worker_func (data=0x0, thread=140338873071296) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x55af4fa0fe70 len = 0 max = 256 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007fa333e4319c in _eina_internal_call (context=0x55af4ed7fb40) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338873071296, 2509156670308441468, -240, 2, 140732095934640, 140338864680960, 2509156670463630716, 2509162638521621884}, __mask_was_saved = 0}}, __pad = {0x7fa330ad6ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa333dd8916 <_eina_debug_thread_del> __cancel_arg = 0x7fa330ad6b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140338873071296, 2509156670308441468, -240, 2, 140732095934640, 140338864680960, 2509156670463630716, 2509162638175591804}, __mask_was_saved = 0}}, __pad = {0x7fa330ad6cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fa332d2ce30 <__GI___libc_free> __cancel_arg = 0x55af4ed7fb40 __not_first_call = 0 c = 0x55af4ed7fb40 r = 0x0 self = 140338873071296 #8 0x00007fa332d1d144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140338873071296, -2480302621019513476, -240, 2, 140732095934640, 140338864680960, 2509156670314732924, 2509160627068165500}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fa332d9d7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7fa3315f0980 (LWP 20470) "enlightenment"): #0 0x00007fa332d67d32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x000055af4da6694c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x000055af4d9e6271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x000055af4d9e6292 in e_sigseg_act (x=11, info=0x7ffebe960af0, data=0x7ffebe9609c0) at ../src/bin/e_signals.c:91 #4 0x00007fa332cd0050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 eet_write_cipher (ef=0x55af4ed9df80, name=0x55af4da702d4 "config", data=0x55af4fe76750, size=14526, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2479 in = 0x55af4fe72240 efn = 0xf300a6358b6e1700 exists_already = 0 hash = 0 #6 0x00007fa333d86c01 in eet_data_write_cipher (ef=0x55af4ed9df80, edd=0x55af4ef64d70, name=0x55af4da702d4 "config", cipher_key=0x0, data=0x55af4ef6ca90, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x55af4ee08550 data_enc = 0x55af4fe76750 size = 14526 val = 32766 __func__ = "eet_data_write_cipher" #7 0x00007fa333d86c6f in eet_data_write (ef=0x55af4ed9df80, edd=0x55af4ef64d70, name=0x55af4da702d4 "config", data=0x55af4ef6ca90, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x000055af4d8f39bf in e_config_domain_save (domain=0x55af4da72c33 "e_bindings", edd=0x55af4ef64d70, data=0x55af4ef6ca90) at ../src/bin/e_config.c:2328 ef = 0x55af4ed9df80 buf = "/home/jose/.e/e/config/standard/e_bindings.cfg", '\000' <repeats 370 times>... buf2 = "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000efox", '\000' <repeats 3137 times>... ok = 0 len = 46 len2 = 10 #9 0x000055af4d8f4fc5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2563 #10 0x000055af4d9cc4ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x55af4f8baa20 #11 0x00007fa333cf7474 in _ecore_call_task_cb (func=0x55af4d9cc445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007fa333cf795f in _ecore_timer_legacy_tick (data=0x55af4f613270, event=0x7ffebe9631e0) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x55af4f613270 inside_call = 0 '\000' #13 0x00007fa333d6887a in _event_callback_call (obj_id=0x4000002573b9, pd=0x55af4fa7afd0, desc=0x7fa333d323a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7fa333d35940 <internal> cb = 0x7fa30400c878 restart_lookup = 0x0 ev = {object = 0x4000002573b9, desc = 0x7fa333d323a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7fa333d323a0 <_EFL_LOOP_TIMER_E98780} sec = 2250 nsec = 0 err = 110 r = 0 '\000' #6 0x00007f0e666d091a in evas_thread_worker_func (data=0x0, thread=139699774637760) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x55965a8f60f0 len = 0 max = 128 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007f0e66bf019c in _eina_internal_call (context=0x559659694060) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699774637760, 1947471650815309284, -240, 2, 140733358815776, 139699766247424, 1947471650928555492, 1947460190143477220}, __mask_was_saved = 0}}, __pad = {0x7f0e63713ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e66b85916 <_eina_debug_thread_del> __cancel_arg = 0x7f0e63713b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {139699774637760, 1947471650815309284, -240, 2, 140733358815776, 139699766247424, 1947471650928555492, 1947460193962391012}, __mask_was_saved = 0}}, __pad = {0x7f0e63713cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f0e65ad9e30 <__GI___libc_free> __cancel_arg = 0x559659694060 __not_first_call = 0 c = 0x559659694060 r = 0x0 self = 139699774637760 #8 0x00007f0e65aca144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139699774637760, -1938225936946334236, -240, 2, 140733358815776, 139699766247424, 1947471650809017828, 1947457875760608740}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f0e65b4a7dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7f0e645a4980 (LWP 18335) "enlightenment"): #0 0x00007f0e65b14d32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x0000559658abc94c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x0000559658a3c271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x0000559658a3c292 in e_sigseg_act (x=11, info=0x7fff09dc1470, data=0x7fff09dc1340) at ../src/bin/e_signals.c:91 #4 0x00007f0e65a7d050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 eet_write_cipher (ef=0x5596596b20c0, name=0x559658ac62d4 "config", data=0x55965ae429c0, size=14526, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2479 in = 0x55965a9042d0 efn = 0x70cd6d6f06d86f00 exists_already = 0 hash = 0 #6 0x00007f0e66b33c01 in eet_data_write_cipher (ef=0x5596596b20c0, edd=0x559659879d90, name=0x559658ac62d4 "config", cipher_key=0x0, data=0x559659881b20, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x55965971daa0 data_enc = 0x55965ae429c0 size = 14526 val = 32767 __func__ = "eet_data_write_cipher" #7 0x00007f0e66b33c6f in eet_data_write (ef=0x5596596b20c0, edd=0x559659879d90, name=0x559658ac62d4 "config", data=0x559659881b20, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x00005596589499bf in e_config_domain_save (domain=0x559658ac8c33 "e_bindings", edd=0x559659879d90, data=0x559659881b20) at ../src/bin/e_config.c:2328 ef = 0x5596596b20c0 buf = "/home/jose/.e/e/config/standard/e_bindings.cfg\000\000\000\251\300Z\226U\000\0000\001\000\000\000\000\000\000\000\020\000\000\000\b\000\000\020\021\000\000\000\000\000\000`<\301e\016\177\000\000\001\021\000\000\000\000\000\000c\000\000\000\000\000\000\000`<\301e\016\177\000\000\360\364\300Z\226U\000\000\020\341SZ\226U\000\000\000\000\000\000\000\000\000\000p\373SZ\000\000\000\000\360\347SZ\226U\000\000\370\340SZ\226U\000\000\340\340SZ\226U\000\000\340\340SZ\226U\000\000@\033\334\t\377\177\000\000\244\034\334\t\377\177\000\000\004\000\000\000\004\000\000\000"... buf2 = "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000\t\377\177\000\000\252K\252f\016\177\000\000ofile.cf\000\000\000\000\000\000\000\000\277\030\017f\016\177\000\000\232\231\231\231\231\231\271?P$\314Z\226U\000\000\220h'\000\000@\000\000\220h'\000\000@\000\000\200c\307Z\226U\000\000\377\000\000\000\004\000\000\000x\320\337\t\377\177\000\000 ;\334\t\377\177\000\000\335\031\017f\016\177\000\000\320\033\260Y\226U\000\000\320\354\243Z\226U\000\000\264+\334\tG", '\000' <repeats 11 times>, "\320\354\243Z\226U\000\000"... ok = 0 len = 46 len2 = 10 #9 0x000055965894afc5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2563 #10 0x0000559658a224ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x559659e9b780 #11 0x00007f0e66aa4474 in _ecore_call_task_cb (func=0x559658a22445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007f0e66aa495f in _ecore_timer_legacy_tick (data=0x559659e9b7a0, event=0x7fff09dc3b50) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x559659e9b7a0 inside_call = 0 '\000' #13 0x00007f0e66b1587a in _event_callback_call (obj_id=0x40000031872f, pd=0x55965a286bd0, desc=0x7f0e66adf3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7f0e66ae2940 <internal> cb = 0x7f0e380033e8 restart_lookup = 0x0 ev = {object = 0x40000031872f, desc = 0x7f0e66adf3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7f0e66adf3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007f0e66b15a87 in _efl_object_event_callback_call (obj_id=0x40000031872f, pd=0x55965a286bd0, desc=0x7f0e66adf3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007f0e66b15b40 in efl_event_callback_call (obj=0x40000031872f, desc=0x7f0e66adf3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x40000031872f, obj = 0x55965a286b90, func = 0x7f0e66b15a4d <_efl_object_event_callback_call>, data = 0x55965a286bd0, extn1 = 0x55965a286c10, extn2 = 0x7f0e66ac8614, extn3 = 0x40db13b052ff7027, extn4 = 0x40000031872f} _func_ = 0x7f0e66b15a4d <_efl_object_event_callback_call> #16 0x00007f0e66aa5ef4 in _efl_loop_timer_expired_call (obj=0x4000000000d2, pd=0x5596595ee710, when=27726.755065784) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x55965a286c10 #17 0x00007f0e66aa5d1b in _efl_loop_timer_expired_timers_call (obj=0x4000000000d2, pd=0x5596595ee710, when=27726.755065784) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007f0e66a58d4a in _ecore_main_loop_iterate_internal (obj=0x4000000000d2, pd=0x5596595ee710, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007f0e66a561b7 in _ecore_main_loop_begin (obj=0x4000000000d2, pd=0x5596595ee710) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007f0e66a5e663 in _efl_loop_begin (obj=0x4000000000d2, pd=0x5596595ee710) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007f0e66a60cc1 in efl_loop_begin (obj=0x4000000000d2) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x4000000000d2, obj = 0x5596595ee670, func = 0x7f0e66a5e63c <_efl_loop_begin>, data = 0x5596595ee710, extn1 = 0x0, extn2 = 0x7f0e66abfbab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7f0e66a5e63c <_efl_loop_begin> #22 0x00007f0e66a56393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x00005596589fd36c in main (argc=1, argv=0x7fff09dfd078) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x5596595bfecc "\016\177" s = 0x0 action = {__sigaction_handler = {sa_handler = VENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007fa333d68a87 in _efl_object_event_callback_call (obj_id=0x4000002573b9, pd=0x55af4fa7afd0, desc=0x7fa333d323a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007fa333d68b40 in efl_event_callback_call (obj=0x4000002573b9, desc=0x7fa333d323a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x4000002573b9, obj = 0x55af4fa7af90, func = 0x7fa333d68a4d <_efl_object_event_callback_call>, data = 0x55af4fa7afd0, extn1 = 0x55af4fa7b010, extn2 = 0x7fa333d1b614, extn3 = 0x7ffebe9632f0, extn4 = 0x4000002573b9} _func_ = 0x7fa333d68a4d <_efl_object_event_callback_call> #16 0x00007fa333cf8ef4 in _efl_loop_timer_expired_call (obj=0x4000000003a6, pd=0x55af4ecdc0a0, when=27725.357982649999) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x55af4fa7b010 #17 0x00007fa333cf8d1b in _efl_loop_timer_expired_timers_call (obj=0x4000000003a6, pd=0x55af4ecdc0a0, when=27725.357982649999) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007fa333cabd4a in _ecore_main_loop_iterate_internal (obj=0x4000000003a6, pd=0x55af4ecdc0a0, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007fa333ca91b7 in _ecore_main_loop_begin (obj=0x4000000003a6, pd=0x55af4ecdc0a0) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007fa333cb1663 in _efl_loop_begin (obj=0x4000000003a6, pd=0x55af4ecdc0a0) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007fa333cb3cc1 in efl_loop_begin (obj=0x4000000003a6) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x4000000003a6, obj = 0x55af4ecdc000, func = 0x7fa333cb163c <_efl_loop_begin>, data = 0x55af4ecdc0a0, extn1 = 0x0, extn2 = 0x7fa333d12bab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7fa333cb163c <_efl_loop_begin> #22 0x00007fa333ca9393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x000055af4d9a736c in main (argc=2, argv=0x7ffebe99c708) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x55af4ecadecc "\243\177" s = 0x0 action = {__sigaction_handler = {sa_handler = 0x55af4d9e6314 <e_sigabrt_act>, sa_sigaction = 0x55af4d9e6314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 20470) detached] 0x559658a3c314 <e_sigabrt_act>, sa_sigaction = 0x559658a3c314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 18335) detached] Thread 9 (Thread 0x7fdb3a2196c0 (LWP 1501) "Ethread-feedbac"): #0 0x00007fdb58f29485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7fdb3a218a10, rem=rem@entry=0x7fdb3a218a10) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007fdb58f2dd93 in __GI___nanosleep (req=req@entry=0x7fdb3a218a10, rem=rem@entry=0x7fdb3a218a10) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007fdb58f2dcca in __sleep (seconds=0) at ../sysdeps/posix/sleep.c:55 save_errno = 11 ts = {tv_sec = 5, tv_nsec = 138552467} #3 0x000056024bff1983 in _cb_watchdog_thread_pingpong (data=0x0, thread=0x56024e8ec7f0) at ../src/bin/e_watchdog.c:43 seq_new = 0x7fdb24000bb0 seq = 2075 #4 0x00007fdb59ec0f6c in _ecore_direct_worker (data=0x56024e8ec7f0, t=140579549845184) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580083207753, -7989332334989688314, -240, 0, 140725308105008, 140579541454848, -7989332334943550970, -7989114120397929978}, __mask_was_saved = 0}}, __pad = {0x7fdb3a218c10, 0x0, 0x7fdb5a008ed0 <_eina_thread_self+9>, 0x7fdb3a218b20}} __cancel_routine = 0x7fdb59ec0d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x56024e8ec7f0 __not_first_call = 0 work = 0x56024e8ec7f0 #5 0x00007fdb5a00919c in _eina_internal_call (context=0x56024e5e6120) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579549845184, -7989332334878539258, -240, 0, 140725308105008, 140579541454848, -7989332334991785466, -7989120962269298170}, __mask_was_saved = 0}}, __pad = {0x7fdb3a218ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb59f9e916 <_eina_debug_thread_del> __cancel_arg = 0x7fdb3a218b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579549845184, -7989332334878539258, -240, 0, 140725308105008, 140579541454848, -7989332334991785466, -7989120962330115578}, __mask_was_saved = 0}}, __pad = {0x7fdb3a218cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb58ef2e30 <__GI___libc_free> __cancel_arg = 0x56024e5e6120 __not_first_call = 0 c = 0x56024e5e6120 r = 0x0 self = 140579549845184 #6 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140579549845184, 7968632255153553926, -240, 0, 140725308105008, 140579541454848, -7989332334872247802, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7fdb3aa226c0 (LWP 1500) "Ethread-feedbac"): #0 0x00007fdb58f588dc in __GI___select (nfds=87, readfds=0x7fdb3aa218b0, writefds=0x7fdb3aa21930, exceptfds=0x7fdb3aa219b0, timeout=0x7fdb3aa218a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 15, tv_nsec = 916569899} pts64 = 0x7fdb3aa217f0 #1 0x000056024bfc01b6 in e_powersave_sleeper_sleep (sleeper=0x56024e760d00, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15974433 rfds = {fds_bits = {0, 4194304, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 974433} ret = 22018 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007fdb3ab2d28c in _temperature_check_main (data=0x56024e73b430, th=0x56024e760d20) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x56024e73b430 ptemp = 77 temp = 77 #3 0x00007fdb59ec0f6c in _ecore_direct_worker (data=0x56024e760d20, t=140579558270656) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580083207753, -7989331222056287738, -240, 0, 140725308104320, 140579549880320, -7989331222010150394, -7989114120397929978}, __mask_was_saved = 0}}, __pad = {0x7fdb3aa21c10, 0x0, 0x7fdb5a008ed0 <_eina_thread_self+9>, 0x7fdb3aa21b20}} __cancel_routine = 0x7fdb59ec0d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x56024e760d20 __not_first_call = 0 work = 0x56024e760d20 #4 0x00007fdb5a00919c in _eina_internal_call (context=0x56024e75be40) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579558270656, -7989331221945138682, -240, 0, 140725308104320, 140579549880320, -7989331222058384890, -7989120962269298170}, __mask_was_saved = 0}}, __pad = {0x7fdb3aa21ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb59f9e916 <_eina_debug_thread_del> __cancel_arg = 0x7fdb3aa21b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579558270656, -7989331221945138682, -240, 0, 140725308104320, 140579549880320, -7989331222058384890, -7989120962330115578}, __mask_was_saved = 0}}, __pad = {0x7fdb3aa21cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb58ef2e30 <__GI___libc_free> __cancel_arg = 0x56024e75be40 __not_first_call = 0 c = 0x56024e75be40 r = 0x0 self = 140579558270656 #5 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140579558270656, 7968632255153553926, -240, 0, 140725308104320, 140579549880320, -7989331221938847226, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7fdb41c436c0 (LWP 1482) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x56024e09b8b4) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x56024e09b8b4, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fdb58edfefb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x56024e09b8b4, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fdb58ee2558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x56024e09b860, cond=0x56024e09b888) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fdb58ee22e0 <__condvar_cleanup_waiting>, __arg = 0x7fdb41c42b00, __canceltype = 1309377984, __prev = 0x0} cbuffer = {wseq = 10799, cond = 0x56024e09b888, mutex = 0x56024e09b860, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 10799 seq = 5399 private = 0 #4 ___pthread_cond_wait (cond=0x56024e09b888, mutex=0x56024e09b860) at ./nptl/pthread_cond_wait.c:618 #5 0x00007fdb4d8bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007fdb4d86e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007fdb4d8bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140579677943488, 7968632255153553926, -240, 19, 140725308089840, 140579669553152, -7989166552355847674, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7fdb424446c0 (LWP 1481) "Eanimator-vsync"): #0 0x00007fdb58f29485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7fdb42443370, rem=rem@entry=0x0) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007fdb58f2dd93 in __GI___nanosleep (req=req@entry=0x7fdb42443370, rem=rem@entry=0x0) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007fdb58f59185 in usleep (useconds=<optimized out>) at ../sysdeps/posix/usleep.c:31 ts = {tv_sec = 0, tv_nsec = 8340000} #3 0x00007fdb5908f5c1 in _drm_send_time (t=21936.080231955999) at ../src/lib/ecore_x/ecore_x_vsync.c:335 t_delta_hist = {0.016693718000169611, 0.016713323999283602, 0.016725034998671617, 0.016681313001754461, 0.016728563998185564, 0.016695819002052303, 0.016725266999856103, 0.01672742200025823, 0.016702708999218885, 0.016735549997974886} t_delta = 0.016735549997974886 t_delta_min = 0.016681313001754461 t_sleep = 0.0083406565008772304 t_last = 21936.063496406001 tim = 0x7fdb2c0065b0 __func__ = "_drm_send_time" #4 0x00007fdb5908f759 in _drm_vblank_handler (fd=55, frame=1288785, sec=21936, usec=80588, data=0x0) at ../src/lib/ecore_x/ecore_x_vsync.c:418 t = 21936.080231955999 pframe = 1288784 __func__ = "_drm_vblank_handler" #5 0x00007fdb4f59556c in drmHandleEvent () at /lib/x86_64-linux-gnu/libdrm.so.2 #6 0x00007fdb5908fc31 in _drm_tick_core (data=0x0, thread=0x56024e088160) at ../src/lib/ecore_x/ecore_x_vsync.c:530 wfds = {fds_bits = {0 <repeats 16 times>}} ret = 1 tv = {tv_sec = 0, tv_usec = 91652} rfds = {fds_bits = {36028797018963968, 0 <repeats 15 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} max_fd = 55 msg = 0x0 ref = 0x560253076ff0 tick = 1 __func__ = "_drm_tick_core" #7 0x00007fdb59ec0f6c in _ecore_direct_worker (data=0x56024e088160, t=140579686336192) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580083207753, -7989174248517811706, -240, 2, 140725308085984, 140579677945856, -7989174248471674362, -7989114120397929978}, __mask_was_saved = 0}}, __pad = {0x7fdb42443c10, 0x0, 0x7fdb5a008ed0 <_eina_thread_self+9>, 0x7fdb42443b20}} __cancel_routine = 0x7fdb59ec0d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x56024e088160 __not_first_call = 0 work = 0x56024e088160 #8 0x00007fdb5a00919c in _eina_internal_call (context=0x56024e075910) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579686336192, -7989174248406662650, -240, 2, 140725308085984, 140579677945856, -7989174248519908858, -7989120962269298170}, __mask_was_saved = 0}}, __pad = {0x7fdb42443ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb59f9e916 <_eina_debug_thread_del> __cancel_arg = 0x7fdb42443b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579686336192, -7989174248406662650, -240, 2, 140725308085984, 140579677945856, -7989174248519908858, -7989120962330115578}, __mask_was_saved = 0}}, __pad = {0x7fdb42443cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb58ef2e30 <__GI___libc_free> __cancel_arg = 0x56024e075910 __not_first_call = 0 c = 0x56024e075910 r = 0x0 self = 140579686336192 #9 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140579686336192, 7968632255153553926, -240, 2, 140725308085984, 140579677945856, -7989174248400371194, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #10 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7fdb42c456c0 (LWP 1480) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x56024e06f448) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x56024e06f448, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fdb58edfefb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x56024e06f448, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fdb58ee2558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x56024e06f3f8, cond=0x56024e06f420) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fdb58ee22e0 <__condvar_cleanup_waiting>, __arg = 0x7fdb42c44b00, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x56024e06f420, mutex = 0x56024e06f3f8, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 0 seq = 0 private = 0 #4 ___pthread_cond_wait (cond=0x56024e06f420, mutex=0x56024e06f3f8) at ./nptl/pthread_cond_wait.c:618 #5 0x00007fdb4d8bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007fdb4d86e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007fdb4d8bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140579694728896, 7968632255153553926, -240, 0, 140725308085920, 140579686338560, -7989173148351872506, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7fdb549766c0 (LWP 1456) "Ethread-feedbac"): #0 0x00007fdb58f58bfa in __GI_fdatasync (fd=38) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007fdb59f5b446 in eet_flush2 (ef=0x5602532a8360, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7fdb28000b70 error = EET_ERROR_NONE head = {1108338462, 16777216, 16777216} num_directory_entries = 1 num_dictionary_entries = 1 bytes_directory_entries = 36 bytes_dictionary_entries = 20 bytes_strings = 14 data_offset = 84 strings_offset = 63 data_pad = 2 pad = 4 orig_data_offset = 72 num = 256 i = 256 j = 1 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007fdb59f5bbc1 in eet_sync_sync (ef=0x5602532a8360) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x000056024bed90ee in _e_config_pending_file_del (path=0x56025029b620 "/home/jose/.e/e/config/standard/module.ebluez5.cfg.tmp") at ../src/bin/e_config.c:193 err = 22018 erstr = 0x56024c06435b "" ef = 0x5602532a8360 ok = 0 '\000' #4 0x000056024bed93ba in _e_config_save_thread_main (data=0x0, eth=0x56024df2b030) at ../src/bin/e_config.c:279 msg = 0x560253496014 ref = 0x560253495f70 run = 1 '\001' #5 0x00007fdb59ec0f6c in _ecore_direct_worker (data=0x56024df2b030, t=140579993773760) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580083207753, -7989124056456248826, -240, 1, 140725308100784, 140579985383424, -7989124056410111482, -7989114120397929978}, __mask_was_saved = 0}}, __pad = {0x7fdb54975c10, 0x0, 0x7fdb5a008ed0 <_eina_thread_self+9>, 0x7fdb54975b20}} __cancel_routine = 0x7fdb59ec0d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x56024df2b030 __not_first_call = 0 work = 0x56024df2b030 #6 0x00007fdb5a00919c in _eina_internal_call (context=0x56024df2b1f0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579993773760, -7989124056345099770, -240, 1, 140725308100784, 140579985383424, -7989124056458345978, -7989120962269298170}, __mask_was_saved = 0}}, __pad = {0x7fdb54975ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb59f9e916 <_eina_debug_thread_del> __cancel_arg = 0x7fdb54975b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140579993773760, -7989124056345099770, -240, 1, 140725308100784, 140579985383424, -7989124056458345978, -7989120962330115578}, __mask_was_saved = 0}}, __pad = {0x7fdb54975cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb58ef2e30 <__GI___libc_free> __cancel_arg = 0x56024df2b1f0 __not_first_call = 0 c = 0x56024df2b1f0 r = 0x0 self = 140579993773760 #7 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140579993773760, 7968632255153553926, -240, 1, 140725308100784, 140579985383424, -7989124056338808314, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7fdb5649d6c0 (LWP 1453) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x56024dd4e688) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x56024dd4e688, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007fdb58edfefb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x56024dd4e688, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007fdb58eeac4f in do_futex_wait (sem=sem@entry=0x56024dd4e688, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007fdb58eeace0 in __new_sem_wait_slow64 (sem=0x56024dd4e688, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7fdb58eeac30 <__sem_wait_cleanup>, __arg = 0x56024dd4e688, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007fdb59fdefab in eina_semaphore_lock (sem=0x56024dd4e688) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007fdb59fdf355 in _eina_thread_queue_wait (thq=0x56024dd4e660) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007fdb59fdfc4f in eina_thread_queue_wait (thq=0x56024dd4e660, allocref=0x7fdb5649cad0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7fdb5649ca90 blk = 0x6d61732d656c #8 0x00007fdb59ad828f in _evas_common_scale_sample_thread (data=0x0, t=140580022245056) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007fdb5a00919c in _eina_internal_call (context=0x56024dd4e720) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580022245056, -7989130366188928506, -240, 2, 140725308105008, 140580013854720, -7989130366302174714, -7989120962269298170}, __mask_was_saved = 0}}, __pad = {0x7fdb5649cba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb59f9e916 <_eina_debug_thread_del> __cancel_arg = 0x7fdb5649cb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580022245056, -7989130366188928506, -240, 2, 140725308105008, 140580013854720, -7989130366302174714, -7989120962330115578}, __mask_was_saved = 0}}, __pad = {0x7fdb5649ccb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb58ef2e30 <__GI___libc_free> __cancel_arg = 0x56024dd4e720 __not_first_call = 0 c = 0x56024dd4e720 r = 0x0 self = 140580022245056 #10 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140580022245056, 7968632255153553926, -240, 2, 140725308105008, 140580013854720, -7989130366182637050, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7fdb56c9e6c0 (LWP 1452) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7fdb56c9dac0, op=137, expected=0, futex_word=0x7fdb59d3e1f0 <evas_thread_queue_condition+48>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7fdb59d3e1f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7fdb56c9dac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007fdb58edfefb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7fdb59d3e1f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7fdb56c9dac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007fdb58ee283c in __pthread_cond_wait_common (abstime=0x7fdb56c9dac0, clockid=1, mutex=0x7fdb59d3e200 <evas_thread_queue_lock>, cond=0x7fdb59d3e1c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7fdb58ee22e0 <__condvar_cleanup_waiting>, __arg = 0x7fdb56c9da20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 9396, cond = 0x7fdb59d3e1c8 <evas_thread_queue_condition+8>, mutex = 0x7fdb59d3e200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 9396 seq = 4698 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7fdb59d3e1c8 <evas_thread_queue_condition+8>, mutex=0x7fdb59d3e200 <evas_thread_queue_lock>, abstime=0x7fdb56c9dac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007fdb59ae94cd in eina_condition_timedwait (cond=0x7fdb59d3e1c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 24121, tv_nsec = 836700329} sec = 2250 nsec = 0 err = 0 r = 0 '\000' #6 0x00007fdb59ae991a in evas_thread_worker_func (data=0x0, thread=140580030637760) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x56024ef2b950 len = 0 max = 128 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007fdb5a00919c in _eina_internal_call (context=0x56024dd4e210) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580030637760, -7989129266140429818, -240, 2, 140725308105024, 140580022247424, -7989129266253676026, -7989120962269298170}, __mask_was_saved = 0}}, __pad = {0x7fdb56c9dba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb59f9e916 <_eina_debug_thread_del> __cancel_arg = 0x7fdb56c9db68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140580030637760, -7989129266140429818, -240, 2, 140725308105024, 140580022247424, -7989129266253676026, -7989120962330115578}, __mask_was_saved = 0}}, __pad = {0x7fdb56c9dcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7fdb58ef2e30 <__GI___libc_free> __cancel_arg = 0x56024dd4e210 __not_first_call = 0 c = 0x56024dd4e210 r = 0x0 self = 140580030637760 #8 0x00007fdb58ee3144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140580030637760, 7968632255153553926, -240, 2, 140725308105024, 140580022247424, -7989129266134138362, -7989116301223673338}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007fdb58f637dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7fdb577b7980 (LWP 1423) "enlightenment"): #0 0x00007fdb58f2dd32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x000056024c05a94c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x000056024bfda271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x000056024bfda292 in e_sigseg_act (x=11, info=0x7ffd29fffb70, data=0x7ffd29fffa40) at ../src/bin/e_signals.c:91 #4 0x00007fdb58e96050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 eet_write_cipher (ef=0x5602532a8d60, name=0x56024c0642d4 "config", data=0x56024e8dd7b0, size=14526, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2479 in = 0x5602533a2470 efn = 0xe5ab2e389f0ea300 exists_already = 0 hash = 17966 #6 0x00007fdb59f4cc01 in eet_data_write_cipher (ef=0x5602532a8d60, edd=0x56024df341f0, name=0x56024c0642d4 "config", cipher_key=0x0, data=0x56024df3bf80, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x56024f45baa0 data_enc = 0x56024e8dd7b0 size = 14526 val = 32765 __func__ = "eet_data_write_cipher" #7 0x00007fdb59f4cc6f in eet_data_write (ef=0x5602532a8d60, edd=0x56024df341f0, name=0x56024c0642d4 "config", data=0x56024df3bf80, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x000056024bee79bf in e_config_domain_save (domain=0x56024c066c33 "e_bindings", edd=0x56024df341f0, data=0x56024df3bf80) at ../src/bin/e_config.c:2328 ef = 0x5602532a8d60 buf = "/home/jose/.e/e/config/standard/e_bindings.cfg", '\000' <repeats 370 times>... buf2 = "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000efox", '\000' <repeats 3137 times>... ok = 0 len = 46 len2 = 10 #9 0x000056024bee8fc5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2563 #10 0x000056024bfc04ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x56024fd24900 #11 0x00007fdb59ebd474 in _ecore_call_task_cb (func=0x56024bfc0445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007fdb59ebd95f in _ecore_timer_legacy_tick (data=0x560250b09260, event=0x7ffd2a002270) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x560250b09260 inside_call = 0 '\000' #13 0x00007fdb59f2e87a in _event_callback_call (obj_id=0x40000004ce91, pd=0x56024e962a10, desc=0x7fdb59ef83a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7fdb59efb940 <internal> cb = 0x560253075c88 restart_lookup = 0x0 ev = {object = 0x40000004ce91, desc = 0x7fdb59ef83a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7fdb59ef83a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007fdb59f2ea87 in _efl_object_event_callback_call (obj_id=0x40000004ce91, pd=0x56024e962a10, desc=0x7fdb59ef83a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007fdb59f2eb40 in efl_event_callback_call (obj=0x40000004ce91, desc=0x7fdb59ef83a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x40000004ce91, obj = 0x56024e9629d0, func = 0x7fdb59f2ea4d <_efl_object_event_callback_call>, data = 0x56024e962a10, extn1 = 0x56024e962a50, extn2 = 0x7fdb59ee1614, extn3 = 0x7ffd2a002380, extn4 = 0x40000004ce91} _func_ = 0x7fdb59f2ea4d <_efl_object_event_callback_call> #16 0x00007fdb59ebeef4 in _efl_loop_timer_expired_call (obj=0x40000000014b, pd=0x56024dca8710, when=21935.267070673999) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x56024e962a50 #17 0x00007fdb59ebed1b in _efl_loop_timer_expired_timers_call (obj=0x40000000014b, pd=0x56024dca8710, when=21935.267070673999) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007fdb59e71d4a in _ecore_main_loop_iterate_internal (obj=0x40000000014b, pd=0x56024dca8710, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007fdb59e6f1b7 in _ecore_main_loop_begin (obj=0x40000000014b, pd=0x56024dca8710) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007fdb59e77663 in _efl_loop_begin (obj=0x40000000014b, pd=0x56024dca8710) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007fdb59e79cc1 in efl_loop_begin (obj=0x40000000014b) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x40000000014b, obj = 0x56024dca8670, func = 0x7fdb59e7763c <_efl_loop_begin>, data = 0x56024dca8710, extn1 = 0x0, extn2 = 0x7fdb59ed8bab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7fdb59e7763c <_efl_loop_begin> #22 0x00007fdb59e6f393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x000056024bf9b36c in main (argc=1, argv=0x7ffd2a03b798) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x56024dc79ecc "\333\177" s = 0x0 action = {__sigaction_handler = {sa_handler = 0x56024bfda314 <e_sigabrt_act>, sa_sigaction = 0x56024bfda314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 1423) detached] Thread 9 (Thread 0x7f788938e6c0 (LWP 17616) "Ethread-feedbac"): #0 0x00007f78a88ae485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7f788938da10, rem=rem@entry=0x7f788938da10) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007f78a88b2d93 in __GI___nanosleep (req=req@entry=0x7f788938da10, rem=rem@entry=0x7f788938da10) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007f78a88b2cca in __sleep (seconds=0) at ../sysdeps/posix/sleep.c:55 save_errno = 11 ts = {tv_sec = 1, tv_nsec = 473732869} #3 0x0000559817302983 in _cb_watchdog_thread_pingpong (data=0x0, thread=0x559819f81800) at ../src/bin/e_watchdog.c:43 seq_new = 0x7f7874000bb0 seq = 620 #4 0x00007f78a9845f6c in _ecore_direct_worker (data=0x559819f81800, t=140155675010752) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156216827465, -8663488748570923316, -240, 0, 140731777596240, 140155666620416, -8663488748558340404, -8663417585117942068}, __mask_was_saved = 0}}, __pad = {0x7f788938dc10, 0x0, 0x7f78a998ded0 <_eina_thread_self+9>, 0x7f788938db20}} __cancel_routine = 0x7f78a9845d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x559819f81800 __not_first_call = 0 work = 0x559819f81800 #5 0x00007f78a998e19c in _eina_internal_call (context=0x559819f7e090) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140155675010752, -8663488748354916660, -240, 0, 140731777596240, 140155666620416, -8663488748568826164, -8663417556465602868}, __mask_was_saved = 0}}, __pad = {0x7f788938dba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a9923916 <_eina_debug_thread_del> __cancel_arg = 0x7f788938db68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140155675010752, -8663488748354916660, -240, 0, 140731777596240, 140155666620416, -8663488748568826164, -8663417555070996788}, __mask_was_saved = 0}}, __pad = {0x7f788938dcb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a8877e30 <__GI___libc_free> __cancel_arg = 0x559819f7e090 __not_first_call = 0 c = 0x559819f7e090 r = 0x0 self = 140155675010752 #6 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140155675010752, 8733615008448392908, -240, 0, 140731777596240, 140155666620416, -8663488748352819508, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7f788a3a86c0 (LWP 17610) "Ethread-feedbac"): #0 0x00007f78a88dd8dc in __GI___select (nfds=87, readfds=0x7f788a3a78b0, writefds=0x7f788a3a7930, exceptfds=0x7f788a3a79b0, timeout=0x7f788a3a78a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 13, tv_nsec = 633452152} pts64 = 0x7f788a3a77f0 #1 0x00005598172d11b6 in e_powersave_sleeper_sleep (sleeper=0x559819d9f5c0, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15961217 rfds = {fds_bits = {0, 4194304, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 961217} ret = 21912 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007f788a53428c in _temperature_check_main (data=0x559819d7f2a0, th=0x559819d9f5e0) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x559819d7f2a0 ptemp = 52 temp = 52 #3 0x00007f78a9845f6c in _ecore_direct_worker (data=0x559819d9f5e0, t=140155691894464) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156216827465, -8663486529146573108, -240, 0, 140731777595552, 140155683504128, -8663486529133990196, -8663417585117942068}, __mask_was_saved = 0}}, __pad = {0x7f788a3a7c10, 0x0, 0x7f78a998ded0 <_eina_thread_self+9>, 0x7f788a3a7b20}} __cancel_routine = 0x7f78a9845d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x559819d9f5e0 __not_first_call = 0 work = 0x559819d9f5e0 #4 0x00007f78a998e19c in _eina_internal_call (context=0x559819d9d700) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140155691894464, -8663486528930566452, -240, 0, 140731777595552, 140155683504128, -8663486529144475956, -8663417556465602868}, __mask_was_saved = 0}}, __pad = {0x7f788a3a7ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a9923916 <_eina_debug_thread_del> __cancel_arg = 0x7f788a3a7b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140155691894464, -8663486528930566452, -240, 0, 140731777595552, 140155683504128, -8663486529144475956, -8663417555070996788}, __mask_was_saved = 0}}, __pad = {0x7f788a3a7cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a8877e30 <__GI___libc_free> __cancel_arg = 0x559819d9d700 __not_first_call = 0 c = 0x559819d9d700 r = 0x0 self = 140155691894464 #5 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140155691894464, 8733615008448392908, -240, 0, 140731777595552, 140155683504128, -8663486528928469300, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7f78916106c0 (LWP 17590) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x559819671db0) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x559819671db0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f78a8864efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x559819671db0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f78a8867558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x559819671d60, cond=0x559819671d88) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f78a88672e0 <__condvar_cleanup_waiting>, __arg = 0x7f789160fb00, __canceltype = 426318592, __prev = 0x0} cbuffer = {wseq = 2160, cond = 0x559819671d88, mutex = 0x559819671d60, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 2160 seq = 1080 private = 0 #4 ___pthread_cond_wait (cond=0x559819671d88, mutex=0x559819671d60) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f789d2bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f789d26e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f789d2bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140155811858112, 8733615008448392908, -240, 19, 140731777581072, 140155803467776, -8663471775715807540, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7f7891e116c0 (LWP 17589) "Eanimator-vsync"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x559819645238) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x559819645238, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f78a8864efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x559819645238, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f78a886fc4f in do_futex_wait (sem=sem@entry=0x559819645238, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f78a886fce0 in __new_sem_wait_slow64 (sem=0x559819645238, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f78a886fc30 <__sem_wait_cleanup>, __arg = 0x559819645238, __canceltype = -1847523248, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f78a9963fab in eina_semaphore_lock (sem=0x559819645238) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f78a9964355 in _eina_thread_queue_wait (thq=0x559819645210) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f78a9964c4f in eina_thread_queue_wait (thq=0x559819645210, allocref=0x7f7891e108a8) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f7891e10a70 blk = 0x55981965e4b0 #8 0x00007f78a8a148a8 in _drm_tick_core (data=0x0, thread=0x55981965e4b0) at ../src/lib/ecore_x/ecore_x_vsync.c:457 msg = 0x55981aac4684 ref = 0x55981aac4640 tick = 0 __func__ = "_drm_tick_core" #9 0x00007f78a9845f6c in _ecore_direct_worker (data=0x55981965e4b0, t=140155820250816) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156216827465, -8663470678032896308, -240, 2, 140731777577216, 140155811860480, -8663470678020313396, -8663417585117942068}, __mask_was_saved = 0}}, __pad = {0x7f7891e10c10, 0x0, 0x7f78a998ded0 <_eina_thread_self+9>, 0x7f7891e10b20}} __cancel_routine = 0x7f78a9845d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x55981965e4b0 __not_first_call = 0 work = 0x55981965e4b0 #10 0x00007f78a998e19c in _eina_internal_call (context=0x55981964bb30) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140155820250816, -8663470677816889652, -240, 2, 140731777577216, 140155811860480, -8663470678030799156, -8663417556465602868}, __mask_was_saved = 0}}, __pad = {0x7f7891e10ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a9923916 <_eina_debug_thread_del> __cancel_arg = 0x7f7891e10b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140155820250816, -8663470677816889652, -240, 2, 140731777577216, 140155811860480, -8663470678030799156, -8663417555070996788}, __mask_was_saved = 0}}, __pad = {0x7f7891e10cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a8877e30 <__GI___libc_free> __cancel_arg = 0x55981964bb30 __not_first_call = 0 c = 0x55981964bb30 r = 0x0 self = 140155820250816 #11 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140155820250816, 8733615008448392908, -240, 2, 140731777577216, 140155811860480, -8663470677814792500, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #12 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7f78926126c0 (LWP 17588) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5598196456e8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5598196456e8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f78a8864efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5598196456e8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f78a8867558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x559819645698, cond=0x5598196456c0) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f78a88672e0 <__condvar_cleanup_waiting>, __arg = 0x7f7892611b00, __canceltype = 0, __prev = 0x0} cbuffer = {wseq = 0, cond = 0x5598196456c0, mutex = 0x559819645698, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 0 seq = 0 private = 0 #4 ___pthread_cond_wait (cond=0x5598196456c0, mutex=0x559819645698) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f789d2bc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f789d26e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f789d2bbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140155828643520, 8733615008448392908, -240, 0, 140731777577152, 140155820253184, -8663469577766293812, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7f789ffff6c0 (LWP 17578) "Ethread-feedbac"): #0 0x00007f78a88ddbfa in __GI_fdatasync (fd=72) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007f78a98e0446 in eet_flush2 (ef=0x559819be5cd0, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7f7870000b70 error = EET_ERROR_NONE head = {1108338462, 16777216, 201326592} num_directory_entries = 1 num_dictionary_entries = 12 bytes_directory_entries = 36 bytes_dictionary_entries = 240 bytes_strings = 127 data_offset = 513 strings_offset = 283 data_pad = 5 pad = 7 orig_data_offset = 408 num = 256 i = 256 j = 12 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007f78a98e0bc1 in eet_sync_sync (ef=0x559819be5cd0) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x00005598171ea0ee in _e_config_pending_file_del (path=0x559819e6eb90 "/home/jose/.e/e/config/standard/module.clock.cfg.tmp") at ../src/bin/e_config.c:193 err = 21912 erstr = 0x55981737535b "" ef = 0x559819be5cd0 ok = 0 '\000' #4 0x00005598171ea3ba in _e_config_save_thread_main (data=0x0, eth=0x5598194fe9d0) at ../src/bin/e_config.c:279 msg = 0x55981a142abc ref = 0x55981a142a00 run = 1 '\001' #5 0x00007f78a9845f6c in _ecore_direct_worker (data=0x5598194fe9d0, t=140156057155264) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156216827465, -8663457371150471476, -240, 1, 140731777592016, 140156048764928, -8663457371137888564, -8663417585117942068}, __mask_was_saved = 0}}, __pad = {0x7f789fffec10, 0x0, 0x7f78a998ded0 <_eina_thread_self+9>, 0x7f789fffeb20}} __cancel_routine = 0x7f78a9845d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x5598194fe9d0 __not_first_call = 0 work = 0x5598194fe9d0 #6 0x00007f78a998e19c in _eina_internal_call (context=0x5598194feb90) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156057155264, -8663457370934464820, -240, 1, 140731777592016, 140156048764928, -8663457371148374324, -8663417556465602868}, __mask_was_saved = 0}}, __pad = {0x7f789fffeba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a9923916 <_eina_debug_thread_del> __cancel_arg = 0x7f789fffeb68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156057155264, -8663457370934464820, -240, 1, 140731777592016, 140156048764928, -8663457371148374324, -8663417555070996788}, __mask_was_saved = 0}}, __pad = {0x7f789fffecb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a8877e30 <__GI___libc_free> __cancel_arg = 0x5598194feb90 __not_first_call = 0 c = 0x5598194feb90 r = 0x0 self = 140156057155264 #7 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140156057155264, 8733615008448392908, -240, 1, 140731777592016, 140156048764928, -8663457370932367668, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7f78a5d136c0 (LWP 17577) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x559819322778) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x559819322778, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f78a8864efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x559819322778, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f78a886fc4f in do_futex_wait (sem=sem@entry=0x559819322778, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f78a886fce0 in __new_sem_wait_slow64 (sem=0x559819322778, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f78a886fc30 <__sem_wait_cleanup>, __arg = 0x559819322778, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f78a9963fab in eina_semaphore_lock (sem=0x559819322778) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f78a9964355 in _eina_thread_queue_wait (thq=0x559819322750) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f78a9964c4f in eina_thread_queue_wait (thq=0x559819322750, allocref=0x7f78a5d12ad0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f78a5d12a90 blk = 0x6d61732d656c #8 0x00007f78a945d28f in _evas_common_scale_sample_thread (data=0x0, t=140156154754752) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007f78a998e19c in _eina_internal_call (context=0x559819322810) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156154754752, -8663444428050518324, -240, 2, 140731777596240, 140156146364416, -8663444428264427828, -8663417556465602868}, __mask_was_saved = 0}}, __pad = {0x7f78a5d12ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a9923916 <_eina_debug_thread_del> __cancel_arg = 0x7f78a5d12b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156154754752, -8663444428050518324, -240, 2, 140731777596240, 140156146364416, -8663444428264427828, -8663417555070996788}, __mask_was_saved = 0}}, __pad = {0x7f78a5d12cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a8877e30 <__GI___libc_free> __cancel_arg = 0x559819322810 __not_first_call = 0 c = 0x559819322810 r = 0x0 self = 140156154754752 #10 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140156154754752, 8733615008448392908, -240, 2, 140731777596240, 140156146364416, -8663444428048421172, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7f78a65146c0 (LWP 17576) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f78a6513ac0, op=137, expected=0, futex_word=0x7f78a96c31f4 <evas_thread_queue_condition+52>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7f78a96c31f4 <evas_thread_queue_condition+52>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f78a6513ac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007f78a8864efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f78a96c31f4 <evas_thread_queue_condition+52>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f78a6513ac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f78a886783c in __pthread_cond_wait_common (abstime=0x7f78a6513ac0, clockid=1, mutex=0x7f78a96c3200 <evas_thread_queue_lock>, cond=0x7f78a96c31c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f78a88672e0 <__condvar_cleanup_waiting>, __arg = 0x7f78a6513a20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 9571, cond = 0x7f78a96c31c8 <evas_thread_queue_condition+8>, mutex = 0x7f78a96c3200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 9571 seq = 4785 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7f78a96c31c8 <evas_thread_queue_condition+8>, mutex=0x7f78a96c3200 <evas_thread_queue_lock>, abstime=0x7f78a6513ac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007f78a946e4cd in eina_condition_timedwait (cond=0x7f78a96c31c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 29657, tv_nsec = 55186038} sec = 2250 nsec = 0 err = 110 r = 0 '\000' #6 0x00007f78a946e91a in evas_thread_worker_func (data=0x0, thread=140156163147456) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x55981afa75f0 len = 0 max = 384 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007f78a998e19c in _eina_internal_call (context=0x559819322300) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156163147456, -8663443328002019636, -240, 2, 140731777596256, 140156154757120, -8663443328215929140, -8663417556465602868}, __mask_was_saved = 0}}, __pad = {0x7f78a6513ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a9923916 <_eina_debug_thread_del> __cancel_arg = 0x7f78a6513b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140156163147456, -8663443328002019636, -240, 2, 140731777596256, 140156154757120, -8663443328215929140, -8663417555070996788}, __mask_was_saved = 0}}, __pad = {0x7f78a6513cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f78a8877e30 <__GI___libc_free> __cancel_arg = 0x559819322300 __not_first_call = 0 c = 0x559819322300 r = 0x0 self = 140156163147456 #8 0x00007f78a8868144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140156163147456, 8733615008448392908, -240, 2, 140731777596256, 140156154757120, -8663443327999922484, -8663419768038740276}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f78a88e87dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7f78a7342980 (LWP 17571) "enlightenment"): #0 0x00007f78a88b2d32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x000055981736b94c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x00005598172eb271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x00005598172eb292 in e_sigseg_act (x=11, info=0x7ffeab9c95b0, data=0x7ffeab9c9480) at ../src/bin/e_signals.c:91 #4 0x00007f78a881b050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 eet_write_cipher (ef=0x559819be57d0, name=0x5598173752d4 "config", data=0x55981aafc570, size=14526, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2479 in = 0x559819a68100 efn = 0x99defb4d388e6c00 exists_already = 0 hash = 0 #6 0x00007f78a98d1c01 in eet_data_write_cipher (ef=0x559819be57d0, edd=0x559819507ce0, name=0x5598173752d4 "config", cipher_key=0x0, data=0x55981950fae0, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x559819bbf490 data_enc = 0x55981aafc570 size = 14526 val = 32766 __func__ = "eet_data_write_cipher" #7 0x00007f78a98d1c6f in eet_data_write (ef=0x559819be57d0, edd=0x559819507ce0, name=0x5598173752d4 "config", data=0x55981950fae0, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x00005598171f89bf in e_config_domain_save (domain=0x559817377c33 "e_bindings", edd=0x559819507ce0, data=0x55981950fae0) at ../src/bin/e_config.c:2328 ef = 0x559819be57d0 buf = "/home/jose/.e/e/config/standard/e_bindings.cfg", '\000' <repeats 1058 times>... buf2 = "/home/jose/.e/e/config/standard/e_bindings.cfg.tmp\000dex-browser-beta", '\000' <repeats 3125 times>... ok = 0 len = 46 len2 = 10 #9 0x00005598171f9fc5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2563 #10 0x00005598172d14ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x559819f87c20 #11 0x00007f78a9842474 in _ecore_call_task_cb (func=0x5598172d1445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007f78a984295f in _ecore_timer_legacy_tick (data=0x55981a1de6b0, event=0x7ffeab9cbc90) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x55981a1de6b0 inside_call = 0 '\000' #13 0x00007f78a98b387a in _event_callback_call (obj_id=0x4000002078af, pd=0x55981ab5f1d0, desc=0x7f78a987d3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7f78a9880940 <internal> cb = 0x559819eae768 restart_lookup = 0x0 ev = {object = 0x4000002078af, desc = 0x7f78a987d3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7f78a987d3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007f78a98b3a87 in _efl_object_event_callback_call (obj_id=0x4000002078af, pd=0x55981ab5f1d0, desc=0x7f78a987d3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007f78a98b3b40 in efl_event_callback_call (obj=0x4000002078af, desc=0x7f78a987d3a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x4000002078af, obj = 0x55981ab5f190, func = 0x7f78a98b3a4d <_efl_object_event_callback_call>, data = 0x55981ab5f1d0, extn1 = 0x55981ab5f210, extn2 = 0x7f78a9866614, extn3 = 0x7ffeab9cbda0, extn4 = 0x4000002078af} _func_ = 0x7f78a98b3a4d <_efl_object_event_callback_call> #16 0x00007f78a9843ef4 in _efl_loop_timer_expired_call (obj=0x400000000222, pd=0x55981927e780, when=28145.222187036001) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x55981ab5f210 #17 0x00007f78a9843d1b in _efl_loop_timer_expired_timers_call (obj=0x400000000222, pd=0x55981927e780, when=28145.222187036001) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007f78a97f6d4a in _ecore_main_loop_iterate_internal (obj=0x400000000222, pd=0x55981927e780, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007f78a97f41b7 in _ecore_main_loop_begin (obj=0x400000000222, pd=0x55981927e780) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007f78a97fc663 in _efl_loop_begin (obj=0x400000000222, pd=0x55981927e780) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007f78a97fecc1 in efl_loop_begin (obj=0x400000000222) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x400000000222, obj = 0x55981927e6e0, func = 0x7f78a97fc63c <_efl_loop_begin>, data = 0x55981927e780, extn1 = 0x0, extn2 = 0x7f78a985dbab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7f78a97fc63c <_efl_loop_begin> #22 0x00007f78a97f4393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x00005598172ac36c in main (argc=1, argv=0x7ffeaba051b8) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x55981924fecc "x\177" s = 0x0 action = {__sigaction_handler = {sa_handler = 0x5598172eb314 <e_sigabrt_act>, sa_sigaction = 0x5598172eb314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 17571) detached] Thread 9 (Thread 0x7f858587b6c0 (LWP 1379) "Ethread-feedbac"): #0 0x00007f85a458a485 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=req@entry=0x7f858587aa10, rem=rem@entry=0x7f858587aa10) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 sc_cancel_oldtype = 1 sc_ret = <optimized out> r = <optimized out> #1 0x00007f85a458ed93 in __GI___nanosleep (req=req@entry=0x7f858587aa10, rem=rem@entry=0x7f858587aa10) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 ret = <optimized out> #2 0x00007f85a458ecca in __sleep (seconds=0) at ../sysdeps/posix/sleep.c:55 save_errno = 11 ts = {tv_sec = 1, tv_nsec = 196235185} #3 0x00005635ed606983 in _cb_watchdog_thread_pingpong (data=0x0, thread=0x5635ee7b4100) at ../src/bin/e_watchdog.c:43 seq_new = 0x7f8578000b90 seq = 4051 #4 0x00007f85a5521f6c in _ecore_direct_worker (data=0x5635ee7b4100, t=140211447641792) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211981000265, -7552244740309457624, -240, 0, 140726567561936, 140211439251456, -7552244740288486104, -7552175078458202840}, __mask_was_saved = 0}}, __pad = {0x7f858587ac10, 0x0, 0x7f85a5669ed0 <_eina_thread_self+9>, 0x7f858587ab20}} __cancel_routine = 0x7f85a5521d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x5635ee7b4100 __not_first_call = 0 work = 0x5635ee7b4100 #5 0x00007f85a566a19c in _eina_internal_call (context=0x5635ee4aae20) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211447641792, -7552244740219280088, -240, 0, 140726567561936, 140211439251456, -7552244740307360472, -7552175187943168728}, __mask_was_saved = 0}}, __pad = {0x7f858587aba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a55ff916 <_eina_debug_thread_del> __cancel_arg = 0x7f858587ab68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211447641792, -7552244740219280088, -240, 0, 140726567561936, 140211439251456, -7552244740307360472, -7552175185852308184}, __mask_was_saved = 0}}, __pad = {0x7f858587acb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a4553e30 <__GI___libc_free> __cancel_arg = 0x5635ee4aae20 __not_first_call = 0 c = 0x5635ee4aae20 r = 0x0 self = 140211447641792 #6 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211447641792, 7510317953947723048, -240, 0, 140726567561936, 140211439251456, -7552244740225571544, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #7 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 8 (Thread 0x7f85860846c0 (LWP 1378) "Ethread-feedbac"): #0 0x00007f85a45b98dc in __GI___select (nfds=87, readfds=0x7f85860838b0, writefds=0x7f8586083930, exceptfds=0x7f85860839b0, timeout=0x7f85860838a0) at ../sysdeps/unix/sysv/linux/select.c:69 sc_ret = -514 sc_cancel_oldtype = 1 s = <optimized out> us = <optimized out> ts64 = {tv_sec = 1, tv_nsec = 258702194} pts64 = 0x7f85860837f0 #1 0x00005635ed5d51b6 in e_powersave_sleeper_sleep (sleeper=0x5635ee625ff0, poll_interval=128, allow_save=1 '\001') at ../src/bin/e_powersave.c:242 timf = 16 tim = 15964865 rfds = {fds_bits = {0, 4194304, 0 <repeats 14 times>}} wfds = {fds_bits = {0 <repeats 16 times>}} exfds = {fds_bits = {0 <repeats 16 times>}} tv = {tv_sec = 15, tv_usec = 964865} ret = 22069 buf = "\001" __func__ = "e_powersave_sleeper_sleep" #2 0x00007f858619228c in _temperature_check_main (data=0x5635ee600720, th=0x5635ee626010) at ../src/modules/temperature/e_mod_main.c:296 tth = 0x5635ee600720 ptemp = 57 temp = 57 #3 0x00007f85a5521f6c in _ecore_direct_worker (data=0x5635ee626010, t=140211456067264) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211981000265, -7552239212149676760, -240, 0, 140726567561248, 140211447676928, -7552239212128705240, -7552175078458202840}, __mask_was_saved = 0}}, __pad = {0x7f8586083c10, 0x0, 0x7f85a5669ed0 <_eina_thread_self+9>, 0x7f8586083b20}} __cancel_routine = 0x7f85a5521d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x5635ee626010 __not_first_call = 0 work = 0x5635ee626010 #4 0x00007f85a566a19c in _eina_internal_call (context=0x5635ee621130) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211456067264, -7552239212059499224, -240, 0, 140726567561248, 140211447676928, -7552239212147579608, -7552175187943168728}, __mask_was_saved = 0}}, __pad = {0x7f8586083ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a55ff916 <_eina_debug_thread_del> __cancel_arg = 0x7f8586083b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211456067264, -7552239212059499224, -240, 0, 140726567561248, 140211447676928, -7552239212147579608, -7552175185852308184}, __mask_was_saved = 0}}, __pad = {0x7f8586083cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a4553e30 <__GI___libc_free> __cancel_arg = 0x5635ee621130 __not_first_call = 0 c = 0x5635ee621130 r = 0x0 self = 140211456067264 #5 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211456067264, 7510317953947723048, -240, 0, 140726567561248, 140211447676928, -7552239212065790680, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #6 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 7 (Thread 0x7f858d2436c0 (LWP 1357) "enlighte:gdrv0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5635edf62244) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5635edf62244, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f85a4540efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5635edf62244, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f85a4543558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x5635edf621f0, cond=0x5635edf62218) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f85a45432e0 <__condvar_cleanup_waiting>, __arg = 0x7f858d242b00, __canceltype = -302543152, __prev = 0x0} cbuffer = {wseq = 30855, cond = 0x5635edf62218, mutex = 0x5635edf621f0, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 30855 seq = 15427 private = 0 #4 ___pthread_cond_wait (cond=0x5635edf62218, mutex=0x5635edf621f0) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f8598ebc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f8598e6e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f8598ebbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211575338688, 7510317953947723048, -240, 19, 140726567546768, 140211566948352, -7552228526724029144, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 6 (Thread 0x7f858da446c0 (LWP 1356) "Eanimator-vsync"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5635edf37de8) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5635edf37de8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f85a4540efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5635edf37de8, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f85a454bc4f in do_futex_wait (sem=sem@entry=0x5635edf37de8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f85a454bce0 in __new_sem_wait_slow64 (sem=0x5635edf37de8, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f85a454bc30 <__sem_wait_cleanup>, __arg = 0x5635edf37de8, __canceltype = -1918617520, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f85a563ffab in eina_semaphore_lock (sem=0x5635edf37de8) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f85a5640355 in _eina_thread_queue_wait (thq=0x5635edf37dc0) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f85a5640c4f in eina_thread_queue_wait (thq=0x5635edf37dc0, allocref=0x7f858da438a8) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f858da43a70 blk = 0x5635edf4eb20 #8 0x00007f85a46f08a8 in _drm_tick_core (data=0x0, thread=0x5635edf4eb20) at ../src/lib/ecore_x/ecore_x_vsync.c:457 msg = 0x5635efa282d4 ref = 0x5635efa28290 tick = 0 __func__ = "_drm_tick_core" #9 0x00007f85a5521f6c in _ecore_direct_worker (data=0x5635edf4eb20, t=140211583731392) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211981000265, -7552227426759416536, -240, 2, 140726567542912, 140211575341056, -7552227426738445016, -7552175078458202840}, __mask_was_saved = 0}}, __pad = {0x7f858da43c10, 0x0, 0x7f85a5669ed0 <_eina_thread_self+9>, 0x7f858da43b20}} __cancel_routine = 0x7f85a5521d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x5635edf4eb20 __not_first_call = 0 work = 0x5635edf4eb20 #10 0x00007f85a566a19c in _eina_internal_call (context=0x5635edf360a0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211583731392, -7552227426669239000, -240, 2, 140726567542912, 140211575341056, -7552227426757319384, -7552175187943168728}, __mask_was_saved = 0}}, __pad = {0x7f858da43ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a55ff916 <_eina_debug_thread_del> __cancel_arg = 0x7f858da43b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211583731392, -7552227426669239000, -240, 2, 140726567542912, 140211575341056, -7552227426757319384, -7552175185852308184}, __mask_was_saved = 0}}, __pad = {0x7f858da43cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a4553e30 <__GI___libc_free> __cancel_arg = 0x5635edf360a0 __not_first_call = 0 c = 0x5635edf360a0 r = 0x0 self = 140211583731392 #11 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211583731392, 7510317953947723048, -240, 2, 140726567542912, 140211575341056, -7552227426675530456, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #12 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 5 (Thread 0x7f858e2456c0 (LWP 1355) "enlight:disk$0"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5635edf35e0c) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 0 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5635edf35e0c, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f85a4540efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5635edf35e0c, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f85a4543558 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x5635edf35db8, cond=0x5635edf35de0) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f85a45432e0 <__condvar_cleanup_waiting>, __arg = 0x7f858e244b00, __canceltype = -1910224110, __prev = 0x0} cbuffer = {wseq = 3, cond = 0x5635edf35de0, mutex = 0x5635edf35db8, private = 0} err = <optimized out> g = 1 flags = <optimized out> g1_start = <optimized out> signals = <optimized out> result = 0 wseq = 3 seq = 1 private = 0 #4 ___pthread_cond_wait (cond=0x5635edf35de0, mutex=0x5635edf35db8) at ./nptl/pthread_cond_wait.c:618 #5 0x00007f8598ebc059 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #6 0x00007f8598e6e17b in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #7 0x00007f8598ebbf97 in () at /usr/lib/x86_64-linux-gnu/dri/crocus_dri.so #8 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211592124096, 7510317953947723048, -240, 0, 140726567542848, 140211583733760, -7552221926433037016, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 4 (Thread 0x7f859bfc46c0 (LWP 1336) "Ethread-feedbac"): #0 0x00007f85a45b9bfa in __GI_fdatasync (fd=108) at ../sysdeps/unix/sysv/linux/fdatasync.c:28 sc_ret = 0 sc_cancel_oldtype = 1 #1 0x00007f85a55bc446 in eet_flush2 (ef=0x5635edc32fb0, sync=1 '\001') at ../src/lib/eet/eet_lib.c:513 efn = 0x0 fp = 0x7f8568000b70 error = EET_ERROR_NONE head = {1108338462, 16777216, 16777216} num_directory_entries = 1 num_dictionary_entries = 1 bytes_directory_entries = 36 bytes_dictionary_entries = 20 bytes_strings = 14 data_offset = 84 strings_offset = 63 data_pad = 2 pad = 4 orig_data_offset = 72 num = 256 i = 256 j = 1 zeros = "\000\000\000\000\000\000\000" __func__ = "eet_flush2" #2 0x00007f85a55bcbc1 in eet_sync_sync (ef=0x5635edc32fb0) at ../src/lib/eet/eet_lib.c:693 ret = EET_ERROR_NONE #3 0x00005635ed4ee0ee in _e_config_pending_file_del (path=0x5635ef8a8430 "/home/jose/.e/e/config/standard/module.ebluez5.cfg.tmp") at ../src/bin/e_config.c:193 err = 22069 erstr = 0x5635ed67935b "" ef = 0x5635edc32fb0 ok = 0 '\000' #4 0x00005635ed4ee3ba in _e_config_save_thread_main (data=0x0, eth=0x5635eddf1510) at ../src/bin/e_config.c:279 msg = 0x5635efaf96d4 ref = 0x5635efaf9630 run = 1 '\001' #5 0x00007f85a5521f6c in _ecore_direct_worker (data=0x5635eddf1510, t=140211824379584) at ../src/lib/ecore/ecore_thread.c:483 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211981000265, -7552196159397501656, -240, 1, 140726567557712, 140211815989248, -7552196159376530136, -7552175078458202840}, __mask_was_saved = 0}}, __pad = {0x7f859bfc3c10, 0x0, 0x7f85a5669ed0 <_eina_thread_self+9>, 0x7f859bfc3b20}} __cancel_routine = 0x7f85a5521d8c <_ecore_direct_worker_cleanup> __cancel_arg = 0x5635eddf1510 __not_first_call = 0 work = 0x5635eddf1510 #6 0x00007f85a566a19c in _eina_internal_call (context=0x5635eddf16d0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211824379584, -7552196159307324120, -240, 1, 140726567557712, 140211815989248, -7552196159395404504, -7552175187943168728}, __mask_was_saved = 0}}, __pad = {0x7f859bfc3ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a55ff916 <_eina_debug_thread_del> __cancel_arg = 0x7f859bfc3b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211824379584, -7552196159307324120, -240, 1, 140726567557712, 140211815989248, -7552196159395404504, -7552175185852308184}, __mask_was_saved = 0}}, __pad = {0x7f859bfc3cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a4553e30 <__GI___libc_free> __cancel_arg = 0x5635eddf16d0 __not_first_call = 0 c = 0x5635eddf16d0 r = 0x0 self = 140211824379584 #7 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211824379584, 7510317953947723048, -240, 1, 140726567557712, 140211815989248, -7552196159313615576, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #8 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 3 (Thread 0x7f85a1af86c0 (LWP 1333) "Evas-scale-sam"): #0 __futex_abstimed_wait_common64 (private=<optimized out>, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x5635edc14a08) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 256 op = 393 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x5635edc14a08, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 256 op = 393 #2 0x00007f85a4540efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x5635edc14a08, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=<optimized out>) at ./nptl/futex-internal.c:139 #3 0x00007f85a454bc4f in do_futex_wait (sem=sem@entry=0x5635edc14a08, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:111 #4 0x00007f85a454bce0 in __new_sem_wait_slow64 (sem=0x5635edc14a08, abstime=0x0, clockid=0) at ./nptl/sem_waitcommon.c:183 _buffer = {__routine = 0x7f85a454bc30 <__sem_wait_cleanup>, __arg = 0x5635edc14a08, __canceltype = 0, __prev = 0x0} err = <optimized out> d = 0 #5 0x00007f85a563ffab in eina_semaphore_lock (sem=0x5635edc14a08) at ../src/lib/eina/eina_inline_lock_posix.x:724 #6 0x00007f85a5640355 in _eina_thread_queue_wait (thq=0x5635edc149e0) at ../src/lib/eina/eina_thread_queue.c:209 __func__ = "_eina_thread_queue_wait" #7 0x00007f85a5640c4f in eina_thread_queue_wait (thq=0x5635edc149e0, allocref=0x7f85a1af7ad0) at ../src/lib/eina/eina_thread_queue.c:492 msg = 0x7f85a1af7a90 blk = 0x6d61732d656c #8 0x00007f85a513928f in _evas_common_scale_sample_thread (data=0x0, t=140211920012992) at ../src/lib/evas/common/evas_scale_sample.c:751 ref = 0x0 msg = 0x0 todo = 0x0 #9 0x00007f85a566a19c in _eina_internal_call (context=0x5635edc14aa0) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211920012992, -7552183366747232984, -240, 2, 140726567561936, 140211911622656, -7552183366835313368, -7552175187943168728}, __mask_was_saved = 0}}, __pad = {0x7f85a1af7ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a55ff916 <_eina_debug_thread_del> __cancel_arg = 0x7f85a1af7b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211920012992, -7552183366747232984, -240, 2, 140726567561936, 140211911622656, -7552183366835313368, -7552175185852308184}, __mask_was_saved = 0}}, __pad = {0x7f85a1af7cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a4553e30 <__GI___libc_free> __cancel_arg = 0x5635edc14aa0 __not_first_call = 0 c = 0x5635edc14aa0 r = 0x0 self = 140211920012992 #10 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211920012992, 7510317953947723048, -240, 2, 140726567561936, 140211911622656, -7552183366753524440, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #11 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 2 (Thread 0x7f85a22f96c0 (LWP 1332) "Eevas-thread-wk"): #0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f85a22f8ac0, op=137, expected=0, futex_word=0x7f85a539f1f0 <evas_thread_queue_condition+48>) at ./nptl/futex-internal.c:57 sc_cancel_oldtype = 1 sc_ret = <optimized out> err = <optimized out> clockbit = 0 op = 137 #1 __futex_abstimed_wait_common (futex_word=futex_word@entry=0x7f85a539f1f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f85a22f8ac0, private=private@entry=0, cancel=cancel@entry=true) at ./nptl/futex-internal.c:87 err = <optimized out> clockbit = 0 op = 137 #2 0x00007f85a4540efb in __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f85a539f1f0 <evas_thread_queue_condition+48>, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f85a22f8ac0, private=private@entry=0) at ./nptl/futex-internal.c:139 #3 0x00007f85a454383c in __pthread_cond_wait_common (abstime=0x7f85a22f8ac0, clockid=1, mutex=0x7f85a539f200 <evas_thread_queue_lock>, cond=0x7f85a539f1c8 <evas_thread_queue_condition+8>) at ./nptl/pthread_cond_wait.c:503 spin = 0 buffer = {__routine = 0x7f85a45432e0 <__condvar_cleanup_waiting>, __arg = 0x7f85a22f8a20, __canceltype = 4, __prev = 0x0} cbuffer = {wseq = 442, cond = 0x7f85a539f1c8 <evas_thread_queue_condition+8>, mutex = 0x7f85a539f200 <evas_thread_queue_lock>, private = 0} err = <optimized out> g = 0 flags = <optimized out> g1_start = <optimized out> maxspin = 0 signals = <optimized out> result = 0 wseq = 442 seq = 221 private = 0 flags = <optimized out> clockid = 1 #4 ___pthread_cond_timedwait64 (cond=0x7f85a539f1c8 <evas_thread_queue_condition+8>, mutex=0x7f85a539f200 <evas_thread_queue_lock>, abstime=0x7f85a22f8ac0) at ./nptl/pthread_cond_wait.c:643 flags = <optimized out> clockid = 1 #5 0x00007f85a514a4cd in eina_condition_timedwait (cond=0x7f85a539f1c0 <evas_thread_queue_condition>, t=2250) at ../src/lib/eina/eina_inline_lock_posix.x:439 ts = {tv_sec = 41000, tv_nsec = 355354790} sec = 2250 nsec = 0 err = 110 r = 0 '\000' #6 0x00007f85a514a91a in evas_thread_worker_func (data=0x0, thread=140211928405696) at ../src/lib/evas/common/evas_thread_render.c:136 cmd = 0x5635eededfa0 len = 0 max = 128 __func__ = "evas_thread_worker_func" __PRETTY_FUNCTION__ = "evas_thread_worker_func" #7 0x00007f85a566a19c in _eina_internal_call (context=0x5635edc14590) at ../src/lib/eina/eina_thread_posix.c:201 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211928405696, -7552177875094674136, -240, 2, 140726567561952, 140211920015360, -7552177875182754520, -7552175187943168728}, __mask_was_saved = 0}}, __pad = {0x7f85a22f8ba0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a55ff916 <_eina_debug_thread_del> __cancel_arg = 0x7f85a22f8b68 __not_first_call = 0 __cancel_buf = {__cancel_jmp_buf = {{__cancel_jmp_buf = {140211928405696, -7552177875094674136, -240, 2, 140726567561952, 140211920015360, -7552177875182754520, -7552175185852308184}, __mask_was_saved = 0}}, __pad = {0x7f85a22f8cb0, 0x0, 0x0, 0x0}} __cancel_routine = 0x7f85a4553e30 <__GI___libc_free> __cancel_arg = 0x5635edc14590 __not_first_call = 0 c = 0x5635edc14590 r = 0x0 self = 140211928405696 #8 0x00007f85a4544144 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442 ret = <optimized out> pd = <optimized out> unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140211928405696, 7510317953947723048, -240, 2, 140726567561952, 140211920015360, -7552177875100965592, -7552172863358704344}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}} not_first_call = <optimized out> #9 0x00007f85a45c47dc in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81 Thread 1 (Thread 0x7f85a301e980 (LWP 1315) "enlightenment"): #0 0x00007f85a458ed32 in __libc_pause () at ../sysdeps/unix/sysv/linux/pause.c:29 sc_ret = -514 sc_cancel_oldtype = 0 #1 0x00005635ed66f94c in e_alert_show () at ../src/bin/e_alert.c:43 #2 0x00005635ed5ef271 in _e_crash () at ../src/bin/e_signals.c:81 #3 0x00005635ed5ef292 in e_sigseg_act (x=11, info=0x7ffd7511c530, data=0x7ffd7511c400) at ../src/bin/e_signals.c:91 #4 0x00007f85a44f7050 in <signal handler called> () at /lib/x86_64-linux-gnu/libc.so.6 #5 0x00007f85a55c078b in eet_write_cipher (ef=0x5635ee48b480, name=0x5635ed6792d4 "config", data=0x5635efc02190, size=58736, comp=11, cipher_key=0x0) at ../src/lib/eet/eet_lib.c:2482 in = 0x5635ee686b00 efn = 0x80b4b4843 exists_already = 0 hash = 17966 #6 0x00007f85a55adc01 in eet_data_write_cipher (ef=0x5635ee48b480, edd=0x5635eddf6d30, name=0x5635ed6792d4 "config", cipher_key=0x0, data=0x5635ede0c570, comp=11) at ../src/lib/eet/eet_data.c:2410 ed = 0x5635ee469fb0 data_enc = 0x5635efc02190 size = 58736 val = 32765 __func__ = "eet_data_write_cipher" #7 0x00007f85a55adc6f in eet_data_write (ef=0x5635ee48b480, edd=0x5635eddf6d30, name=0x5635ed6792d4 "config", data=0x5635ede0c570, comp=11) at ../src/lib/eet/eet_data.c:2422 #8 0x00005635ed4fc9bf in e_config_domain_save (domain=0x5635ed67b8c8 "e", edd=0x5635eddf6d30, data=0x5635ede0c570) at ../src/bin/e_config.c:2328 ef = 0x5635ee48b480 buf = "/home/jose/.e/e/config/standard/e.cfg", '\000' <repeats 379 times>... buf2 = "/home/jose/.e/e/config/standard/e.cfg.tmp\000`\245\205\177\000\000firefox", '\000' <repeats 3137 times>... ok = 0 len = 37 len2 = 1 #9 0x00005635ed4fdfa5 in _e_config_save_cb (data=0x0) at ../src/bin/e_config.c:2562 #10 0x00005635ed5d54ec in _e_powersave_cb_deferred_timer (data=0x0) at ../src/bin/e_powersave.c:304 pa = 0x5635ef985150 #11 0x00007f85a551e474 in _ecore_call_task_cb (func=0x5635ed5d5445 <_e_powersave_cb_deferred_timer>, data=0x0) at ../src/lib/ecore/ecore_private.h:456 #12 0x00007f85a551e95f in _ecore_timer_legacy_tick (data=0x5635efa35ce0, event=0x7ffd7511ec10) at ../src/lib/ecore/ecore_timer.c:172 legacy = 0x5635efa35ce0 inside_call = 0 '\000' #13 0x00007f85a558f87a in _event_callback_call (obj_id=0x4000002df6c1, pd=0x5635ef882b60, desc=0x7f85a55593a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0, legacy_compare=0 '\000') at ../src/lib/eo/eo_base_class.c:2114 it = 0x7f85a555c940 <internal> cb = 0x5635ef938218 restart_lookup = 0x0 ev = {object = 0x4000002df6c1, desc = 0x7f85a55593a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, info = 0x0} idx = 2 callback_already_stopped = 0 '\000' ret = 1 '\001' frame = {desc = 0x7f85a55593a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, next = 0x0, idx = 2, inserted_before = 0, generation = 1} need_hash = 1 '\001' #14 0x00007f85a558fa87 in _efl_object_event_callback_call (obj_id=0x4000002df6c1, pd=0x5635ef882b60, desc=0x7f85a55593a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2186 #15 0x00007f85a558fb40 in efl_event_callback_call (obj=0x4000002df6c1, desc=0x7f85a55593a0 <_EFL_LOOP_TIMER_EVENT_TIMER_TICK>, event_info=0x0) at ../src/lib/eo/eo_base_class.c:2189 _r = 0 '\000' ___op = 65570 ___generation = 1 ___call = {eo_id = 0x4000002df6c1, obj = 0x5635ef882b20, func = 0x7f85a558fa4d <_efl_object_event_callback_call>, data = 0x5635ef882b60, extn1 = 0x5635ef882ba0, extn2 = 0x7f85a5542614, extn3 = 0x7ffd7511ed20, extn4 = 0x4000002df6c1} _func_ = 0x7f85a558fa4d <_efl_object_event_callback_call> #16 0x00007f85a551fef4 in _efl_loop_timer_expired_call (obj=0x400000000238, pd=0x5635edb6e710, when=40668.669577227003) at ../src/lib/ecore/ecore_timer.c:669 timer = 0x5635ef882ba0 #17 0x00007f85a551fd1b in _efl_loop_timer_expired_timers_call (obj=0x400000000238, pd=0x5635edb6e710, when=40668.669577227003) at ../src/lib/ecore/ecore_timer.c:621 #18 0x00007f85a54d2d4a in _ecore_main_loop_iterate_internal (obj=0x400000000238, pd=0x5635edb6e710, once_only=0) at ../src/lib/ecore/ecore_main.c:2436 next_time = -1 #19 0x00007f85a54d01b7 in _ecore_main_loop_begin (obj=0x400000000238, pd=0x5635edb6e710) at ../src/lib/ecore/ecore_main.c:1236 #20 0x00007f85a54d8663 in _efl_loop_begin (obj=0x400000000238, pd=0x5635edb6e710) at ../src/lib/ecore/efl_loop.c:57 #21 0x00007f85a54dacc1 in efl_loop_begin (obj=0x400000000238) at src/lib/ecore/efl_loop.eo.c:28 _r = 0x0 ___op = 262146 ___generation = 1 ___call = {eo_id = 0x400000000238, obj = 0x5635edb6e670, func = 0x7f85a54d863c <_efl_loop_begin>, data = 0x5635edb6e710, extn1 = 0x0, extn2 = 0x7f85a5539bab, extn3 = 0x0, extn4 = 0xffffffff} _func_ = 0x7f85a54d863c <_efl_loop_begin> #22 0x00007f85a54d0393 in ecore_main_loop_begin () at ../src/lib/ecore/ecore_main.c:1321 __func__ = "ecore_main_loop_begin" #23 0x00005635ed5b036c in main (argc=1, argv=0x7ffd75158138) at ../src/bin/e_main.c:1135 nostartup = 0 '\000' safe_mode = 0 '\000' waslocked = 0 '\000' strshare = 0x5635edb3fecc "\205\177" s = 0x0 action = {__sigaction_handler = {sa_handler = 0x5635ed5ef314 <e_sigabrt_act>, sa_sigaction = 0x5635ed5ef314 <e_sigabrt_act>}, sa_mask = {__val = {0 <repeats 16 times>}}, sa_flags = -1073741820, sa_restorer = 0x0} __func__ = "main" [Inferior 1 (process 1315) detached] -- Best Professional Regards. -- Jose R R http://metztli.it --------------------------------------------------------------------------------------------- Download Metztli Reiser4: Debian Bookworm w/ Linux 5.17.12-3 AMD64 --------------------------------------------------------------------------------------------- feats ZSTD compression https://sf.net/projects/metztli-reiser4/ ------------------------------------------------------------------------------------------- Official current Reiser4 resources: https://reiser4.wiki.kernel.org/