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);
  }
}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/884181

Title:
  Running gdb causes "alignment check: 0000" error on 64-bit EC2
  t1.micro instances

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/884181/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to