From: Guenter Knauf Date: Wed, 1 Sep 2010 18:14:11 +0000 (+0000) Subject: Changed comments to C stye. X-Git-Tag: 2.3.9~517 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fdfa6a99fe0d893d97e9043c5054837c64c64ef9;p=apache Changed comments to C stye. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@991632 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/netware/util_nw.c b/os/netware/util_nw.c index 25e0ef42a2..b2a1818377 100644 --- a/os/netware/util_nw.c +++ b/os/netware/util_nw.c @@ -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); }