aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-02-18 15:07:02 +0000
committerChristian Grothoff <christian@grothoff.org>2010-02-18 15:07:02 +0000
commitd720cc786723169cfdbb246ad6f1f584581f589d (patch)
tree2b2dad9c9a0d4d2d01545cac7f9f11993984884c /src/include
parent0e421fd4f11c564dba39d9c533aed642560c7655 (diff)
downloadgnunet-d720cc786723169cfdbb246ad6f1f584581f589d.tar.gz
gnunet-d720cc786723169cfdbb246ad6f1f584581f589d.zip
fixing doxygen warnings
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_container_lib.h2
-rw-r--r--src/include/gnunet_core_service.h1
-rw-r--r--src/include/gnunet_disk_lib.h5
-rw-r--r--src/include/gnunet_os_lib.h4
4 files changed, 9 insertions, 3 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index bc72e2e09..204d3d6ab 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -243,7 +243,7 @@ GNUNET_CONTAINER_meta_data_test_equal (const struct
243 * 243 *
244 * @param md metadata to extend 244 * @param md metadata to extend
245 * @param plugin_name name of the plugin that produced this value; 245 * @param plugin_name name of the plugin that produced this value;
246 * special values can be used (i.e. '<zlib>' for zlib being 246 * special values can be used (i.e. '&lt;zlib&gt;' for zlib being
247 * used in the main libextractor library and yielding 247 * used in the main libextractor library and yielding
248 * meta data). 248 * meta data).
249 * @param type libextractor-type describing the meta data 249 * @param type libextractor-type describing the meta data
diff --git a/src/include/gnunet_core_service.h b/src/include/gnunet_core_service.h
index af431ba56..060a0f8ee 100644
--- a/src/include/gnunet_core_service.h
+++ b/src/include/gnunet_core_service.h
@@ -240,6 +240,7 @@ struct GNUNET_CORE_PeerRequestHandle;
240 * @param sched scheduler to use 240 * @param sched scheduler to use
241 * @param cfg configuration to use 241 * @param cfg configuration to use
242 * @param timeout how long to try to talk to core 242 * @param timeout how long to try to talk to core
243 * @param peer who should we connect to
243 * @param cont function to call once the request has been completed (or timed out) 244 * @param cont function to call once the request has been completed (or timed out)
244 * @param cont_cls closure for cont 245 * @param cont_cls closure for cont
245 * @return NULL on error (cont will not be called), otherwise handle for cancellation 246 * @return NULL on error (cont will not be called), otherwise handle for cancellation
diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h
index f4ede1384..7b6898293 100644
--- a/src/include/gnunet_disk_lib.h
+++ b/src/include/gnunet_disk_lib.h
@@ -340,9 +340,11 @@ int GNUNET_DISK_pipe_close (struct GNUNET_DISK_PipeHandle *p);
340 * 340 *
341 * @param p pipe to close end of 341 * @param p pipe to close end of
342 * @param end which end of the pipe to close 342 * @param end which end of the pipe to close
343 * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
343 */ 344 */
344int 345int
345GNUNET_DISK_pipe_close_end (struct GNUNET_DISK_PipeHandle *p, enum GNUNET_DISK_PipeEnd end); 346GNUNET_DISK_pipe_close_end (struct GNUNET_DISK_PipeHandle *p,
347 enum GNUNET_DISK_PipeEnd end);
346 348
347/** 349/**
348 * Close an open file. 350 * Close an open file.
@@ -355,6 +357,7 @@ int GNUNET_DISK_file_close (struct GNUNET_DISK_FileHandle *h);
355 357
356/** 358/**
357 * Get the handle to a particular pipe end 359 * Get the handle to a particular pipe end
360 *
358 * @param p pipe 361 * @param p pipe
359 * @param n end to access 362 * @param n end to access
360 * @return handle for the respective end 363 * @return handle for the respective end
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index 02d1063f7..32d9dc7ff 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -196,7 +196,9 @@ int GNUNET_OS_set_process_priority (pid_t proc,
196 * @return process ID of the new process, -1 on error 196 * @return process ID of the new process, -1 on error
197 */ 197 */
198pid_t 198pid_t
199GNUNET_OS_start_process (struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, const char *filename, ...); 199GNUNET_OS_start_process (struct GNUNET_DISK_PipeHandle *pipe_stdin,
200 struct GNUNET_DISK_PipeHandle *pipe_stdout,
201 const char *filename, ...);
200 202
201 203
202/** 204/**