• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


コミットメタ情報

リビジョン0d8328aee82dc669c7eced6a530752c787f016ec (tree)
日時2008-10-08 04:01:26
作者Michael Snyder <msnyder@vmwa...>
コミッターMichael Snyder

ログメッセージ

2008-10-07 Michael Snyder <msnyder@vmware.com>

* infrun.c (stepped_into_function): Rename handle_step_into_function.
(stepped_into_function_backward):
Rename handle_step_into_function_backward.

変更サマリ

差分

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
11 2008-10-07 Michael Snyder <msnyder@vmware.com>
22
3+ * infrun.c (stepped_into_function): Rename handle_step_into_function.
4+ (stepped_into_function_backward):
5+ Rename handle_step_into_function_backward.
6+
37 * reverse.c: Update copyright.
48 (exec_reverse_once): Add function header comment.
59 (_initialize_reverse): Use i18n macros for set exec-direction.
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -1468,8 +1468,8 @@ void init_execution_control_state (struct execution_control_state *ecs);
14681468
14691469 void handle_inferior_event (struct execution_control_state *ecs);
14701470
1471-static void stepped_into_function (struct execution_control_state *ecs);
1472-static void stepped_into_function_backward (struct execution_control_state *ecs);
1471+static void handle_step_into_function (struct execution_control_state *ecs);
1472+static void handle_step_into_function_backward (struct execution_control_state *ecs);
14731473 static void insert_step_resume_breakpoint_at_frame (struct frame_info *step_frame);
14741474 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
14751475 static void insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
@@ -3244,13 +3244,10 @@ infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (!gdbarch_get_longjmp_target)\n");
32443244 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
32453245 if (tmp_sal.line != 0)
32463246 {
3247- /* Find start of appropriate source line (either first or
3248- last line in callee, depending on execution
3249- direction). */
32503247 if (target_get_execution_direction () == EXEC_REVERSE)
3251- stepped_into_function_backward (ecs);
3248+ handle_step_into_function_backward (ecs);
32523249 else
3253- stepped_into_function (ecs);
3250+ handle_step_into_function (ecs);
32543251 return;
32553252 }
32563253 }
@@ -3588,7 +3585,7 @@ currently_stepping (struct thread_stepping_state *tss)
35883585 it. */
35893586
35903587 static void
3591-stepped_into_function (struct execution_control_state *ecs)
3588+handle_step_into_function (struct execution_control_state *ecs)
35923589 {
35933590 struct symtab *s;
35943591 struct symtab_and_line stop_func_sal, sr_sal;
@@ -3664,7 +3661,7 @@ stepped_into_function (struct execution_control_state *ecs)
36643661 last line of code in it. */
36653662
36663663 static void
3667-stepped_into_function_backward (struct execution_control_state *ecs)
3664+handle_step_into_function_backward (struct execution_control_state *ecs)
36683665 {
36693666 struct symtab *s;
36703667 struct symtab_and_line stop_func_sal, sr_sal;