]> granicus.if.org Git - apache/commitdiff
Changed comments to C stye.
authorGuenter Knauf <fuankg@apache.org>
Wed, 1 Sep 2010 18:14:11 +0000 (18:14 +0000)
committerGuenter Knauf <fuankg@apache.org>
Wed, 1 Sep 2010 18:14:11 +0000 (18:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@991632 13f79535-47bb-0310-9956-ffa450edef68

os/netware/util_nw.c

index 25e0ef42a2251a60a55afe4484ef5c2bb7e13f88..b2a1818377650e16eea975b7bc61b64f32c0c790 100644 (file)
@@ -46,23 +46,23 @@ int _NonAppCheckUnload(void)
     return nlmUnloadSignaled(1);
 }
 
-// down server event callback
+/* down server event callback */
 void ap_down_server_cb(void *, void *)
 {
     nlmUnloadSignaled(0);
     return;
 }
 
-// Required place holder event callback
+/* Required place holder event callback */
 void ap_dummy_cb(void *, void *)
 {
     return;
 }
 
-// destroy callback resources
+/* destroy callback resources */
 void ap_cb_destroy(void *)
 {
-    // cleanup down event notification
+    /* cleanup down event notification */
     UnRegisterEventNotification(eh);
     NX_UNWRAP_INTERFACE(ref);
     NX_UNWRAP_INTERFACE(dum);
@@ -94,7 +94,7 @@ int _NonAppStart
 #pragma unused(messageCount)
 #pragma unused(messages)
 
-    // register for down server event
+    /* register for down server event */
     rtag_t rt = AllocateResourceTag(NLMHandle, "Apache2 Down Server Callback",
                                     EventSignature);
 
@@ -104,7 +104,7 @@ int _NonAppStart
                                       EVENT_PRIORITY_APPLICATION,
                                       ref, dum, NULL);
 
-    // clean-up
+    /* clean-up */
     NXVmRegisterExitHandler(ap_cb_destroy, NULL);
 
 }