summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-01-31 20:45:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-01-31 20:45:31 +0000
commit07d880f4bccd3d5f26fb729ca3fca5f6bed081d3 (patch)
treeaed075a8265065601128cfd8da3b946190292f0d /c/src/exec/posix/src/Makefile.in
parentNew files added to ease debugging. (diff)
downloadrtems-07d880f4bccd3d5f26fb729ca3fca5f6bed081d3.tar.bz2
Split psignal.c into many more files. This reduced the amount of
object code that has to be loaded just for initializing the signal manager.
Diffstat (limited to 'c/src/exec/posix/src/Makefile.in')
-rw-r--r--c/src/exec/posix/src/Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/c/src/exec/posix/src/Makefile.in b/c/src/exec/posix/src/Makefile.in
index 20d6abf580..f8148aca0e 100644
--- a/c/src/exec/posix/src/Makefile.in
+++ b/c/src/exec/posix/src/Makefile.in
@@ -29,8 +29,16 @@ PTHREAD_PIECES=\
pthreadattrgetinheritsched pthreadattrsetinheritsched \
pthreadattrgetscope pthreadattrsetscope
-C_PIECES= adasupp cond getpid key mutex $(PTHREAD_PIECES) psignal sched time \
+PSIGNAL_PIECES=\
+ psignal alarm kill killinfo pause pthreadkill pthreadsigmask \
+ sigaction sigaddset sigdelset sigemptyset sigfillset sigismember \
+ sigpending sigprocmask sigqueue sigsuspend sigtimedwait sigwait \
+ sigwaitinfo
+
+C_PIECES= adasupp cond getpid key mutex $(PTHREAD_PIECES) \
+ $(PSIGNAL_PIECES) sched time \
types unistd $(ENOSYS_C_PIECES)
+
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)