diff options
author | razb <razb@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-04-01 22:00:11 +0000 |
---|---|---|
committer | razb <razb@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-04-01 22:00:11 +0000 |
commit | efbee1258c904d741f9bebe0934d4d315d163471 (patch) | |
tree | 0ab59ddcdca98e9a8c0b224c4567690aadb539f9 | |
parent | abde837f8094bfb7459b6c28f420c2256675a155 (diff) | |
download | ATCD-efbee1258c904d741f9bebe0934d4d315d163471.tar.gz |
a bit of doc fixing
-rw-r--r-- | ace/SOCK_Netlink.h | 7 | ||||
-rw-r--r-- | examples/netlink_pingpong/netlinkgateway.cpp | 9 | ||||
-rw-r--r-- | examples/netlink_pingpong/netlinkgateway.h | 2 | ||||
-rw-r--r-- | examples/netlink_pingpong/singleton.h | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/ace/SOCK_Netlink.h b/ace/SOCK_Netlink.h index 54b0cc12b4f..218d25931fc 100644 --- a/ace/SOCK_Netlink.h +++ b/ace/SOCK_Netlink.h @@ -28,9 +28,10 @@ * @brief Defines the member functions for the ACE_SOCK Netlink * abstraction. - * Netlink sockets are used in Linux to communicate kernel to user - * and user to kernel It was created so one could use ACE reactor - * as a gateway to a linux driver. + * Netlink sockets are used in Linux as a communication facilty of kernel to user + * and user to kernel. + * This code was created so one could use ACE reactor + * as a gateway to a linux kernel. * */ class ACE_Export ACE_SOCK_Netlink : public ACE_SOCK diff --git a/examples/netlink_pingpong/netlinkgateway.cpp b/examples/netlink_pingpong/netlinkgateway.cpp index d11209bea24..db011f4174c 100644 --- a/examples/netlink_pingpong/netlinkgateway.cpp +++ b/examples/netlink_pingpong/netlinkgateway.cpp @@ -1,10 +1,11 @@ // $Id$ + /*! \file netlinkgateway.h -\brief netlinkgateway gateway code . -handles the io coming from the driver and dispatches it. + \brief netlinkgateway gateway code . + + handles the io coming from the driver and dispatches it. -IO coming from the driver is always at the size of msg+pagesize. -i should this when i would use shared memeory. + IO coming from the driver is always at the size of msg+pagesize. */ #include "netlinkgateway.h" diff --git a/examples/netlink_pingpong/netlinkgateway.h b/examples/netlink_pingpong/netlinkgateway.h index b1208fe259d..d1edf1248b3 100644 --- a/examples/netlink_pingpong/netlinkgateway.h +++ b/examples/netlink_pingpong/netlinkgateway.h @@ -4,8 +4,6 @@ This class is used to pass buffer to the driver and back. - Why use netlink sockets as a communication facility - */ #ifndef NETLINKGATEWAY_H #define NETLINKGATEWAY_H diff --git a/examples/netlink_pingpong/singleton.h b/examples/netlink_pingpong/singleton.h index 1b0c27edf64..5b2d3726dea 100644 --- a/examples/netlink_pingpong/singleton.h +++ b/examples/netlink_pingpong/singleton.h @@ -1,11 +1,11 @@ // $Id$ -/*! \file NFSingleton.h +/*! \file singleton.h * \brief singleton template * */ -#ifndef _NFSINGLETON_H_ -#define _NFSINGLETON_H_ +#ifndef _SINGLETON_H_ +#define _SINGLETON_H_ /*! \class CNFSingleon \brief singleton template |