aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-07-22 20:48:01 +0000
committerChristian Grothoff <christian@grothoff.org>2012-07-22 20:48:01 +0000
commitb7ac7eba18d8fd9e80d250790efa329cc1f4e475 (patch)
tree34dfba2e6e34910d35981a3dec593afe0b670b97 /src
parentb876a1578e8fd1d53c7821b03fe12960ef3b07d0 (diff)
downloadgnunet-b7ac7eba18d8fd9e80d250790efa329cc1f4e475.tar.gz
gnunet-b7ac7eba18d8fd9e80d250790efa329cc1f4e475.zip
-doxygen
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_gns_service.h5
-rw-r--r--src/mesh/gnunet-service-mesh.c2
-rw-r--r--src/util/os_priority.c4
3 files changed, 7 insertions, 4 deletions
diff --git a/src/include/gnunet_gns_service.h b/src/include/gnunet_gns_service.h
index 5eaf8b058..47c743ea2 100644
--- a/src/include/gnunet_gns_service.h
+++ b/src/include/gnunet_gns_service.h
@@ -144,13 +144,12 @@ GNUNET_GNS_disconnect (struct GNUNET_GNS_Handle *handle);
144 * lookup 144 * lookup
145 * 145 *
146 * @param cls closure 146 * @param cls closure
147 * @param name "name" of the original lookup
148 * @param rd_count number of records 147 * @param rd_count number of records
149 * @param rd the records in reply 148 * @param rd the records in reply
150 */ 149 */
151typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls, 150typedef void (*GNUNET_GNS_LookupResultProcessor) (void *cls,
152 uint32_t rd_count, 151 uint32_t rd_count,
153 const struct GNUNET_NAMESTORE_RecordData *rd); 152 const struct GNUNET_NAMESTORE_RecordData *rd);
154 153
155 154
156 155
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 4a323b7f7..c19071209 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -4637,7 +4637,7 @@ dht_get_string_accept_handler (void *cls, struct GNUNET_TIME_Absolute exp,
4637 4637
4638 4638
4639/** 4639/**
4640 * Function to process DHT string to regex matching.. 4640 * Function to process DHT string to regex matching.
4641 * Called on each result obtained for the DHT search. 4641 * Called on each result obtained for the DHT search.
4642 * 4642 *
4643 * @param cls closure (search context) 4643 * @param cls closure (search context)
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index 337b8ddf4..88eee70dd 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -1533,6 +1533,10 @@ GNUNET_OS_start_process (int pipe_control,
1533 * Start a process. 1533 * Start a process.
1534 * 1534 *
1535 * @param pipe_control should a pipe be used to send signals to the child? 1535 * @param pipe_control should a pipe be used to send signals to the child?
1536 * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags controlling which
1537 * std handles of the parent are inherited by the child.
1538 * pipe_stdin and pipe_stdout take priority over std_inheritance
1539 * (when they are non-NULL).
1536 * @param lsocks array of listen sockets to dup systemd-style (or NULL); 1540 * @param lsocks array of listen sockets to dup systemd-style (or NULL);
1537 * must be NULL on platforms where dup is not supported 1541 * must be NULL on platforms where dup is not supported
1538 * @param filename name of the binary 1542 * @param filename name of the binary