[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] branch master updated (8887bab -> 82e765c)
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] branch master updated (8887bab -> 82e765c) |
Date: |
Sat, 26 Nov 2016 01:32:56 +0100 |
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gnunet.
from 8887bab fix creation of PHONE records with gnunet-namestore
new b618b2a configure: -fsanitize
new 82e765c service_new: ready_confirm_fd
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
configure.ac | 2 +-
src/util/service_new.c | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index d839f8b..ad62d46 100644
--- a/configure.ac
+++ b/configure.ac
@@ -272,7 +272,7 @@ fi])
AC_ARG_ENABLE(sanitizer,
AS_HELP_STRING(--enable-sanitizer, enable Address Sanitizer and Undefined
Behavior Sanitizer),
[if test x$enableval = xyes; then
- LDFLAGS="$CFLAGS -fsanitize=address,undefined,unsigned-integer-overflow
-fsanitize-recover=all -fno-omit-frame-pointer"
+ LDFLAGS="$CFLAGS -fsanitize=address,undefined -fsanitize-recover=all
-fno-omit-frame-pointer"
fi])
diff --git a/src/util/service_new.c b/src/util/service_new.c
index 8433c42..a893d28 100644
--- a/src/util/service_new.c
+++ b/src/util/service_new.c
@@ -390,6 +390,14 @@ service_main (void *cls)
GNUNET_SCHEDULER_add_shutdown (&service_shutdown,
sh);
GNUNET_SERVICE_resume (sh);
+
+ if (-1 != sh->ready_confirm_fd)
+ {
+ GNUNET_break (1 == WRITE (sh->ready_confirm_fd, ".", 1));
+ GNUNET_break (0 == CLOSE (sh->ready_confirm_fd));
+ sh->ready_confirm_fd = -1;
+ }
+
if (NULL != sh->service_init_cb)
sh->service_init_cb (sh->cb_cls,
sh->cfg,
--
To stop receiving notification emails like this one, please contact
address@hidden
- [GNUnet-SVN] [gnunet] branch master updated (8887bab -> 82e765c),
gnunet <=