migrate: Don't migrate on in-kernel interrupt
Change-Id: I9c07e0d633687ce232ec3cd0c80439ca2e856293 Refs: #1555
This commit is contained in:
committed by
Masamichi Takagi
parent
583319125a
commit
93dafc5f79
18
test/issues/1555/Makefile
Normal file
18
test/issues/1555/Makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
CC=gcc
|
||||
CFLAGS=-g
|
||||
LDFLAGS=
|
||||
|
||||
TARGET=C1555T01 C1555T02
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
C1555T01: C1555.c
|
||||
$(CC) -o $@ $^
|
||||
|
||||
C1555T02: C1555.c
|
||||
$(CC) -DMIGRATE_ON_OFFLOAD -o $@ $^
|
||||
|
||||
test: all
|
||||
sh ./C1555.sh
|
||||
clean:
|
||||
rm -f $(TARGET) *.o *.txt
|
||||
Reference in New Issue
Block a user