diff --git a/include/villas/kernel/pci.h b/include/villas/kernel/pci.h index 747f5c488..82906b9d2 100644 --- a/include/villas/kernel/pci.h +++ b/include/villas/kernel/pci.h @@ -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. diff --git a/include/villas/nodes/socket.h b/include/villas/nodes/socket.h index 64c1dd82e..044e76de9 100644 --- a/include/villas/nodes/socket.h +++ b/include/villas/nodes/socket.h @@ -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 { diff --git a/include/villas/queue.h b/include/villas/queue.h index 40baf1f17..50fa5aff9 100644 --- a/include/villas/queue.h +++ b/include/villas/queue.h @@ -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 */