aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2005-05-05 20:55:24 +0000
committerschnetter <schnetter@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2005-05-05 20:55:24 +0000
commit1f3ff287ad489c9a49a2d0ab13669e22f71effab (patch)
treee8aac06c583437794e38537228fa6400c2fb2fb2 /schedule.ccl
parentdaf275655975cae5b914f380a599358593ced786 (diff)
Correct some minor errors in comments.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@219 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl8
1 files changed, 7 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 8f76c39..63a13d0 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,13 +1,15 @@
-# Schedule definitions for thorn httpd
+# Schedule definitions for thorn HTTPD
# $Header$
SCHEDULE GROUP HTTP_Startup AT startup
{
+ OPTIONS: GLOBAL
} "HTTP daemon startup group"
SCHEDULE HTTP_StartServer in HTTP_Startup
{
LANG: C
+ OPTIONS: GLOBAL
} "Start HTTP server"
SCHEDULE GROUP HTTP_SetupPages in HTTP_Startup AFTER HTTP_StartServer
@@ -17,11 +19,13 @@ SCHEDULE GROUP HTTP_SetupPages in HTTP_Startup AFTER HTTP_StartServer
SCHEDULE HTTP_FirstServ in HTTP_Startup AFTER HTTP_SetupPages
{
LANG: C
+ OPTIONS: GLOBAL
} "Serve first pages at startup"
SCHEDULE HTTP_Work AT poststep BEFORE IOUtil_UpdateParFile
{
LANG: C
+ OPTIONS: GLOBAL
} "Working routine"
if(provide_pages)
@@ -29,10 +33,12 @@ if(provide_pages)
SCHEDULE HTTP_ContentWork AT poststep
{
LANG: C
+ OPTIONS: GLOBAL
} "Content Working routine"
}
SCHEDULE HTTP_Shutdown AT shutdown
{
LANG: C
+ OPTIONS: GLOBAL
} "HTTP daemon shutdown"