• Home
  • Raw
  • Download

Lines Matching refs:thread_id

255 static void copy_registers_from_stack (int thread_id, registers *reg);
259 static void copy_registers_to_stack (int thread_id, registers *reg);
267 static write_stack_register (int thread_id, int regno, char *valptr);
521 copy_registers_from_stack (int thread_id, registers *regptr) in copy_registers_from_stack() argument
524 stack_registers *s = (stack_registers *)stack_list[thread_id]; in copy_registers_from_stack()
529 regptr->sp = (unsigned int)stack_list[thread_id]; in copy_registers_from_stack()
538 copy_registers_to_stack (int thread_id, registers *regptr) in copy_registers_to_stack() argument
541 stack_registers *d = (stack_registers *)stack_list[thread_id]; in copy_registers_to_stack()
592 write_stack_register (int thread_id, int regno, char *valptr) in write_stack_register() argument
595 stack_registers *d = (stack_registers *)stack_list[thread_id]; in write_stack_register()
603 stack_list[thread_id] = val; in write_stack_register()
1140 int thread_id = (int)gdb_cris_strtol (&remcomInBuffer[1], 0, 16); in handle_exception() local
1142 if (thread_id >= 0 && thread_id < number_of_tasks) in handle_exception()
1156 int thread_id = gdb_cris_strtol (&remcomInBuffer[2], 0, 16); in handle_exception() local
1167 if (thread_id >= 0 && thread_id < number_of_tasks) { in handle_exception()
1168 current_thread_g = thread_id; in handle_exception()
1190 int thread_id; in handle_exception() local
1220 for (thread_id = 0; thread_id < number_of_tasks; thread_id++) { in handle_exception()
1224 remcomOutBuffer[pos++] = hex_asc_lo(thread_id); in handle_exception()