aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 187dd11c73cc721403051432a03b887d0034637c (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
# Schedule definitions for thorn httpd
# $Header$

SCHEDULE HTTP_Startup AT startup
{
  LANG: C
} "HTTP daemon startup"

SCHEDULE HTTP_Work AT poststep
{
  LANG: C
} "HTTP working routine"

if(provide_pages)
{
  SCHEDULE HTTP_ContentWork AT poststep
  {
    LANG: C
  } "HTTP Content Working routine"
}

SCHEDULE HTTP_Shutdown AT shutdown
{
  LANG: C
} "HTTP daemon shutdown"