summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/Makefile.in
diff options
context:
space:
mode:
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)