summaryrefslogtreecommitdiff
path: root/pfinet
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-01-03 13:33:04 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-01-03 13:33:04 +0100
commit44a73e25984a2f332d473a8e1187e15bd8774978 (patch)
tree3cd18969246d08da1782798a6444cfbabdb1fb89 /pfinet
parent4f9cbfeaf4421ccb0dd0867664f6d689794ef9f3 (diff)
Make private variables static
* pfinet/timer-emul.c (timers, timer_thread): Make variables static.
Diffstat (limited to 'pfinet')
-rw-r--r--pfinet/timer-emul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pfinet/timer-emul.c b/pfinet/timer-emul.c
index 2053f80f..e2ed3a26 100644
--- a/pfinet/timer-emul.c
+++ b/pfinet/timer-emul.c
@@ -31,8 +31,8 @@
long long root_jiffies;
volatile struct mapped_time_value *mapped_time;
-struct timer_list *timers;
-thread_t timer_thread = 0;
+static struct timer_list *timers;
+static thread_t timer_thread = 0;
static void *
timer_function (void *this_is_a_pointless_variable_with_a_rather_long_name)