By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 860
Collapse All | Expand All

(-)tdelibs/DEBUG (-2 / +2 lines)
Lines 174-181 Link Here
174
do two things:
174
do two things:
175
175
176
1) Disable the TDE crash handler. This can be done either by using the 
176
1) Disable the TDE crash handler. This can be done either by using the 
177
--nocrashhandler command line option or by setting the KDE_DEBUG environment
177
--nocrashhandler command line option or by setting the TDE_DEBUG environment
178
variable to some value e.g. KDE_DEBUG=true.
178
variable to some value e.g. TDE_DEBUG=true.
179
179
180
2) Enable core dump generation by changing the so called 'ulimits' with the
180
2) Enable core dump generation by changing the so called 'ulimits' with the
181
following command: 
181
following command: 
(-)tdelibs/kate/part/test_regression.cpp (-1 / +1 lines)
Lines 535-541 Link Here
535
    // we're not interested
535
    // we're not interested
536
    toplevel->statusBar()->hide();
536
    toplevel->statusBar()->hide();
537
537
538
    if (!getenv("KDE_DEBUG")) {
538
    if (!getenv("TDE_DEBUG")) {
539
        // set ulimits
539
        // set ulimits
540
        rlimit vmem_limit = { 256*1024*1024, RLIM_INFINITY };	// 256Mb Memory should suffice
540
        rlimit vmem_limit = { 256*1024*1024, RLIM_INFINITY };	// 256Mb Memory should suffice
541
        setrlimit(RLIMIT_AS, &vmem_limit);
541
        setrlimit(RLIMIT_AS, &vmem_limit);
(-)tdelibs/khtml/test_regression.cpp (-1 / +1 lines)
Lines 578-584 Link Here
578
    // we're not interested
578
    // we're not interested
579
    toplevel->statusBar()->hide();
579
    toplevel->statusBar()->hide();
580
580
581
    if (!getenv("KDE_DEBUG")) {
581
    if (!getenv("TDE_DEBUG")) {
582
        // set ulimits
582
        // set ulimits
583
        rlimit vmem_limit = { 256*1024*1024, RLIM_INFINITY };	// 256Mb Memory should suffice
583
        rlimit vmem_limit = { 256*1024*1024, RLIM_INFINITY };	// 256Mb Memory should suffice
584
        setrlimit(RLIMIT_AS, &vmem_limit);
584
        setrlimit(RLIMIT_AS, &vmem_limit);
(-)tdelibs/kio/kio/slavebase.cpp (-1 / +1 lines)
Lines 168-174 Link Here
168
{
168
{
169
    s_protocol = protocol.data();
169
    s_protocol = protocol.data();
170
#ifdef Q_OS_UNIX
170
#ifdef Q_OS_UNIX
171
    if (!getenv("KDE_DEBUG"))
171
    if (!getenv("TDE_DEBUG"))
172
    {
172
    {
173
        KCrash::setCrashHandler( sigsegv_handler );
173
        KCrash::setCrashHandler( sigsegv_handler );
174
        signal(SIGILL,&sigsegv_handler);
174
        signal(SIGILL,&sigsegv_handler);
(-)tdelibs/tdecore/kapplication.cpp (-1 / +1 lines)
Lines 1641-1647 Link Here
1641
       }
1641
       }
1642
    }
1642
    }
1643
1643
1644
    bool nocrashhandler = (getenv("KDE_DEBUG") != NULL);
1644
    bool nocrashhandler = (getenv("TDE_DEBUG") != NULL);
1645
    if (!nocrashhandler && args->isSet("crashhandler"))
1645
    if (!nocrashhandler && args->isSet("crashhandler"))
1646
    {
1646
    {
1647
        // set default crash handler / set emergency save function to nothing
1647
        // set default crash handler / set emergency save function to nothing
(-)tdebase/drkonqi/main.cpp (-1 / +1 lines)
Lines 65-71 Link Here
65
     exit (255);
65
     exit (255);
66
66
67
  // Make sure that DrKonqi doesn't start DrKonqi when it crashes :-]
67
  // Make sure that DrKonqi doesn't start DrKonqi when it crashes :-]
68
  setenv("KDE_DEBUG", "true", 1);
68
  setenv("TDE_DEBUG", "true", 1);
69
  unsetenv("SESSION_MANAGER");
69
  unsetenv("SESSION_MANAGER");
70
70
71
  KAboutData aboutData( "drkonqi",
71
  KAboutData aboutData( "drkonqi",
(-)tdebase/kdesktop/main.cc (-1 / +1 lines)
Lines 101-107 Link Here
101
void KDesktop::slotUpAndRunning()
101
void KDesktop::slotUpAndRunning()
102
{
102
{
103
    // Activate crash recovery
103
    // Activate crash recovery
104
    if (getenv("KDE_DEBUG") == NULL)
104
    if (getenv("TDE_DEBUG") == NULL)
105
        KCrash::setEmergencySaveFunction(crashHandler); // Try to restart on crash
105
        KCrash::setEmergencySaveFunction(crashHandler); // Try to restart on crash
106
}
106
}
107
107
(-)applications/kmymoney/doc/en/kmymoney2.1 (-1 / +1 lines)
Lines 74-80 Link Here
74
.TP
74
.TP
75
.B \-\-nocrashhandler
75
.B \-\-nocrashhandler
76
Disable crash handler, to get core dumps. This option has the same
76
Disable crash handler, to get core dumps. This option has the same
77
effect as definiting the environment variable KDE_DEBUG.
77
effect as definiting the environment variable TDE_DEBUG.
78
.TP
78
.TP
79
.B \-\-waitforwm
79
.B \-\-waitforwm
80
Waits for a WM_NET compatible windowmanager.
80
Waits for a WM_NET compatible windowmanager.

Return to bug 860