minix/lib/libc/posix/Makefile.inc
Thomas Veerman bef0e3eb63 - Add support for the ucontext system calls (getcontext, setcontext,
swapcontext, and makecontext).
- Fix VM to not erroneously think the stack segment and data segment have
  collided when a user-space thread invokes brk().
- Add test51 to test ucontext functionality.
- Add man pages for ucontext system calls.
2010-03-12 15:58:41 +00:00

111 lines
1.4 KiB
Makefile

# posix sources
.PATH: ${.CURDIR}/posix
SRCS+= \
__exit.c \
_access.c \
_alarm.c \
_cfgetispeed.c \
_cfgetospeed.c \
_cfsetispeed.c \
_cfsetospeed.c \
_chdir.c \
_chmod.c \
_chown.c \
_chroot.c \
_close.c \
_closedir.c \
_creat.c \
_dup.c \
_dup2.c \
_execl.c \
_execle.c \
_execlp.c \
_execv.c \
_execve.c \
_execvp.c \
_fchmod.c \
_fchown.c \
_fcntl.c \
_fork.c \
_fpathconf.c \
_fstat.c \
_fstatfs.c \
_fsync.c \
_getcwd.c \
_getegid.c \
_geteuid.c \
_getgid.c \
_getgroups.c \
_getitimer.c \
_getpgrp.c \
_getpid.c \
_getppid.c \
_getuid.c \
_ioctl.c \
_isatty.c \
_kill.c \
_killpg.c \
_link.c \
_lseek.c \
_lstat.c \
_mkdir.c \
_mkfifo.c \
_mknod.c \
_mmap.c \
_nanosleep.c \
_open.c \
_opendir.c \
_pathconf.c \
_pause.c \
_pipe.c \
_ptrace.c \
_read.c \
_readdir.c \
_readlink.c \
_rename.c \
_rewinddir.c \
_rmdir.c \
_select.c \
_setgid.c \
_setitimer.c \
_setsid.c \
_setuid.c \
_sigaction.c \
_sigpending.c \
_sigprocmask.c \
_sigreturn.c \
_sigset.c \
_sigsuspend.c \
_sleep.c \
_stat.c \
_stime.c \
_symlink.c \
_sync.c \
_tcdrain.c \
_tcflow.c \
_tcflush.c \
_tcgetattr.c \
_tcsendbreak.c \
_tcsetattr.c \
_time.c \
_times.c \
_truncate.c \
_ucontext.c \
_umask.c \
_uname.c \
_unlink.c \
_utime.c \
_wait.c \
_waitpid.c \
_write.c \
fnmatch.c \
getloadavg.c \
getopt.c \
gettimeofday.c \
glob.c \
nice.c \
priority.c \
pread.c \
usleep.c