1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #1574 from Kijewski/native-sched_active_thread

native: remove redeclarations of sched_active_thread
This commit is contained in:
Ludwig Ortmann 2014-08-14 18:27:22 +02:00
commit de039b0ec6
3 changed files with 0 additions and 6 deletions

View File

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

View File

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

View File

@ -47,8 +47,6 @@
#endif
#include "debug.h"
extern volatile tcb_t *sched_active_thread;
ssize_t (*real_read)(int fd, 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);