SIGCONT: don't terminate process
Change-Id: Ib959a9e5341fda37bd055724ecb9319a469b7420 Refs: #1410
This commit is contained in:
committed by
Masamichi Takagi
parent
adb6cce3ce
commit
4b252a990f
20
test/issues/1410+1420/Makefile
Normal file
20
test/issues/1410+1420/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
CC = gcc
|
||||
TARGET = C1410T01 C1420T01
|
||||
|
||||
all:: $(TARGET)
|
||||
|
||||
C1410T01: C1410T01.c
|
||||
if [ `uname -m` = x86_64 ]; then \
|
||||
$(CC) -g -Wall -o $@ $^ -lpthread ;\
|
||||
else \
|
||||
$(CC) -DPAUSE_INST=\"yield\" -g -Wall -o $@ $^ -lpthread ;\
|
||||
fi
|
||||
|
||||
C1420T01: C1420T01.c
|
||||
$(CC) -g -Wall -o $@ $^
|
||||
|
||||
test:: all
|
||||
sh ./C1410.sh
|
||||
|
||||
clean::
|
||||
rm -f $(TARGET) *.o
|
||||
Reference in New Issue
Block a user