mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
- Compiles and Codezero runs as normal without touching mutex implementation - Mutex implementation needs testing. The mutex control syscall allows userspace programs to declare any virtual address as a mutex lock and ask for help from the kernel syscall for resolving locking contentions.
11 lines
255 B
Python
11 lines
255 B
Python
# Inherit global environment
|
|
Import('env')
|
|
Import('config_symbols')
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
src_local = ['kip.c', 'syscall.c', 'thread.c', 'ipc.c', 'space.c', 'mutex.c']
|
|
|
|
obj = env.Object(src_local)
|
|
|
|
Return('obj')
|