From: Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Date: Mon, 23 May 2011 06:34:21 +0000 (+0200)
Subject: Spell sig_atomic_t as std::sig_atomic_t.
X-Git-Tag: v0.1~62^2~16
X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/785641a0937a8e0bec6a0af7f6753ba7793da309?hp=1017c5419ee314344cc11741052e51eca59b846e

Spell sig_atomic_t as std::sig_atomic_t.
---

diff --git a/options.cpp b/options.cpp
index 373f4c6..3eed8a2 100644
--- a/options.cpp
+++ b/options.cpp
@@ -39,7 +39,7 @@ namespace opt {
 
     // Simulation parameters
     int log_rate = 1;
-    volatile sig_atomic_t exit_request = 0;
+    volatile std::sig_atomic_t exit_request = 0;
 
     // Platform and deployment
     std::string platform_file;
diff --git a/options.h b/options.h
index 35334a5..0c69e11 100644
--- a/options.h
+++ b/options.h
@@ -1,7 +1,7 @@
 #ifndef OPTIONS_H
 #define OPTIONS_H
 
-#include <csignal>              // sig_atomic_t
+#include <csignal>              // std::sig_atomic_t
 #include <string>
 #include "cost_func.h"
 #include "named_object_list.h"
@@ -24,7 +24,7 @@ namespace opt {
 
     // Simulation parameters
     extern int log_rate;
-    extern volatile sig_atomic_t exit_request;
+    extern volatile std::sig_atomic_t exit_request;
 
     // Platform and deployment
     extern std::string platform_file;