On 11/16/2014 02:13 PM, sfeam wrote:
> On Sunday, 16 November 2014 02:00:06 PM Daniel J Sebald wrote:
>> On 11/16/2014 01:38 PM, sfeam wrote:
>>> On Sunday, 16 November 2014 02:12:28 PM Allin Cottrell wrote:
>>>
>>>> Here's another funny. If I do
>>>
>>>>
>>>
>>>> sudo gnuplot -persist plotfile
>>>
>>>>
>>>
>>>> there's no delay in opening the file dialog via the Save button in the
>>>
>>>> wxt plot window. Cf. http://ubuntuforums.org/showthread.php?t=1092467
>>>
>>> This seems to be a bug in gvfs, which claims to be
>>>
>>> "a Virtual File System library based on gio and Glib".
>>>
>>> gvfs is installed on my machine, but does not seem to be needed by anything.
>>>
>>> If I remove every package with "*gvfs*" in its name:
>>>
>>> urpme gvfs gvfs-archive gvfs-fuse gvfs-gphoto2 gvfs-iphone gvfs-mtp
>>> gvfs-smb lib64gvfscommon0
>>>
>>> I get no errors or warnings about dependencies, and the
>>>
>>> gnuplot + wxt + Export problem goes away.
>>>
>>> Dan - does your machine have gvfs? If so, what version?
>>
>> Yes. Version 1.6.6-1. These processes are all resident, but sleeping:
>>
>> Dan
>
> Huh. That's much older. The version I deleted was gvfs-1.18.3-1.mga4.x86_64
>
> I wonder if there's a reliable way to have the program say
> "I don't want any gvfs, thanks" rather than disabling it for the entire system?
> Then again, maybe if I were running a Gnome desktop gvfs would actually work.
> So far as I can tell the whole gvfs infrastructure is not relevant to KDE.
In the links you provided previously, the comments were that they
downgraded in order to fix the problem (i.e., went back to an older
version).
Could you check the order in which the wx_atexit() is called on your
system with
fprintf(stderr, "wxThread::Entry before OnRun\n");
wxTheApp->OnRun();
fprintf(stderr, "wxThread::Entry after OnRun\n");
fprintf(stderr, "wxt_atexit before wxt_handling_persist true\n");
wxt_handling_persist = true;
fprintf(stderr, "wxt_atexit after wxt_handling_persist true\n");
I'm wondering if you and Allin are seeing a different issue (gvfs bug)
than I am (non main thread no longer having GUI mutex locked).
Thanks,
Dan
|