aboutsummaryrefslogtreecommitdiff
path: root/include/globals.h
blob: 0b3eaedd30753fd3a3b4c8c0b4a40e4bc88a5815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef GLOBALS_H
#define GLOBALS_H
#include <lib/mem.h>
#include <sys/schedule.h>

#ifndef GLOBALS_C
extern unsigned long cntfrq;
extern unsigned long cmdidx;
extern char cmd[2048];

extern char* os_info_v;
extern unsigned long exe_cnt;
extern struct Mutex exe_cnt_m;
extern unsigned char rpi_heap[MAX_MM];
extern void* rpi_heap_top;
extern unsigned long nextpid;
extern unsigned long stimel;
extern unsigned long stimeh;
extern struct Drawer g_Drawer;
extern struct Scheduler scheduler;
extern unsigned long svcsp;
extern struct cpu_context svccpu;
extern unsigned int gwidth, gheight, gpitch, gisrgb;
extern unsigned char stacks_table[MAX_THREADS];
#endif

#endif