1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix Doxygen commenting style

This commit is contained in:
Steffen Vogel 2016-10-20 18:01:42 -04:00
parent 64ee734dc2
commit bad1dc953a
3 changed files with 8 additions and 8 deletions

View file

@ -31,7 +31,7 @@ struct pci_dev {
};
struct pci {
struct list devices; /**> List of available PCI devices in the system (struct pci_dev) */
struct list devices; /**< List of available PCI devices in the system (struct pci_dev) */
};
/** Initialize Linux PCI handle.

View file

@ -29,8 +29,8 @@ enum socket_layer {
};
enum socket_header {
SOCKET_HEADER_DEFAULT, /**> Default header in the payload, (see msg_format.h) */
SOCKET_HEADER_GTNET_SKT /**> No header in the payload, same as HDR_NONE*/
SOCKET_HEADER_DEFAULT, /**< Default header in the payload, (see msg_format.h) */
SOCKET_HEADER_GTNET_SKT /**< No header in the payload, same as HDR_NONE*/
};
union sockaddr_union {

View file

@ -52,15 +52,15 @@ struct queue {
void *data;
} *buffer;
cacheline_pad_t _pad1; /**> Producer area: only producers read & write */
cacheline_pad_t _pad1; /**< Producer area: only producers read & write */
atomic_size_t tail; /**> Queue tail pointer */
atomic_size_t tail; /**< Queue tail pointer */
cacheline_pad_t _pad2; /**> Consumer area: only consumers read & write */
cacheline_pad_t _pad2; /**< Consumer area: only consumers read & write */
atomic_size_t head; /**> Queue head pointer */
atomic_size_t head; /**< Queue head pointer */
cacheline_pad_t _pad3; /**> @todo Why needed? */
cacheline_pad_t _pad3; /**< @todo Why needed? */
};
/** Initialize MPMC queue */