Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 712568
Collapse All | Expand All

(-)a/dbus-proxy.c (+10 lines)
Lines 31-36 Link Here
31
31
32
#include "flatpak-proxy.h"
32
#include "flatpak-proxy.h"
33
33
34
/* taken from glibc unistd.h and fixes musl */
35
#ifndef TEMP_FAILURE_RETRY
36
#define TEMP_FAILURE_RETRY(expression) \
37
  (__extension__                                                              \
38
    ({ long int __result;                                                     \
39
       do __result = (long int) (expression);                                 \
40
       while (__result == -1L && errno == EINTR);                             \
41
       __result; }))
42
#endif
43
34
static const char *argv0;
44
static const char *argv0;
35
static GList *proxies;
45
static GList *proxies;
36
static int sync_fd = -1;
46
static int sync_fd = -1;

Return to bug 712568