syscall: the signal received during system call processing is not processed.

Refs: #1176
Fujitsu: POSTK_DEBUG_TEMP_FIX_56
Change-Id: I410160ccbcef3ef49a0e37611a608bc87c97e63b
This commit is contained in:
Tomoki Shirasawa
2018-09-07 14:54:45 +09:00
committed by Masamichi Takagi
parent e4da71010c
commit 5e760db417
10 changed files with 485 additions and 22 deletions

19
test/issues/1176/Makefile Normal file
View File

@ -0,0 +1,19 @@
CC=gcc
TARGET=C1176T02 C1176T03 C1176T04
all:: $(TARGET)
C1176T02: C1176T02.c
$(CC) -g -Wall -o $@ $^
C1176T03: C1176T03.c
$(CC) -g -Wall -o $@ $^
C1176T04: C1176T04.c
$(CC) -g -Wall -o $@ $^
test:: $(TARGET)
sh ./C1176.sh
clean::
rm -f $(TARGET) *.o