aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-09-11 11:26:42 +0000
committerChristian Grothoff <christian@grothoff.org>2009-09-11 11:26:42 +0000
commitd0efe84c15166730f5ee3f7af74ca428ae37f7ff (patch)
tree493c44dae4e15c28db8e349e07d3c416b3340e0c
parentfa9d1957520372ba3575296f1edb53f48fe2b000 (diff)
downloadgnunet-d0efe84c15166730f5ee3f7af74ca428ae37f7ff.tar.gz
gnunet-d0efe84c15166730f5ee3f7af74ca428ae37f7ff.zip
fixing docu issues
-rw-r--r--src/arm/arm_api.c35
-rw-r--r--src/datacache/datacache.c2
-rw-r--r--src/datacache/plugin_datacache.h5
-rw-r--r--src/datacache/plugin_datacache_sqlite.c10
-rw-r--r--src/datacache/plugin_datacache_template.c10
-rw-r--r--src/datastore/datastore_api.c2
-rw-r--r--src/datastore/gnunet-service-datastore.c4
-rw-r--r--src/fs/gnunet-service-fs.c2
-rw-r--r--src/include/gnunet_fs_service.h4
-rw-r--r--src/include/gnunet_getopt_lib.h2
-rw-r--r--src/include/winproc.h4
-rw-r--r--src/transport/gnunet-transport.c2
-rw-r--r--src/transport/plugin_transport_http.c2
-rw-r--r--src/transport/plugin_transport_smtp.c2
-rw-r--r--src/transport/plugin_transport_udp.c2
-rw-r--r--src/upnp/upnp_init.c2
-rw-r--r--src/upnp/upnp_ip.c2
-rw-r--r--src/upnp/upnp_ip.h2
-rw-r--r--src/upnp/upnp_util.h2
-rw-r--r--src/upnp/upnp_xmlnode.c2
-rw-r--r--src/upnp/upnp_xmlnode.h2
-rw-r--r--src/util/common_allocation.c2
-rw-r--r--src/util/network.c4
-rw-r--r--src/util/os_load.c4
-rw-r--r--src/util/os_priority.c2
-rw-r--r--src/util/scheduler.c2
-rw-r--r--src/util/win.cc4
-rw-r--r--src/util/winproc.c2
28 files changed, 92 insertions, 28 deletions
diff --git a/src/arm/arm_api.c b/src/arm/arm_api.c
index 7ae3e9513..e5071c4dc 100644
--- a/src/arm/arm_api.c
+++ b/src/arm/arm_api.c
@@ -33,18 +33,52 @@
33#include "arm.h" 33#include "arm.h"
34 34
35 35
36/**
37 * FIXME: document.
38 */
36struct ArmContext 39struct ArmContext
37{ 40{
41
42 /**
43 * FIXME: document.
44 */
38 GNUNET_ARM_Callback callback; 45 GNUNET_ARM_Callback callback;
46
47 /**
48 * FIXME: document.
49 */
39 void *cls; 50 void *cls;
51
52 /**
53 * FIXME: document.
54 */
40 char *service_name; 55 char *service_name;
56
57 /**
58 * FIXME: document.
59 */
41 struct GNUNET_CLIENT_Connection *client; 60 struct GNUNET_CLIENT_Connection *client;
61
62 /**
63 * FIXME: document.
64 */
42 const struct GNUNET_CONFIGURATION_Handle *cfg; 65 const struct GNUNET_CONFIGURATION_Handle *cfg;
66
67 /**
68 * FIXME: document.
69 */
43 struct GNUNET_TIME_Absolute timeout; 70 struct GNUNET_TIME_Absolute timeout;
71
72 /**
73 * FIXME: document.
74 */
44 uint16_t type; 75 uint16_t type;
45}; 76};
46 77
47 78
79/**
80 * FIXME: document.
81 */
48static void 82static void
49arm_service_report (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) 83arm_service_report (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
50{ 84{
@@ -192,6 +226,7 @@ send_service_msg (void *cls, size_t size, void *buf)
192 * @param timeout how long to wait before failing for good 226 * @param timeout how long to wait before failing for good
193 * @param cb callback to invoke when service is ready 227 * @param cb callback to invoke when service is ready
194 * @param cb_cls closure for callback 228 * @param cb_cls closure for callback
229 * @param type type of the request
195 */ 230 */
196static void 231static void
197change_service (const char *service_name, 232change_service (const char *service_name,
diff --git a/src/datacache/datacache.c b/src/datacache/datacache.c
index 3b233d16d..afdfb0c4c 100644
--- a/src/datacache/datacache.c
+++ b/src/datacache/datacache.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file datacache/datacache_api.c 22 * @file datacache/datacache.c
23 * @brief datacache API implementation 23 * @brief datacache API implementation
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/datacache/plugin_datacache.h b/src/datacache/plugin_datacache.h
index 39119339d..d3768cf44 100644
--- a/src/datacache/plugin_datacache.h
+++ b/src/datacache/plugin_datacache.h
@@ -105,7 +105,7 @@ struct GNUNET_DATACACHE_PluginFunctions {
105 /** 105 /**
106 * Store an item in the datastore. 106 * Store an item in the datastore.
107 * 107 *
108 * @param key key to store data under 108 * @param cls closure (internal context for the plugin)
109 * @param size number of bytes in data 109 * @param size number of bytes in data
110 * @param data data to store 110 * @param data data to store
111 * @param type type of the value 111 * @param type type of the value
@@ -124,9 +124,11 @@ struct GNUNET_DATACACHE_PluginFunctions {
124 * Iterate over the results for a particular key 124 * Iterate over the results for a particular key
125 * in the datastore. 125 * in the datastore.
126 * 126 *
127 * @param cls closure (internal context for the plugin)
127 * @param key 128 * @param key
128 * @param type entries of which type are relevant? 129 * @param type entries of which type are relevant?
129 * @param iter maybe NULL (to just count) 130 * @param iter maybe NULL (to just count)
131 * @param iter_cls closure for iter
130 * @return the number of results found 132 * @return the number of results found
131 */ 133 */
132 unsigned int (*get) (void *cls, 134 unsigned int (*get) (void *cls,
@@ -140,6 +142,7 @@ struct GNUNET_DATACACHE_PluginFunctions {
140 * Delete the entry with the lowest expiration value 142 * Delete the entry with the lowest expiration value
141 * from the datacache right now. 143 * from the datacache right now.
142 * 144 *
145 * @param cls closure (internal context for the plugin)
143 * @return GNUNET_OK on success, GNUNET_SYSERR on error 146 * @return GNUNET_OK on success, GNUNET_SYSERR on error
144 */ 147 */
145 int (*del) (void *cls); 148 int (*del) (void *cls);
diff --git a/src/datacache/plugin_datacache_sqlite.c b/src/datacache/plugin_datacache_sqlite.c
index e8ef5cd09..7595211c1 100644
--- a/src/datacache/plugin_datacache_sqlite.c
+++ b/src/datacache/plugin_datacache_sqlite.c
@@ -86,6 +86,7 @@ sq_prepare (sqlite3 * dbh, const char *zSql, /* SQL statement, UTF-8 encoded
86/** 86/**
87 * Store an item in the datastore. 87 * Store an item in the datastore.
88 * 88 *
89 * @param cls closure (our "struct Plugin")
89 * @param key key to store data under 90 * @param key key to store data under
90 * @param size number of bytes in data 91 * @param size number of bytes in data
91 * @param data data to store 92 * @param data data to store
@@ -155,9 +156,11 @@ sqlite_plugin_put (void *cls,
155 * Iterate over the results for a particular key 156 * Iterate over the results for a particular key
156 * in the datastore. 157 * in the datastore.
157 * 158 *
159 * @param cls closure (our "struct Plugin")
158 * @param key 160 * @param key
159 * @param type entries of which type are relevant? 161 * @param type entries of which type are relevant?
160 * @param iter maybe NULL (to just count) 162 * @param iter maybe NULL (to just count)
163 * @param iter_cls closure for iter
161 * @return the number of results found 164 * @return the number of results found
162 */ 165 */
163static unsigned int 166static unsigned int
@@ -259,6 +262,7 @@ sqlite_plugin_get (void *cls,
259 * Delete the entry with the lowest expiration value 262 * Delete the entry with the lowest expiration value
260 * from the datacache right now. 263 * from the datacache right now.
261 * 264 *
265 * @param cls closure (our "struct Plugin")
262 * @return GNUNET_OK on success, GNUNET_SYSERR on error 266 * @return GNUNET_OK on success, GNUNET_SYSERR on error
263 */ 267 */
264static int 268static int
@@ -337,6 +341,9 @@ sqlite_plugin_del (void *cls)
337 341
338/** 342/**
339 * Entry point for the plugin. 343 * Entry point for the plugin.
344 *
345 * @param cls closure (the "struct GNUNET_DATACACHE_PluginEnvironmnet")
346 * @return the plugin's closure (our "struct Plugin")
340 */ 347 */
341void * 348void *
342libgnunet_plugin_datacache_sqlite_init (void *cls) 349libgnunet_plugin_datacache_sqlite_init (void *cls)
@@ -398,6 +405,9 @@ libgnunet_plugin_datacache_sqlite_init (void *cls)
398 405
399/** 406/**
400 * Exit point from the plugin. 407 * Exit point from the plugin.
408 *
409 * @param cls closure (our "struct Plugin")
410 * @return NULL
401 */ 411 */
402void * 412void *
403libgnunet_plugin_datacache_sqlite_done (void *cls) 413libgnunet_plugin_datacache_sqlite_done (void *cls)
diff --git a/src/datacache/plugin_datacache_template.c b/src/datacache/plugin_datacache_template.c
index 501284c30..163f72a7a 100644
--- a/src/datacache/plugin_datacache_template.c
+++ b/src/datacache/plugin_datacache_template.c
@@ -43,6 +43,7 @@ struct Plugin
43/** 43/**
44 * Store an item in the datastore. 44 * Store an item in the datastore.
45 * 45 *
46 * @param cls closure (our "struct Plugin")
46 * @param key key to store data under 47 * @param key key to store data under
47 * @param size number of bytes in data 48 * @param size number of bytes in data
48 * @param data data to store 49 * @param data data to store
@@ -67,9 +68,11 @@ template_plugin_put (void *cls,
67 * Iterate over the results for a particular key 68 * Iterate over the results for a particular key
68 * in the datastore. 69 * in the datastore.
69 * 70 *
71 * @param cls closure (our "struct Plugin")
70 * @param key 72 * @param key
71 * @param type entries of which type are relevant? 73 * @param type entries of which type are relevant?
72 * @param iter maybe NULL (to just count) 74 * @param iter maybe NULL (to just count)
75 * @param iter_cls closure for iter
73 * @return the number of results found 76 * @return the number of results found
74 */ 77 */
75static unsigned int 78static unsigned int
@@ -88,6 +91,7 @@ template_plugin_get (void *cls,
88 * Delete the entry with the lowest expiration value 91 * Delete the entry with the lowest expiration value
89 * from the datacache right now. 92 * from the datacache right now.
90 * 93 *
94 * @param cls closure (our "struct Plugin")
91 * @return GNUNET_OK on success, GNUNET_SYSERR on error 95 * @return GNUNET_OK on success, GNUNET_SYSERR on error
92 */ 96 */
93static int 97static int
@@ -100,6 +104,9 @@ template_plugin_del (void *cls)
100 104
101/** 105/**
102 * Entry point for the plugin. 106 * Entry point for the plugin.
107 *
108 * @param cls closure (the "struct GNUNET_DATACACHE_PluginEnvironmnet")
109 * @return the plugin's closure (our "struct Plugin")
103 */ 110 */
104void * 111void *
105libgnunet_plugin_datacache_template_init (void *cls) 112libgnunet_plugin_datacache_template_init (void *cls)
@@ -123,6 +130,9 @@ libgnunet_plugin_datacache_template_init (void *cls)
123 130
124/** 131/**
125 * Exit point from the plugin. 132 * Exit point from the plugin.
133 *
134 * @param cls closure (our "struct Plugin")
135 * @return NULL
126 */ 136 */
127void * 137void *
128libgnunet_plugin_datacache_template_done (void *cls) 138libgnunet_plugin_datacache_template_done (void *cls)
diff --git a/src/datastore/datastore_api.c b/src/datastore/datastore_api.c
index 929698a5b..7b674087e 100644
--- a/src/datastore/datastore_api.c
+++ b/src/datastore/datastore_api.c
@@ -335,6 +335,8 @@ transmit_for_status (struct GNUNET_DATASTORE_Handle *h,
335 * lower anonymity level is used. 335 * lower anonymity level is used.
336 * 336 *
337 * @param h handle to the datastore 337 * @param h handle to the datastore
338 * @param rid reservation ID to use (from "reserve"); use 0 if no
339 * prior reservation was made
338 * @param key key for the value 340 * @param key key for the value
339 * @param size number of bytes in data 341 * @param size number of bytes in data
340 * @param data content stored 342 * @param data content stored
diff --git a/src/datastore/gnunet-service-datastore.c b/src/datastore/gnunet-service-datastore.c
index 900c1a8c8..f139998e9 100644
--- a/src/datastore/gnunet-service-datastore.c
+++ b/src/datastore/gnunet-service-datastore.c
@@ -456,6 +456,8 @@ transmit_callback (void *cls,
456 * 456 *
457 * @param client target of the message 457 * @param client target of the message
458 * @param msg message to transmit, will be freed! 458 * @param msg message to transmit, will be freed!
459 * @param tc function to call afterwards
460 * @param tc_cls closure for tc
459 * @param end is this the last response (and we should 461 * @param end is this the last response (and we should
460 * signal the server completion accodingly after 462 * signal the server completion accodingly after
461 * transmitting this message)? 463 * transmitting this message)?
@@ -537,7 +539,7 @@ transmit_status (struct GNUNET_SERVER_Client *client,
537 * Function called once the transmit operation has 539 * Function called once the transmit operation has
538 * either failed or succeeded. 540 * either failed or succeeded.
539 * 541 *
540 * @param cls closure 542 * @param next_cls closure for calling "next_request" callback
541 * @param status GNUNET_OK on success, GNUNET_SYSERR on error 543 * @param status GNUNET_OK on success, GNUNET_SYSERR on error
542 */ 544 */
543static void 545static void
diff --git a/src/fs/gnunet-service-fs.c b/src/fs/gnunet-service-fs.c
index 18cb69d68..2fad754c0 100644
--- a/src/fs/gnunet-service-fs.c
+++ b/src/fs/gnunet-service-fs.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file statistics/gnunet-service-fs.c 22 * @file fs/gnunet-service-fs.c
23 * @brief program that provides the file-sharing service 23 * @brief program that provides the file-sharing service
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/include/gnunet_fs_service.h b/src/include/gnunet_fs_service.h
index 108c0c68f..f89a343b9 100644
--- a/src/include/gnunet_fs_service.h
+++ b/src/include/gnunet_fs_service.h
@@ -382,7 +382,9 @@ GNUNET_FS_uri_test_loc (const struct GNUNET_FS_Uri *uri);
382 * Construct a keyword-URI from meta-data (take all entries 382 * Construct a keyword-URI from meta-data (take all entries
383 * in the meta-data and construct one large keyword URI 383 * in the meta-data and construct one large keyword URI
384 * that lists all keywords that can be found in the meta-data). 384 * that lists all keywords that can be found in the meta-data).
385 * @deprecated 385 *
386 * @param md metadata to use
387 * @return NULL on error, otherwise a KSK URI
386 */ 388 */
387struct GNUNET_FS_Uri * 389struct GNUNET_FS_Uri *
388GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_CONTAINER_MetaData *md); 390GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_CONTAINER_MetaData *md);
diff --git a/src/include/gnunet_getopt_lib.h b/src/include/gnunet_getopt_lib.h
index e7063d3d0..35db3f6d1 100644
--- a/src/include/gnunet_getopt_lib.h
+++ b/src/include/gnunet_getopt_lib.h
@@ -99,7 +99,7 @@ struct GNUNET_GETOPT_CommandLineOption
99{ 99{
100 100
101 /** 101 /**
102 * Short name of the option (use '\0' for none). 102 * Short name of the option (use '\\0' for none).
103 */ 103 */
104 const char shortName; 104 const char shortName;
105 105
diff --git a/src/include/winproc.h b/src/include/winproc.h
index 9619f60d9..a42418141 100644
--- a/src/include/winproc.h
+++ b/src/include/winproc.h
@@ -19,10 +19,10 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/winproc.h 22 * @file include/winproc.h
23 * @brief Definitions for MS Windows 23 * @brief Definitions for MS Windows
24 * @author Nils Durner 24 * @author Nils Durner
25 **/ 25 */
26 26
27#ifndef _WINPROC_H 27#ifndef _WINPROC_H
28#define _WINPROC_H 28#define _WINPROC_H
diff --git a/src/transport/gnunet-transport.c b/src/transport/gnunet-transport.c
index 52475e3eb..17f6e6f78 100644
--- a/src/transport/gnunet-transport.c
+++ b/src/transport/gnunet-transport.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file server/gnunet-transport.c 22 * @file src/transport/gnunet-transport.c
23 * @brief Tool to help configure the transports. 23 * @brief Tool to help configure the transports.
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 * 25 *
diff --git a/src/transport/plugin_transport_http.c b/src/transport/plugin_transport_http.c
index 78691852d..c2f531b54 100644
--- a/src/transport/plugin_transport_http.c
+++ b/src/transport/plugin_transport_http.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transports/http.c 22 * @file transport/plugin_transport_http.c
23 * @brief Implementation of the HTTP transport service 23 * @brief Implementation of the HTTP transport service
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/transport/plugin_transport_smtp.c b/src/transport/plugin_transport_smtp.c
index f7cc530e4..b93b16fb7 100644
--- a/src/transport/plugin_transport_smtp.c
+++ b/src/transport/plugin_transport_smtp.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transports/smtp.c 22 * @file transport/plugin_transport_smtp.c
23 * @brief Implementation of the SMTP transport service 23 * @brief Implementation of the SMTP transport service
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 * @author Renaldo Ferreira 25 * @author Renaldo Ferreira
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index ce8a2f89c..840025997 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transports/udp.c 22 * @file transport/plugin_transport_udp.c
23 * @brief Implementation of the UDP transport service 23 * @brief Implementation of the UDP transport service
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/upnp/upnp_init.c b/src/upnp/upnp_init.c
index b0eb77c32..19167342b 100644
--- a/src/upnp/upnp_init.c
+++ b/src/upnp/upnp_init.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/transports/upnp/init.c 22 * @file transport/upnp_init.c
23 * @brief API for UPnP access 23 * @brief API for UPnP access
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/upnp/upnp_ip.c b/src/upnp/upnp_ip.c
index 3716fc671..cb102cba5 100644
--- a/src/upnp/upnp_ip.c
+++ b/src/upnp/upnp_ip.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transports/upnp/ip.c 22 * @file transport/upnp_ip.c
23 * @brief code to determine the IP of the local machine 23 * @brief code to determine the IP of the local machine
24 * 24 *
25 * @author Christian Grothoff 25 * @author Christian Grothoff
diff --git a/src/upnp/upnp_ip.h b/src/upnp/upnp_ip.h
index adc06bbd5..62cb05f5e 100644
--- a/src/upnp/upnp_ip.h
+++ b/src/upnp/upnp_ip.h
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file transports/upnp/ip.h 22 * @file transport/upnp_ip.h
23 * @brief 23 * @brief
24 * 24 *
25 * @author Christian Grothoff 25 * @author Christian Grothoff
diff --git a/src/upnp/upnp_util.h b/src/upnp/upnp_util.h
index 89a8d71cf..32c790493 100644
--- a/src/upnp/upnp_util.h
+++ b/src/upnp/upnp_util.h
@@ -1,5 +1,5 @@
1/** 1/**
2 * @file util.h Utility Functions 2 * @file transport/upnp_util.h Utility Functions
3 * @ingroup core 3 * @ingroup core
4 * 4 *
5 * gaim 5 * gaim
diff --git a/src/upnp/upnp_xmlnode.c b/src/upnp/upnp_xmlnode.c
index b37528f00..aeea157e1 100644
--- a/src/upnp/upnp_xmlnode.c
+++ b/src/upnp/upnp_xmlnode.c
@@ -1,5 +1,5 @@
1/** 1/**
2 * @file xmlnode.c XML DOM functions 2 * @file transport/upnp_xmlnode.c XML DOM functions
3 * 3 *
4 * gaim 4 * gaim
5 * 5 *
diff --git a/src/upnp/upnp_xmlnode.h b/src/upnp/upnp_xmlnode.h
index 199975e37..191ef14d2 100644
--- a/src/upnp/upnp_xmlnode.h
+++ b/src/upnp/upnp_xmlnode.h
@@ -1,5 +1,5 @@
1/** 1/**
2 * @file xmlnode.h XML DOM functions 2 * @file transport/upnp_xmlnode.h XML DOM functions
3 * @ingroup core 3 * @ingroup core
4 * 4 *
5 * gaim 5 * gaim
diff --git a/src/util/common_allocation.c b/src/util/common_allocation.c
index 71ebb0905..7a79eef6d 100644
--- a/src/util/common_allocation.c
+++ b/src/util/common_allocation.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/memory/common_allocation.c 22 * @file util/common_allocation.c
23 * @brief wrapper around malloc/free 23 * @brief wrapper around malloc/free
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/util/network.c b/src/util/network.c
index 7e4743a10..e112d9093 100644
--- a/src/util/network.c
+++ b/src/util/network.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/sock.c 22 * @file util/network.c
23 * @brief basic, low-level networking interface 23 * @brief basic, low-level networking interface
24 * @author Nils Durner 24 * @author Nils Durner
25 */ 25 */
@@ -821,4 +821,4 @@ GNUNET_NETWORK_socket_select (struct GNUNET_NETWORK_FDSet *rfds,
821#endif 821#endif
822} 822}
823 823
824/* end of network_socket.c */ 824/* end of network.c */
diff --git a/src/util/os_load.c b/src/util/os_load.c
index 21e74eb49..a5a197ebe 100644
--- a/src/util/os_load.c
+++ b/src/util/os_load.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/os_load_cpu.c 22 * @file util/os_load.c
23 * @brief calls to determine current CPU load 23 * @brief calls to determine current CPU load
24 * @author Tzvetan Horozov 24 * @author Tzvetan Horozov
25 * @author Christian Grothoff 25 * @author Christian Grothoff
@@ -650,4 +650,4 @@ void __attribute__ ((destructor)) GNUNET_cpustats_ltdl_fini ()
650} 650}
651 651
652 652
653/* end of os_load_cpu.c */ 653/* end of os_load.c */
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index 4e820b8d5..46e2deb5c 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/os/priority.c 22 * @file util/os_priority.c
23 * @brief Methods to set process priority 23 * @brief Methods to set process priority
24 * @author Nils Durner 24 * @author Nils Durner
25 */ 25 */
diff --git a/src/util/scheduler.c b/src/util/scheduler.c
index d1d4e1970..12b7c4cf2 100644
--- a/src/util/scheduler.c
+++ b/src/util/scheduler.c
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21/** 21/**
22 * @file util/scheduler/scheduler.c 22 * @file util/scheduler.c
23 * @brief schedule computations using continuation passing style 23 * @brief schedule computations using continuation passing style
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
diff --git a/src/util/win.cc b/src/util/win.cc
index 8e71744d0..8a168d238 100644
--- a/src/util/win.cc
+++ b/src/util/win.cc
@@ -19,10 +19,10 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/win/win.cc 22 * @file util/win.cc
23 * @brief Helper functions for MS Windows in C++ 23 * @brief Helper functions for MS Windows in C++
24 * @author Nils Durner 24 * @author Nils Durner
25 **/ 25 */
26 26
27#ifndef _WIN_CC 27#ifndef _WIN_CC
28#define _WIN_CC 28#define _WIN_CC
diff --git a/src/util/winproc.c b/src/util/winproc.c
index 469e1fb41..862222c05 100644
--- a/src/util/winproc.c
+++ b/src/util/winproc.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file util/win/winproc.c 22 * @file util/winproc.c
23 * @brief Functions for MS Windows 23 * @brief Functions for MS Windows
24 * @author Nils Durner 24 * @author Nils Durner
25 */ 25 */