You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
755 B
30 lines
755 B
14 years ago
|
/** @mainpage Trinity Initialization Routines
|
||
15 years ago
|
|
||
13 years ago
|
tdeinit is a process launcher somewhat similar to the
|
||
15 years ago
|
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
|
||
14 years ago
|
reduces the memory consumption of Trinity applications.
|
||
15 years ago
|
|
||
13 years ago
|
tdeinit_wrapper, kshell and kwrapper provide methods
|
||
|
of starting programs via tdeinit.
|
||
15 years ago
|
|
||
|
@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
|
||
|
|
||
|
*/
|
||
|
|
||
13 years ago
|
// DOXYGEN_REFERENCES = tdecore
|
||
15 years ago
|
// DOXYGEN_SET_PROJECT_NAME = KInit
|
||
|
// vim:ts=4:sw=4:expandtab:filetype=doxygen
|