follow-up to 7c14b80a011e9e99b1cef0bfd96bae364edd5663:
authorng0 <ng0@n0.is>
Wed, 20 Nov 2019 13:28:01 +0000 (13:28 +0000)
committerng0 <ng0@n0.is>
Wed, 20 Nov 2019 13:28:01 +0000 (13:28 +0000)
use __linux__ instead of redefined LINUX.

24 files changed:
src/arm/gnunet-service-arm.c
src/include/platform.h
src/nat-auto/gnunet-nat-server.c
src/nat-auto/gnunet-service-nat-auto.c
src/nat/gnunet-service-nat.c
src/nse/gnunet-service-nse.c
src/regex/gnunet-daemon-regexprofiler.c
src/revocation/gnunet-service-revocation.c
src/statistics/gnunet-service-statistics.c
src/testbed/gnunet-service-testbed_cpustatus.c
src/topology/gnunet-daemon-topology.c
src/transport/gnunet-communicator-unix.c
src/transport/gnunet-helper-transport-bluetooth.c
src/transport/plugin_transport_tcp.c
src/transport/plugin_transport_udp_broadcasting.c
src/transport/plugin_transport_unix.c
src/transport/tcp_connection_legacy.c
src/transport/tcp_service_legacy.c
src/transport/test_transport_api_reliability.c
src/util/disk.c
src/util/gnunet-service-resolver.c
src/util/network.c
src/util/os_installation.c
src/util/test_bio.c

