Libunwind: Ignore [vsyscall] map

Ignore the vsyscall map on newer Linux hosts.

Test: m
Change-Id: I46391083d5cc7e46aeee20f9bf6b151290daad28
diff --git a/src/os-linux.c b/src/os-linux.c
index 8dc1ebf..0f914f2 100644
--- a/src/os-linux.c
+++ b/src/os-linux.c
@@ -78,6 +78,7 @@
       /* If this is a readable executable map, and not a stack map or an
          empty map, find the load_base.  */
       if (cur_map->path[0] != '\0' && strncmp ("[stack:", cur_map->path, 7) != 0
+          && strncmp ("[vsyscall]", cur_map->path, 10) != 0
           && (flags & (PROT_EXEC | PROT_READ)) == (PROT_EXEC | PROT_READ)
           && !(cur_map->flags & MAP_FLAGS_DEVICE_MEM))
         {