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/kinit/klauncher.cpp (-3 / +3 lines)
Lines 207-221 Link Here
207
   lastRequest = 0;
207
   lastRequest = 0;
208
   bProcessingQueue = false;
208
   bProcessingQueue = false;
209
209
210
   mSlaveDebug = getenv("KDE_SLAVE_DEBUG_WAIT");
210
   mSlaveDebug = getenv("TDE_SLAVE_DEBUG_WAIT");
211
   if (!mSlaveDebug.isEmpty())
211
   if (!mSlaveDebug.isEmpty())
212
   {
212
   {
213
      qWarning("Klauncher running in slave-debug mode for slaves of protocol '%s'", mSlaveDebug.data());
213
      qWarning("Klauncher running in slave-debug mode for slaves of protocol '%s'", mSlaveDebug.data());
214
   }
214
   }
215
   mSlaveValgrind = getenv("KDE_SLAVE_VALGRIND");
215
   mSlaveValgrind = getenv("TDE_SLAVE_VALGRIND");
216
   if (!mSlaveValgrind.isEmpty())
216
   if (!mSlaveValgrind.isEmpty())
217
   {
217
   {
218
      mSlaveValgrindSkin = getenv("KDE_SLAVE_VALGRIND_SKIN");
218
      mSlaveValgrindSkin = getenv("TDE_SLAVE_VALGRIND_SKIN");
219
      qWarning("Klauncher running slaves through valgrind for slaves of protocol '%s'", mSlaveValgrind.data());
219
      qWarning("Klauncher running slaves through valgrind for slaves of protocol '%s'", mSlaveValgrind.data());
220
   }
220
   }
221
   klauncher_header request_header;
221
   klauncher_header request_header;
(-)tdebase/kioslave/DEBUG.howto (-3 / +3 lines)
Lines 18-24 Link Here
18
18
19
E.g. to start all 'http' slaves in debug mode, you type:
19
E.g. to start all 'http' slaves in debug mode, you type:
20
20
21
	KDE_SLAVE_DEBUG_WAIT=http tdeinit
21
	TDE_SLAVE_DEBUG_WAIT=http tdeinit
22
22
23
This will restart 'tdeinit' and 'klauncher'.
23
This will restart 'tdeinit' and 'klauncher'.
24
24
Lines 51-63 Link Here
51
KLauncher can be told to run certain io-slaves through valgrind. The following
51
KLauncher can be told to run certain io-slaves through valgrind. The following
52
command can be used to let klauncher run all https io-slaves via valgrind:
52
command can be used to let klauncher run all https io-slaves via valgrind:
53
53
54
	KDE_SLAVE_VALGRIND=https tdeinit
54
	TDE_SLAVE_VALGRIND=https tdeinit
55
55
56
The valgrind output will appear as the stderr output of the tdeinit process.
56
The valgrind output will appear as the stderr output of the tdeinit process.
57
The $VALGRIND_OPTS environment variable can be used to pass options to valgrind.
57
The $VALGRIND_OPTS environment variable can be used to pass options to valgrind.
58
If you want to use a different skin:
58
If you want to use a different skin:
59
59
60
	KDE_SLAVE_VALGRIND_SKIN=calltree      ( for example )
60
	TDE_SLAVE_VALGRIND_SKIN=calltree      ( for example )
61
61
62
62
63
How to get debug output
63
How to get debug output

Return to bug 860