summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 18:00:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 18:00:15 +0000
commit799c767d319d65c94b3770e82490c8dd4dc80378 (patch)
treebf9909c7f3ae617a34e401a0f88dc314f982f772 /c/src/exec/posix/src/Makefile.in
parentSplit some more stuff out of psignal.c. (diff)
downloadrtems-799c767d319d65c94b3770e82490c8dd4dc80378.tar.bz2
Split the POSIX semaphore manager into multiple files.
Diffstat (limited to 'c/src/exec/posix/src/Makefile.in')
-rw-r--r--c/src/exec/posix/src/Makefile.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/c/src/exec/posix/src/Makefile.in b/c/src/exec/posix/src/Makefile.in
index c6d55c73e2..a27b1416e6 100644
--- a/c/src/exec/posix/src/Makefile.in
+++ b/c/src/exec/posix/src/Makefile.in
@@ -14,10 +14,10 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@
# following are semi-implemented and untested
-# C_PIECES=aio cancel devctl intr mqueue semaphore utsname
+# C_PIECES=aio cancel devctl intr utsname
# These are really in the stand but not really functional
-BUILD_FOR_NOW_C_PIECES = aio cancel mqueue semaphore utsname
+BUILD_FOR_NOW_C_PIECES = aio cancel utsname
ENOSYS_C_PIECES = execl execle execlp execv execve execvp fork pthreadatfork \
wait waitpid
@@ -53,9 +53,15 @@ PSIGNAL_C_PIECES = psignal alarm kill killinfo pause \
sigismember sigpending sigprocmask sigqueue sigsuspend sigtimedwait \
sigwait sigwaitinfo signal_2
+SEMAPHORE_C_PIECES= semaphore semaphorecreatesupp semaphoredeletesupp \
+ semaphoremp semaphorenametoid semaphorewaitsupp semdestroy \
+ semgetvalue seminit semopen sempost semtimedwait semtrywait \
+ semunlink semwait
+
C_PIECES = adasupp cond getpid key $(MESSAGE_QUEUE_PIECES) \
$(MUTEX_C_PIECES) $(PTHREAD_C_PIECES) \
- $(PSIGNAL_C_PIECES) ptimer sched time types unistd $(ENOSYS_C_PIECES) \
+ $(PSIGNAL_C_PIECES) ptimer sched $(SEMAPHORE_C_PIECES) \
+ time types unistd $(ENOSYS_C_PIECES) \
$(BUILD_FOR_NOW_C_PIECES)
C_FILES = $(C_PIECES:%=%.c)