trying to figure out how i would tell if a service is running from the watchdog...
[xmppcentral.git] / lib / hostManagementServer.php
1 <?php
2
3 class hostManagementServer {
4         function go() {
5                 echo "running host management Server\n";
6                 sleep(1000);
7         }
8         
9         function isRunning()
10         {
11                 // running check will be done via sem messages
12         }
13         
14         
15         private $sem_id = "348971983";
16 }
17
18 ?>