native: remove redeclarations of sched_active_thread

This commit is contained in:
René Kijewski 2014-08-13 09:10:11 +02:00
parent 7681e594b9
commit a79d9c8562
3 changed files with 0 additions and 6 deletions

View File

@ -45,8 +45,6 @@
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
extern volatile tcb_t *sched_active_thread;
volatile int native_interrupts_enabled; volatile int native_interrupts_enabled;
volatile int _native_in_isr; volatile int _native_in_isr;
volatile int _native_in_syscall; volatile int _native_in_syscall;

View File

@ -57,8 +57,6 @@
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
extern volatile tcb_t *sched_active_thread;
ucontext_t end_context; ucontext_t end_context;
char __end_stack[SIGSTKSZ]; char __end_stack[SIGSTKSZ];

View File

@ -47,8 +47,6 @@
#endif #endif
#include "debug.h" #include "debug.h"
extern volatile tcb_t *sched_active_thread;
ssize_t (*real_read)(int fd, void *buf, size_t count); ssize_t (*real_read)(int fd, void *buf, size_t count);
ssize_t (*real_write)(int fd, const void *buf, size_t count); ssize_t (*real_write)(int fd, const void *buf, size_t count);
size_t (*real_fread)(void *ptr, size_t size, size_t nmemb, FILE *stream); size_t (*real_fread)(void *ptr, size_t size, size_t nmemb, FILE *stream);