index 01bc489609c7fa5bb2bfce4b279baec73d2ea6c4..09d85ca89946e8e9c2f78d393f68547d82df8d6c 100644 (file)
@@ -301,7 +301,7 @@ add_unixpath (struct sockaddr **saddrs,
   un = GNUNET_new (struct sockaddr_un);
   un->sun_family = AF_UNIX;
   GNUNET_strlcpy (un->sun_path, unixpath, sizeof(un->sun_path));
-#ifdef LINUX
+#ifdef __linux__
   if (GNUNET_YES == abstract)
     un->sun_path[0] = '\0';
 #endif
@@ -455,7 +455,7 @@ get_server_addresses (const char *service_name,
       unixpath = GNUNET_NETWORK_shorten_unixpath (unixpath);
       LOG (GNUNET_ERROR_TYPE_INFO, _ ("Using `%s' instead\n"), unixpath);
     }
-#ifdef LINUX
+#ifdef __linux__
     abstract = GNUNET_CONFIGURATION_get_value_yesno (cfg,
                                                      "TESTING",
                                                      "USE_ABSTRACT_SOCKETS");
@@ -1081,7 +1081,7 @@ create_listen_socket (struct sockaddr *sa,
     return;
   }
   if ((AF_UNIX == sa->sa_family)
-#ifdef LINUX
+#ifdef __linux__
       /* Permission settings are not required when abstract sockets are used */
       && ('\0' != ((const struct sockaddr_un *) sa)->sun_path[0])
 #endif
@@ -2188,7 +2188,7 @@ main (int argc, char *const *argv)
 }
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 976c9eac7a19dddee009c6276922a2dc85a76975..0cf4c9e5e8162d3058a23e9064218d3d6e892caa 100644 (file)
 #include <semaphore.h>
 #include <net/if.h>
 #endif
-#if defined(LINUX) || defined(GNU)
+#if defined(__linux__) || defined(GNU)
 #include <net/if.h>
 #endif
 #ifdef SOLARIS
index 499893c701d3d291c01423adc164d7bae8c478d6..b462b486f5828adefc84c504783faf7cbdcb22ca 100644 (file)
@@ -381,7 +381,7 @@ GNUNET_SERVICE_MAIN
   GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 51c82f6b3568f24a11e167f599bf14216500f7c9..7d7c732a0666dac514cf86ab4ac0abe3126e314c 100644 (file)
@@ -468,7 +468,7 @@ GNUNET_SERVICE_MAIN
   GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 9a70622c4917f1c1c9003187f5b457d68ed8057d..3b7d48c82a128d1b9dc8c8ffd87f12b97d7a46c2 100644 (file)
@@ -2063,7 +2063,7 @@ GNUNET_SERVICE_MAIN
   GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index d16abed719fce2021e3f7f01973b2d86fa88e7c1..fa9a2e9502b4ebaf776c2262721d8bc7114eec0c 100644 (file)
@@ -1579,7 +1579,7 @@ GNUNET_SERVICE_MAIN ("nse",
                      GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index fb061acc1897b53d5ab917dad74991c0713ff932..eda58fdd260d5232a6e9bae4df71a97f24735554 100644 (file)
@@ -386,7 +386,7 @@ main (int argc, char *const *argv)
 }
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 456b3834aee8cc11b133268b1db9b32d281a5afe..51286f49be8b8b88d18e44bc9ca7d41b9f9d0c67 100644 (file)
@@ -946,7 +946,7 @@ GNUNET_SERVICE_MAIN
   GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index ba6a614c81d054e4a1c597ff54c3b659c7b8de54..5d58c3743844b92ddce05007bbaa0b280bd3f5c1 100644 (file)
@@ -1042,7 +1042,7 @@ GNUNET_SERVICE_MAIN (
   GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 5eaeaf952e6543363f623b8ad958d134190d0d62..cd18784679a4de412c3e58a38638249fa21990b8 100644 (file)
@@ -57,7 +57,7 @@ static processor_cpu_load_info_t prev_cpu_load;
 
 #define DEBUG_STATUSCALLS GNUNET_NO
 
-#ifdef LINUX
+#ifdef __linux__
 static FILE *proc_stat;
 #endif
 
@@ -133,7 +133,7 @@ updateUsage ()
 {
   currentIOLoad = -1;
   currentCPULoad = -1;
-#ifdef LINUX
+#ifdef __linux__
   /* under linux, first try %idle/usage using /proc/stat;
      if that does not work, disable /proc/stat for the future
      by closing the file and use the next-best method. */
@@ -509,7 +509,7 @@ mem_get_usage ()
 }
 
 
-#ifdef LINUX
+#ifdef __linux__
 #include <dirent.h>
 /**
  * Returns the number of processes
@@ -557,7 +557,7 @@ sample_load_task (void *cls)
   if ((-1 == ld_cpu) || (-1 == ld_disk))
     goto reschedule;
   mem_usage = mem_get_usage ();
-#ifdef LINUX
+#ifdef __linux__
   nproc = get_nproc ();
 #else
   nproc = 0;
@@ -622,7 +622,7 @@ GST_stats_init (const struct GNUNET_CONFIGURATION_Handle *cfg)
   }
   GNUNET_free (fn);
   sample_load_task_id = GNUNET_SCHEDULER_add_now (&sample_load_task, NULL);
-#ifdef LINUX
+#ifdef __linux__
   proc_stat = fopen ("/proc/stat", "r");
   if (NULL == proc_stat)
     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
@@ -642,7 +642,7 @@ GST_stats_destroy ()
 {
   if (NULL == bw)
     return;
-#ifdef LINUX
+#ifdef __linux__
   if (proc_stat != NULL)
   {
     fclose (proc_stat);
index 1b6004392c464598240e1fb5af36c24ea110f0a8..261d825ea4e2e8d023c228088556f988bd65a100 100644 (file)
@@ -1135,7 +1135,7 @@ main (int argc, char *const *argv)
 }
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 2cfb802e37236211c73bbcdc248c8672678cef1b..58a144ecbd81f7ab2e10cbf642a21c6771d7fa10 100644 (file)
@@ -1105,7 +1105,7 @@ main (int argc, char *const *argv)
 }
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 74806e6301d3a7b52e69616b63f7d060ea7cf888..975af7068f04b1efdf12c734a61a95ceb5eea19a 100644 (file)
@@ -115,7 +115,7 @@ struct SendBuffer
   char buf[MAXLINE * 2];
 };
 
-#ifdef LINUX
+#ifdef __linux__
 /**
  * Devices buffer used to keep a list with all the discoverable devices in
  * order to send them HELLO messages one by one when it receive a broadcast message.
@@ -567,7 +567,7 @@ check_crc_buf_osdep (const unsigned char *buf, size_t len)
 
 
 /* ************** end of clone  ***************** */
-#ifdef LINUX
+#ifdef __linux__
 /**
  * Function for assigning a port number
  *
@@ -795,7 +795,7 @@ read_from_the_socket (void *sock,
     return -1;
   }
 
-  #ifdef LINUX
+  #ifdef __linux__
   /* Get the channel used */
   int len;
   struct sockaddr_rc rc_addr = { 0 };
@@ -1012,7 +1012,7 @@ mac_set (struct GNUNET_TRANSPORT_WLAN_Ieee80211Frame *taIeeeHeader,
 }
 
 
-#ifdef LINUX
+#ifdef __linux__
 /**
  * Test if the given interface name really corresponds to a bluetooth
  * device.
@@ -1117,7 +1117,7 @@ stdin_send_hw (void *cls, const struct GNUNET_MessageHeader *hdr)
 }
 
 
-#ifdef LINUX
+#ifdef __linux__
 /**
  * Broadcast a HELLO message for peer discovery
  *
@@ -1382,7 +1382,7 @@ inquiry_devices:      // skip the conditions and force a inquiry for new devices
 int
 main (int argc, char *argv[])
 {
-#ifdef LINUX
+#ifdef __linux__
   struct HardwareInfos dev;
   char readbuf[MAXLINE];
   int maxfd;
index ad0766af91ef0462ac40cb1553c0b32a2253ea55..4cec181b0b3957e825bbacdbfdb7e715fd88c405 100644 (file)
@@ -1166,7 +1166,7 @@ get_server_addresses (const char *service_name,
       unixpath = GNUNET_NETWORK_shorten_unixpath (unixpath);
       LOG (GNUNET_ERROR_TYPE_INFO, _ ("Using `%s' instead\n"), unixpath);
     }
-#ifdef LINUX
+#ifdef __linux__
     abstract = GNUNET_CONFIGURATION_get_value_yesno (cfg,
                                                      "TESTING",
                                                      "USE_ABSTRACT_SOCKETS");
index c85124b68bd83f41d943dd0c0f06465c322950ee..5e72fad096e7837d0b2cbd9f482804270e331b68 100644 (file)
@@ -41,7 +41,7 @@
 #define LOG(kind, ...) GNUNET_log_from (kind, "transport-udp", __VA_ARGS__)
 
 /* *********** Cryogenic ********** */
-#if LINUX
+#if __linux__
 #include <sys/stat.h>
 #include <fcntl.h>
 
@@ -92,7 +92,7 @@ struct BroadcastAddress
 
   socklen_t addrlen;
 
-#if LINUX
+#if __linux__
   /**
    * Cryogenic handle.
    */
@@ -277,7 +277,7 @@ udp_ipv4_broadcast_send (void *cls)
     }
   }
 
