epoll_pwait, ppoll, pselect: add to process sigmask

Change-Id: I6aa1db3b4c6ad81a8b5926fa87fc645269b103b6
Refs: #1361
This commit is contained in:
Tomoki Shirasawa
2019-12-25 10:56:44 +09:00
committed by Masamichi Takagi
parent 911b07f507
commit f00d03445c
9 changed files with 362 additions and 6 deletions

13
test/issues/1361/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = gcc
TARGET = C1361T01
all:: $(TARGET)
C452T01: C1361T01.c
$(CC) -g -Wall -o $@ $^
test:: all
sh ./C1361.sh
clean::
rm -f $(TARGET) *.o