Develop and Download Open Source Software

Browse Subversion Repository

Log of /branches/ttcomtester/teraterm/teraterm/ttdebug.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 10521 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jan 20 16:03:38 2023 UTC (13 months, 2 weeks ago) by zmatsuo
File length: 10671 byte(s)
Diff to previous 10171
add communication test tool

Revision 10171 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 18 14:43:36 2022 UTC (18 months, 2 weeks ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10671 byte(s)
Diff to previous 10167
テスト用クラッシュ関数のクラッシュ方法を変更

- __debugbreak() を使用するようにした
- 以前はNULLポインタへの書き込みだった
- MinGW の時は __builtin_trap() を使用していた (r10167)

Revision 10167 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 17 14:18:05 2022 UTC (18 months, 3 weeks ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10688 byte(s)
Diff to previous 9727
MinGW 時 __builtin_trap() を使用するよう修正

ttdebug.cpp:332:2: warning: indirection of non-volatile null pointer will be deleted, not trap
ttdebug.cpp:332:2: note: consider using __builtin_trap() or qualifying pointer with 'volatile'

Revision 9727 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Feb 6 13:56:49 2022 UTC (2 years, 1 month ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10627 byte(s)
Diff to previous 9715
ポータブル版のフォルダを考慮

- ポータブル版の判定
  - ExeDirW() (exe があるフォルダ)に portable.ini というファイルがあるとき
- ポータブル版の時の動作
  - HomeDirW() は ExeDirW() と同じフォルダを返す
  - LogDirW() は ExeDirW() + "\log" を返す

ticket #43493

Revision 9715 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Feb 1 13:50:57 2022 UTC (2 years, 1 month ago) by nmaya
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10623 byte(s)
Diff to previous 9463
Tera Term, TTSSH のダンプファイルの出力先を LogDir にした

Revision 9463 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 14 14:51:10 2021 UTC (2 years, 4 months ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10611 byte(s)
Diff to previous 9442
コンパイラの警告対策

- cast size_t -> int
- replace strdup() -> _strdup()
- 'code_page' may be used uninitialized in this function (ttcmn.c)

Revision 9442 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 21 16:07:39 2021 UTC (2 years, 5 months ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10610 byte(s)
Diff to previous 9411
SVNVERSION がdefineされていないときを考慮

Revision 9411 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 10 15:51:37 2021 UTC (2 years, 5 months ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10469 byte(s)
Diff to previous 9405
compat_win.cpp に _SHGetKnownFolderPath() を追加

- SHGetKnownFolderPath()
  - パスの取得
    - SHGetSpecialFolderPathW() などの代替
  - このAPIで返すパス長には上限がない
  - Vistaから
- _SHGetKnownFolderPath()
  - SHGetKnownFolderPath() が存在すれば使用する
  - 存在しなければ、SHGetSpecialFolderLocation() を使用
- ttknownfolders.c,h
  - FOLDERID_* の定義
  - VS2005 など古いSDKを使ってビルドするときに使用
- ttdebug.cpp
  - _SHGetKnownFolderPath() を利用するよう修正

Revision 9405 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 13:35:30 2021 UTC (2 years, 5 months ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 10459 byte(s)
Diff to previous 9127
ミニダンプ出力を追加

- XP以降の機能
- compat_win にAPI追加
  - SymGetLineFromAddr()
  - MiniDumpWriteDump()
- 例外発生時にミニダンプを出力できるようにした
  - とりあえずデスクトップに
- defineがヘッダファイルの内容を書き換えてしまうので include順を変更
  - inpdlg.cpp, msgdlg.cpp
  - MaxStrLen

Revision 9127 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jan 16 05:20:46 2021 UTC (3 years, 1 month ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 8802 byte(s)
Diff to previous 9124
imagehlp.dll の遅延ロード指定がなくても動作するようにした

- Windows95 には imagehlp.dll の SymGetLineFromAddr() が存在しない

Revision 9124 - (view) (download) (as text) (annotate) - [select for diffs]
Added Sat Jan 16 05:19:55 2021 UTC (3 years, 1 month ago) by zmatsuo
Original Path: trunk/teraterm/teraterm/ttdebug.cpp
File length: 8584 byte(s)
起動時にデバグ用コンソールをオープンできるようにした

- デバグ用 ttdebug.h,cpp を追加
- 例外発生時の処理を ttdebug.cpp に移動

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26