summaryrefslogtreecommitdiff
path: root/doc/manager.txt
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2010-09-10 19:35:31 +0200
committerAlexis211 <alexis211@gmail.com>2010-09-10 19:35:31 +0200
commita8da6dba7ddc5e3d31a1914597e7b38fbc2d197c (patch)
treefbef80d474e5b9c891e0eb353cfa602acf67fdae /doc/manager.txt
parentaba6ed4b91aff5d914be11704e34de75bfd4d003 (diff)
downloadTCE-a8da6dba7ddc5e3d31a1914597e7b38fbc2d197c.tar.gz
TCE-a8da6dba7ddc5e3d31a1914597e7b38fbc2d197c.zip
Removed all old object/request/... stuff (that was crap)
Diffstat (limited to 'doc/manager.txt')
-rw-r--r--doc/manager.txt17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/manager.txt b/doc/manager.txt
deleted file mode 100644
index 5603ee5..0000000
--- a/doc/manager.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-The manager is a service whose role is to manage all other services. By default, all loaded modules
-get a descriptor to the manager service (descriptor 1).
-
-Each service has a set of ressources that can get a descriptor by openning them. These ressources
-are identified by a string, such as :
-kbd:readtext
-file:root/System/
-console:myuser/main
-
-To open these objects, a process would call the open() method on the manager object. The manager would
-then call the open() method on the corresponding process with the string after the first semicolon
-(for example: open("file:root/System") would call file.open("root/System")).
-
-If the string is just a service name (like open("kbd")), the manager would return a descriptor to the
-root object for that service.
-
-The manager is also the one that handle log entries for services, for the moment by printing them on the screen.