mirror of
https://github.com/drasko/codezero.git
synced 2026-06-17 06:14:08 +02:00
Important points: ---------------- 1. Works fine for pb926 + qemu. 2. Scan code logic for kryboard is not complete. We just have generic keys and shift working. 3. Mouse scancodes are collected but not decoded. 4. Right now we are doing enable_irq(), just before we go for waiting again for new irqs. This is not correct but we had latency issues. This needs to be fixed immediately. 5. Also it seems like the notify_clot count should be an atomic variable. Needs to be discussed.
20 lines
397 B
C
Executable File
20 lines
397 B
C
Executable File
#ifndef __THREAD_H__
|
|
#define __THREAD_H__
|
|
|
|
#include <l4lib/macros.h>
|
|
#include L4LIB_INC_ARCH(syslib.h)
|
|
#include L4LIB_INC_ARCH(syscalls.h)
|
|
#include <l4lib/exregs.h>
|
|
#include <l4/api/thread.h>
|
|
|
|
|
|
int thread_create(int (*func)(void *), void *args, unsigned int flags,
|
|
struct task_ids *new_ids);
|
|
|
|
/* For same space */
|
|
#define STACK_SIZE 0x1000
|
|
|
|
#define THREADS_TOTAL 10
|
|
|
|
#endif /* __THREAD_H__ */
|