blob: 5f76313c7d65d85ad0a62a7e5e9028e4cd086a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/** @mainpage Trinity Initialization Routines
kdeinit is a process launcher somewhat similar to the
famous init used for booting UNIX.
<p>
It launches processes by forking and then loading a
dynamic library which should contain a 'main(...)'
function. This both increases the startup speed and
reduces the memory consumption of Trinity applications.
kdeinit_wrapper, kshell and kwrapper provide methods
of starting programs via kdeinit.
@authors
Waldo Bastian \<bastian@kde.org\><br>
Process title changing code taken from the ProFTPD Project, adapted by Alex Merry
@maintainers
[Unknown/None]
@licenses
@gpl<br>
Most code is @lgpl
*/
// DOXYGEN_REFERENCES = kdecore
// DOXYGEN_SET_PROJECT_NAME = KInit
// vim:ts=4:sw=4:expandtab:filetype=doxygen
|