Searched refs:gate_table_size (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dia64-linux-nat.c884 static long gate_table_size; local
889 if (gate_table_size == 0)
890 gate_table_size = syscall (__NR_getunwind, NULL, 0);
891 if (gate_table_size < 0)
894 if (offset >= gate_table_size)
897 tmp_buf = (gdb_byte *) alloca (gate_table_size);
898 res = syscall (__NR_getunwind, tmp_buf, gate_table_size);
901 gdb_assert (res == gate_table_size);
903 if (offset + len > gate_table_size)
904 len = gate_table_size
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dia64-linux-nat.c882 static long gate_table_size; local
887 if (gate_table_size == 0)
888 gate_table_size = syscall (__NR_getunwind, NULL, 0);
889 if (gate_table_size < 0)
892 if (offset >= gate_table_size)
895 tmp_buf = (gdb_byte *) alloca (gate_table_size);
896 res = syscall (__NR_getunwind, tmp_buf, gate_table_size);
899 gdb_assert (res == gate_table_size);
901 if (offset + len > gate_table_size)
902 len = gate_table_size
[all...]

Completed in 194 milliseconds