From eb26edb7944667392c05b02fd98ec9157f225281 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Fri, 13 Dec 2013 18:44:48 +0100 Subject: [PATCH] moved definition of tcp_timer_stack to the correct file --- sys/net/destiny/destiny.c | 2 ++ sys/net/destiny/tcp_timer.c | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/destiny/destiny.c b/sys/net/destiny/destiny.c index ea39b01727..9ac5c9b6ad 100644 --- a/sys/net/destiny/destiny.c +++ b/sys/net/destiny/destiny.c @@ -31,6 +31,8 @@ char tcp_stack_buffer[TCP_STACK_SIZE]; char udp_stack_buffer[UDP_STACK_SIZE]; +char tcp_timer_stack[TCP_TIMER_STACKSIZE]; + int destiny_init_transport_layer(void) { printf("Initializing transport layer packages. Size of socket_type: %u\n", diff --git a/sys/net/destiny/tcp_timer.c b/sys/net/destiny/tcp_timer.c index 5fb91e4840..1bbf3a117b 100644 --- a/sys/net/destiny/tcp_timer.c +++ b/sys/net/destiny/tcp_timer.c @@ -31,8 +31,6 @@ #include "tcp_timer.h" -char tcp_timer_stack[TCP_TIMER_STACKSIZE]; - void handle_synchro_timeout(socket_internal_t *current_socket) { msg_t send;