sys_sigprocmask: the second method parameter has to be the cpu instance (#229)

This commit is contained in:
Samuel Groß 2017-05-05 18:33:42 +02:00 committed by feliam
parent 64d1ed51f2
commit d9baedeeac

View File

@ -1185,7 +1185,7 @@ class Linux(object):
logger.debug("SIGACTION, Ignoring changing signal handler for signal %d", signum)
return 0
def sys_sigprocmask(self, how, newset, oldset):
def sys_sigprocmask(self, cpu, how, newset, oldset):
logger.debug("SIGACTION, Ignoring changing signal mask set cmd:%d", how)
return 0