Files
codezero/tasks/libposix
Bahadir Balban 7a81db8782 Ongoing work for adding per-thread UTCB structures.
Added setting of utcb address to l4_thread_control.
This is going to be moved to exchange_registers() since we need to pass
both the utcb physical and virtual address and exregs fits such context
modification better than thread_control.
2009-04-29 16:53:04 +03:00
..
2008-05-23 03:59:18 +00:00
2008-11-13 21:45:30 +02:00
2008-09-17 16:55:37 +03:00
2008-04-20 02:12:53 +01:00

libposix

Copyright (C) 2007 Bahadir Balban

Despite the name, this is a library that supports only a small portion of posix functions.


Highest priority POSIX functions are:

shmat
shmget
shmdt
mmap
munmap
sbrk
read
readdir
write
lseek
open
close
creat
mkdir
mknod
link
unlink
fork
clone
execve
getpid
wait
kill
getenv
setenv


Currently supported functions are:

shmat
shmget
shmdt
mmap
munmap
read
readdir
write
lseek
open
close
creat
mkdir
mknod
fork
clone
execve
exit
getpid


Functions to be supported in the near future are:

link
unlink
wait
kill
sbrk
getenv
setenv


Other calls:
pipe
mount
unmount
swapon


New ones will be added as needed.