HomeSort by: relevance | last modified time | path
    Searched defs:gate_table_size (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/
ia64-linux-nat.c 874 static long gate_table_size; local
879 if (gate_table_size == 0)
880 gate_table_size = syscall (__NR_getunwind, NULL, 0);
881 if (gate_table_size < 0)
884 if (offset >= gate_table_size)
887 tmp_buf = (gdb_byte *) alloca (gate_table_size);
888 res = syscall (__NR_getunwind, tmp_buf, gate_table_size);
891 gdb_assert (res == gate_table_size);
893 if (offset + len > gate_table_size)
894 len = gate_table_size - offset
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
ia64-linux-nat.c 881 static long gate_table_size; local
886 if (gate_table_size == 0)
887 gate_table_size = syscall (__NR_getunwind, NULL, 0);
888 if (gate_table_size < 0)
891 if (offset >= gate_table_size)
894 tmp_buf = (gdb_byte *) alloca (gate_table_size);
895 res = syscall (__NR_getunwind, tmp_buf, gate_table_size);
898 gdb_assert (res == gate_table_size);
900 if (offset + len > gate_table_size)
901 len = gate_table_size - offset
    [all...]

Completed in 23 milliseconds