Skip to content

Commit

Permalink
No longer mark DbgEng TTD as beta
Browse files Browse the repository at this point in the history
  • Loading branch information
xusheng6 committed Mar 21, 2024
1 parent 7cd1812 commit 6c2fa5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/adapters/dbgengttdadapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ bool DbgEngTTDAdapter::Quit()
}


DbgEngTTDAdapterType::DbgEngTTDAdapterType() : DebugAdapterType("DBGENG_TTD (BETA)") {}
DbgEngTTDAdapterType::DbgEngTTDAdapterType() : DebugAdapterType("DBGENG_TTD") {}


DebugAdapter* DbgEngTTDAdapterType::Create(BinaryNinja::BinaryView* data)
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/dbgeng-ttd.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Time Travel Debugging (beta)
# Time Travel Debugging

Time travel debugging (TTD) allows you to record an execution trace of a program or system and replay it back and forth.
It can speed up the process of reverse engineering/vulnerability research, and deal with certain tasks that are not easy to handle in regular forward debugging.
Expand Down Expand Up @@ -64,7 +64,7 @@ So you will need to copy the entire WinDbg installation folder to a place that B

- Open the .exe or .dll file in Binary Ninja
- Click `Debugger` -> `Debug Adapter Settings`
- For `Adapter Type`, select `DBGENG_TTD (BETA)`
- For `Adapter Type`, select `DBGENG_TTD`
- For `Executable Path`, select the trace file recorded by WinDbg in the previous step
- E.g., `C:/Users/xushe/Documents/helloworld01.run`
- Click `Accept`
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ This is especially helpful to quickly navigate to the stack variables since they

See [Remote Debugging Guide](remote-debugging.md)

### Time-travel Debugging (beta)
### Time-travel Debugging

See [Time Travel Debugging (beta) Guide](dbgeng-ttd.md)
See [Time Travel Debugging Guide](dbgeng-ttd.md)

### Windows Kernel Debugging

Expand Down

0 comments on commit 6c2fa5f

Please sign in to comment.