Updates von /doc/LPC aus Driversourcen
Change-Id: I60960bf74c3914a6fb6b0bd6628b39c1a4d8ba2d
diff --git a/doc/LPC/async b/doc/LPC/async
new file mode 100644
index 0000000..addc14d
--- /dev/null
+++ b/doc/LPC/async
@@ -0,0 +1,32 @@
+NAME
+ async
+
+SYNTAX
+ /* function */
+ async <modifiers> <type> name ( <arguments> )
+ {
+ statements...
+ }
+
+ /* inline closure */
+ async function <type> ( ) : <context>
+ {
+ statements...
+ }
+
+DESCRIPTION
+ The async modifer turns a function or inline closure into a coroutine.
+
+ If the function is called it will immediately return a coroutine
+ object that will represent the remainder of the function's execution.
+
+ The inline closure notation will not result in a closure, but a
+ coroutine object.
+
+HISTORY
+ Coroutines were introduced in LDMud 3.6.5.
+
+SEE ALSO
+ coroutines(LPC), await(LPC), yield(LPC), foreach(LPC),
+ call_coroutine(E), this_coroutine(E)
+