diff options
author | Guenter Knauf <fuankg@apache.org> | 2010-09-01 20:14:11 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2010-09-01 20:14:11 +0200 |
commit | fdfa6a99fe0d893d97e9043c5054837c64c64ef9 (patch) | |
tree | 32867f589dad4991b41dbd854206a4f0a27b3913 | |
parent | Fixed wrong comment. (diff) | |
download | apache2-fdfa6a99fe0d893d97e9043c5054837c64c64ef9.tar.xz apache2-fdfa6a99fe0d893d97e9043c5054837c64c64ef9.zip |
Changed comments to C stye.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@991632 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | os/netware/util_nw.c | 12 |
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); } |