Skip to content

Instantly share code, notes, and snippets.

View marcelhollerbach's full-sized avatar

Marcel Hollerbach marcelhollerbach

View GitHub Profile
#0 0x00007f664979768d in pause () at /usr/lib/libpthread.so.0
#1 0x00000000005f2ac7 in e_alert_show () at src/bin/e_alert.c:43
#2 0x00000000005964ef in _e_crash () at src/bin/e_signals.c:96
#3 0x00000000005965a8 in e_sigabrt_act (x=6, info=0x7ffc6f08d470, data=0x7ffc6f08d340) at src/bin/e_signals.c:142
#4 0x00007f6649797fe0 in <signal handler called> () at /usr/lib/libpthread.so.0
#5 0x00007f6648ceca10 in raise () at /usr/lib/libc.so.6
#6 0x00007f6648cee13a in abort () at /usr/lib/libc.so.6
#7 0x00007f664a0164ce in eina_log_print_unlocked (domain=56, level=EINA_LOG_LEVEL_CRITICAL, file=0x7f665105663c "lib/evas/canvas/evas_events.c", fnc=0x7f6651056b46 "_evas_event_feed_check", line=37, fmt=0x7f6651056b5d "Feeding new input e
vents from a post-event callback is risky!", args=0x7ffc6f08edd0) at lib/eina/eina_log.c:1456
#8 0x00007f664a015f38 in eina_log_print (domain=56, level=EINA_LOG_LEVEL_CRITICAL, file=0x7f665105663c "lib/evas/canvas/evas_events.c", fnc=0x7f6651056b46 "_evas_event_feed_check", line=
@marcelhollerbach
marcelhollerbach / okra.txt
Created June 1, 2017 10:03
Luncher crash
#0 0x00007ffbe48e868d in pause () at /usr/lib/libpthread.so.0
#1 0x00000000005f2ac7 in e_alert_show () at src/bin/e_alert.c:43
#2 0x00000000005964ef in _e_crash () at src/bin/e_signals.c:96
#3 0x0000000000596428 in e_sigseg_act (x=11, info=0x7ffc0968aa30, data=0x7ffc0968a900) at src/bin/e_signals.c:106
#4 0x00007ffbe48e8fe0 in <signal handler called> () at /usr/lib/libpthread.so.0
#5 0x00007ffbc469a4f3 in _bar_exec_new_show (data=0x1fa5be0, e=0x80000002364d5416, obj=0x800000041e4d5453, event_data=0x0) at src/modules/luncher/bar.c:980
#6 0x00007ffbebf5170f in _eo_evas_object_cb (data=0x202f730, event=0x7ffc0968afa0) at lib/evas/canvas/evas_callbacks.c:184
#7 0x00007ffbe53ee399 in _event_callback_call (obj_id=0x800000041e4d5453, pd=0x1508980, desc=0x7ffbe584da40 <_EFL_GFX_EVENT_SHOW>, event_info=0x0, legacy_compare=1 '\001') at lib/eo/eo_base_class.c:1496
#8 0x00007ffbe53ebdd3 in _efl_object_event_callback_legacy_call (obj_id=0x800000041e4d5453, pd=0x1508980, desc=0x7ffbe584da40 <_EFL_GFX_EVENT_SHOW>,
#define EFL_BETA_API_SUPPORT
#include <Eolian.h>
static Eina_Bool
_is_implemented(Eolian_Class *class, Eolian_Function *function_id, Eolian_Function_Type *already_provided)
{
Eolian_Implement *implements;
Eina_Iterator *iter;
This file has been truncated, but you can view the full file.
ESTART: 0.00041 [0.00041] - Begin Startup
ESTART: 0.02545 [0.02504] - Signal Trap
ESTART: 0.02818 [0.00273] - Signal Trap Done
ESTART: 0.04673 [0.01855] - Eina Init
ESTART: 0.18727 [0.14054] - Eina Init Done
ESTART: 0.18823 [0.00096] - Determine Prefix
ESTART: 0.221ERR<17197>:ecore_con lib/ecore_con/ecore_con_legacy.c:1550 _ecore_con_server_server_set() svr=0x23475e0 (Efl.Net.Server.Tcp): not able to socket-activate as 0.0.0.0:22522. Try to serve...
## Copy & Paste the below (until EOF) into a terminal, then hit Enter
eina_btlog << EOF
[greeter]
;Set user to have a different user which is used to start the greeter
;user = spawny
;Set cmd to have a different greeter than the cli greeter
cmd = /usr/local/bin/anna
@marcelhollerbach
marcelhollerbach / samepl.build
Last active December 21, 2017 20:41
meson helper for efl
#We need:
# meson.current_build_dir()
# meson.current_source_dir()
# pub_eo_files
# priv_eo_files
# dir_package_include
#we define
# pub_eo_file_target
# priv_eo_file_target
find -name '*.build' > meson_list_of_files
#grep for everything where we have something like HAVE in defined of ifdef
for file in $(cat meson_list_of_files) ; do
grep "$file" -e "HAVE_"
done > meson_have_occ
#now only get the HAVE_ thingy
grep -o '[A-Z_0-9]*' < meson_have_occ > meson_needed_symbols
{
Node *node;
node = eina_hash_find(pd->node_hash, &child);
if (!node) return;
F_DBG("Manager: %p unregister %p", obj, child);
if (eina_list_last_data_get(pd->focus_stack) == node)
==
#using the mixins
Foo.Bar : Efl.Ui.Focus.Object {
}
==
#what the generation is creating
Efl.Ui.Focus.Object : DynamicObject {
@marcelhollerbach
marcelhollerbach / Test.cs
Created December 19, 2018 14:49
efl-example
using System
class MyApplication : Efl.CsharpApplication {
public override void terminate() {
}
public override void pause() {
}
public override void resume() {