Comment 9 for bug 884181

Revision history for this message
Richard Marks (richmarks) wrote :

After some further playing around I'm able to reproduce this on the affected instance type with the following code:

#include <unistd.h>
#include <signal.h>

int main(void) {
  pid_t pid;

  pid = fork();
  if (pid == 0) {
    sleep(50);
  } else {
    kill(pid, SIGTERM);
  }
}