-#if LINUX
+#if __linux__
   /*
    * Cryogenic
    */
@@ -359,7 +359,7 @@ udp_ipv6_broadcast_send (void *cls)
          GNUNET_a2s ((const struct sockaddr *) &plugin->ipv6_multicast_address,
                      sizeof(struct sockaddr_in6)));
   }
-#if LINUX
+#if __linux__
   /*
    * Cryogenic
    */
@@ -448,7 +448,7 @@ iface_proc (void *cls,
       (NULL != plugin->sockv4) &&
       (addrlen == sizeof(struct sockaddr_in)))
   {
-#if LINUX
+#if __linux__
     /*
      * setup Cryogenic FD for ipv4 broadcasting
      */
@@ -503,7 +503,7 @@ iface_proc (void *cls,
     }
     else
     {
-#if LINUX
+#if __linux__
       /*
        * setup Cryogenic FD for ipv6 broadcasting
        */
@@ -632,7 +632,7 @@ stop_broadcast (struct Plugin *plugin)
         }
       }
 
-#if LINUX
+#if __linux__
       GNUNET_DISK_file_close (p->cryogenic_fd);
 #endif
       GNUNET_CONTAINER_DLL_remove (plugin->broadcast_head,
index 083a1cf7ff64cb71f64b90a3abe398bbf00cf6e6..9d3e7d35458c80f9e95e906e5d5f373f62f36b27 100644 (file)
@@ -1755,7 +1755,7 @@ libgnunet_plugin_transport_unix_init (void *cls)
   plugin->env = env;
 
   /* Initialize my flags */
-#ifdef LINUX
+#ifdef __linux__
   plugin->is_abstract =
     GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg,
                                           "testing",
index 8eea664c45e3e3c034b52759bc3d0a8b399f6a8b..4e8c8140d94ad029de61ef98fd3483a99174380b 100644 (file)
@@ -876,7 +876,7 @@ GNUNET_CONNECTION_create_from_connect_to_unixpath (
   un = GNUNET_new (struct sockaddr_un);
   un->sun_family = AF_UNIX;
   GNUNET_strlcpy (un->sun_path, unixpath, sizeof(un->sun_path));
-#ifdef LINUX
+#ifdef __linux__
   {
     int abstract;
 
index 54020b642ddd51499b89575ce9aae1c9a81679a8..f207863f906bfcbc8a8f4c0d1a5d09475acbc1aa 100644 (file)
@@ -482,7 +482,7 @@ add_unixpath (struct sockaddr **saddrs,
   un = GNUNET_new (struct sockaddr_un);
   un->sun_family = AF_UNIX;
   GNUNET_strlcpy (un->sun_path, unixpath, sizeof(un->sun_path));
-#ifdef LINUX
+#ifdef __linux__
   if (GNUNET_YES == abstract)
     un->sun_path[0] = '\0';
 #endif
@@ -637,7 +637,7 @@ LEGACY_SERVICE_get_server_addresses (
       unixpath = GNUNET_NETWORK_shorten_unixpath (unixpath);
       LOG (GNUNET_ERROR_TYPE_INFO, _ ("Using `%s' instead\n"), unixpath);
     }
-#ifdef LINUX
+#ifdef __linux__
     abstract = GNUNET_CONFIGURATION_get_value_yesno (cfg,
                                                      "TESTING",
                                                      "USE_ABSTRACT_SOCKETS");
index d8fd2046dfc7577e769e5307dc2296b966d6ec0e..058d7d8bf315e3d64d541ea957b03acca17179d2 100644 (file)
@@ -89,7 +89,7 @@ get_size (unsigned int iter)
   size_t ret;
 
   ret = (iter * iter * iter);
-#ifndef LINUX
+#ifndef __linux__
   /* FreeBSD/OSX etc. Unix DGRAMs do not work
    * with large messages */
   if (0 == strcmp ("unix", ccc->test_plugin))
index 866dbc301bcd3f04fdd7d5058ac9d0f8221090c8..2d5e353c810eb67af2689669a78e46f7358ea629 100644 (file)
@@ -1505,7 +1505,7 @@ GNUNET_DISK_file_sync (const struct GNUNET_DISK_FileHandle *h)
     return GNUNET_SYSERR;
   }
 
-#if ! defined(LINUX) || ! defined(GNU)
+#if ! defined(__linux__) || ! defined(GNU)
   return fsync (h->fd) == -1 ? GNUNET_SYSERR : GNUNET_OK;
 #else
   return fdatasync (h->fd) == -1 ? GNUNET_SYSERR : GNUNET_OK;
index c82a18ab8440776e266d50c6215c02c91a463f61..357453da731e1e72189d10d739ee32ebb72cdf36 100644 (file)
@@ -1362,7 +1362,7 @@ GNUNET_SERVICE_MAIN (
   GNUNET_MQ_handler_end ());
 
 
-#if defined(LINUX) && defined(__GLIBC__)
+#if defined(__linux__) && defined(__GLIBC__)
 #include <malloc.h>
 
 /**
index 2b407d97c53131fd0819cdf978d613090013f327..52ae3d2c7a41c66ee7b195bdb687508308deadb4 100644 (file)
@@ -962,7 +962,7 @@ GNUNET_NETWORK_socket_disable_corking (struct GNUNET_NETWORK_Handle *desc)
 {
   int ret = 0;
 
-#if LINUX
+#if __linux__
   int value = 0;
 
   if (0 !=
index 7aa4d125440b330e10004f57e0a84f79c702b395..846ceeeece04861ef105e6c5dffc48a9231bd3fc 100644 (file)
@@ -134,7 +134,7 @@ GNUNET_OS_init (const struct GNUNET_OS_ProjectData *pd)
 }
 
 
-#if LINUX
+#if __linux__
 /**
  * Try to determine path by reading /proc/PID/exe
  *
@@ -383,7 +383,7 @@ os_get_gnunet_path ()
 
   if (NULL != (ret = get_path_from_GNUNET_PREFIX ()))
     return ret;
-#if LINUX
+#if __linux__
   if (NULL != (ret = get_path_from_proc_maps ()))
     return ret;
   /* try path *first*, before /proc/exe, as /proc/exe can be wrong */
@@ -421,7 +421,7 @@ os_get_exec_path ()
 {
   char *ret = NULL;
 
-#if LINUX
+#if __linux__
   if (NULL != (ret = get_path_from_proc_exe ()))
     return ret;
 #endif
index 8ff93c168a8b907fbb19e7df078d0ae8bd36de0a..13ae1cf56336ee0ebaea2fcab184dd1675390413 100644 (file)
@@ -200,7 +200,7 @@ test_bigmeta_rw ()
 static int
 test_directory_r ()
 {
-#if LINUX
+#if __linux__
   char *msg;
   char readResult[200];
   struct GNUNET_BIO_ReadHandle *fileR;
@@ -244,7 +244,7 @@ test_nullfile_rw ()
 static int
 test_fullfile_rw ()
 {
-#ifdef LINUX
+#ifdef __linux__
   /* /dev/full only seems to exist on Linux */
   char *msg;
   int64_t testNum;