summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-01-25 23:20:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-01-25 23:20:52 +0000
commit03598b162e66b6f3df8d9ed55ac18865c5ad2a22 (patch)
tree46278571b5897f389d05c312b444c8776e18792a /c/src/exec/posix/src/Makefile.in
parentAdded enough prototypes to allow most of POSIX Threads Manager to be (diff)
downloadrtems-03598b162e66b6f3df8d9ed55ac18865c5ad2a22.tar.bz2
Split most of POSIX Threads Manager into multiple files.
Diffstat (limited to 'c/src/exec/posix/src/Makefile.in')
-rw-r--r--c/src/exec/posix/src/Makefile.in16
1 files changed, 15 insertions, 1 deletions
diff --git a/c/src/exec/posix/src/Makefile.in b/c/src/exec/posix/src/Makefile.in
index f5864775d3..20d6abf580 100644
--- a/c/src/exec/posix/src/Makefile.in
+++ b/c/src/exec/posix/src/Makefile.in
@@ -15,7 +15,21 @@ ENOSYS_C_PIECES=\
execl execle execlp execv execve execvp fork \
pthreadatfork wait waitpid
-C_PIECES= adasupp cond getpid key mutex pthread psignal sched time \
+PTHREAD_PIECES=\
+ pthread pthreadsetcputime pthreadgetcputime pthreadgetcpuclockid \
+ pthreadonce pthreadequal pthreadself pthreadexit pthreaddetach \
+ pthreadjoin pthreadcreate \
+ pthreadattrsetdetachstate pthreadattrgetdetachstate \
+ pthreadattrgetstackaddr pthreadattrsetstackaddr \
+ pthreadattrgetstacksize pthreadattrsetstacksize \
+ pthreadattrinit pthreadattrdestroy \
+ pthreadsetschedparam pthreadgetschedparam \
+ pthreadattrsetschedparam pthreadattrgetschedparam \
+ pthreadattrgetschedpolicy pthreadattrsetschedpolicy \
+ pthreadattrgetinheritsched pthreadattrsetinheritsched \
+ pthreadattrgetscope pthreadattrsetscope
+
+C_PIECES= adasupp cond getpid key mutex $(PTHREAD_PIECES) psignal sched time \
types unistd $(ENOSYS_C_PIECES)
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)