summaryrefslogtreecommitdiff
path: root/os/netware
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2010-09-01 18:14:11 +0000
committerGuenter Knauf <fuankg@apache.org>2010-09-01 18:14:11 +0000
commitfdfa6a99fe0d893d97e9043c5054837c64c64ef9 (patch)
tree32867f589dad4991b41dbd854206a4f0a27b3913 /os/netware
parent6dfc1d4132cada42b94381368a0ceed3256ec769 (diff)
downloadhttpd-fdfa6a99fe0d893d97e9043c5054837c64c64ef9.tar.gz
Changed comments to C stye.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@991632 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/netware')
-rw-r--r--os/netware/util_nw.c12
1 files changed, 6 insertions, 6 deletions
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);
}