Libunwind: Ignore [vsyscall] map am: 0c1a9cab2f am: f9e1920771
am: 9ed960a358

Change-Id: I4f0d2736420bbd5fe98d64b29cfe5e52985d7309
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))
         {