index
:
chainport
main
the midipix porting bits for everything but the compiler
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Age
Commit message (
Collapse
)
Author
Files
Lines
2019-11-06
mgdb: winnt_wait(): properly handle the syscall layer's internal breakpoints.
midipix
2
-3
/
+10
2019-11-06
mgdb: COPYING.MGDB: list overlay files in alphabetical order.
midipix
1
-5
/
+5
2019-11-03
project: added .gitignore.
midipix
1
-0
/
+11
2019-11-03
removed .travis.yml (no longer in use).
midipix
1
-19
/
+0
2019-11-03
mgdb: COPYING.MGDB: added explicit lists of patches and extension source files.
midipix
1
-20
/
+101
2019-10-13
mgdb: winnt_wait_event(): properly handle EINTR.
midipix
1
-2
/
+4
2019-10-13
mgdb: winnt_exception_filters[]: added foreign raised exception support.
midipix
1
-0
/
+2
2019-10-13
mgdb: winnt_resume_one(): first respond to debug event, then resume thread.
midipix
1
-3
/
+3
2019-10-11
mgdb: winnt_wait(): initialize waitstatus in a more refined manner.
midipix
1
-3
/
+3
2019-10-06
mgdb: winnt_exception_filters[]: added midipix and win32 unwind support.
midipix
1
-1
/
+5
2019-10-02
mgdb: winnt_resume_one(): always respond with __DBG_RESPONSE_CONTINUE.
midipix
1
-13
/
+2
2019-10-02
mgdb: amd64_winnt_store_registers(): explicitly set regctx->uc_context_flags.
midipix
1
-0
/
+2
2019-10-02
mgdb: winnt_dbg_signal(): initial implementation and integration.
midipix
2
-1
/
+14
2019-09-26
mgdb: winnt_prepare(): disable breakpoints in shared libraries.
midipix
1
-0
/
+1
2019-09-26
mgdb: amd64_winnt_supply_core_regs(): add missing bits.
midipix
1
-0
/
+11
2019-09-26
mgdb: amd64_winnt_init_reg_offsets(): fix range typos.
midipix
1
-7
/
+7
2019-09-23
mgdb: amd64_winnt_init_reg_offsets() is (native) host-specific.
midipix
2
-5
/
+3
2019-09-22
mgdb: winnt_xfer_partial(): verify that pid is valid.
midipix
1
-5
/
+7
2019-09-22
mgdb: winnt_process_record(): verify that pid is valid.
midipix
1
-0
/
+3
2019-09-22
mgdb: added winnt_supports_multi_process(), winnt_resume_process().
midipix
1
-1
/
+30
2019-09-22
mgdb: winnt_exception_filters[]: initial implementation and integration.
midipix
2
-2
/
+134
2019-09-20
mgdb: winnt_create_inferior(): allocate a sufficiently large argument string.
midipix
1
-2
/
+2
2019-09-20
mgdb: winnt_resume_all(): only single-step the currently selected thread.
midipix
1
-1
/
+3
2019-09-19
mgdb: winnt_wait_event(): obtain register context of all threads.
midipix
1
-2
/
+3
2019-09-19
mgdb: amd64_winnt_fetch_registers(): properly handle post-store requests.
midipix
1
-2
/
+3
2019-09-19
mgdb: amd64_winnt_init_reg_offsets(): add missing initialization of rip.
midipix
1
-0
/
+2
2019-09-19
mgdb: winnt_resume_one(): properly initialize tid.
midipix
1
-1
/
+1
2019-09-19
mgdb: winnt_add_thread(): properly initialize pid.
midipix
1
-1
/
+1
2019-09-19
mgdb: amd64_winnt_fetch_registers(): retrieve registers unconditionally.
midipix
1
-3
/
+2
2019-09-19
mgdb: winnt_prepare(): perform proper clean-up upon premature termination.
midipix
1
-1
/
+4
2019-09-19
mgdb: winnt_mourn_inferior(), winnt_abandon(): preceed winnt_prepare().
midipix
1
-16
/
+16
2019-09-19
mgdb: winnt_mourn_inferior(): remove process record as needed.
midipix
1
-0
/
+3
2019-09-19
mgdb: winnt_plist_remove(): close pfd, reset record.
midipix
1
-2
/
+2
2019-09-19
mgdb: winnt_wait(): set .sig to GDB_SIGNAL_UNKNOWN upon system exceptions.
midipix
1
-0
/
+4
2019-09-19
mgdb: winnt_wait_event(): fetch registers whenever applicable.
midipix
1
-0
/
+11
2019-09-19
mgdb: winnt_resume_one(): resume thread as needed.
midipix
1
-0
/
+3
2019-09-19
mgdb: further refine terminal ownership logic.
midipix
1
-3
/
+6
2019-09-16
mgdb: {amd64|i386}_winnt_store_registers(): initial implementation.
midipix
4
-3
/
+73
2019-09-16
mgdb: winnt_wait(): handle __DBG_STATE_{CREATE_PROCESS|DLL_LOAD|DLL_UNLOAD}.
midipix
1
-3
/
+17
2019-09-16
mgdb: winnt_wait(): handle __DBG_STATE_CREATE_THREAD.
midipix
1
-1
/
+6
2019-09-16
mgdb: winnt_wait(): refine terminal ownership logic.
midipix
1
-2
/
+1
2019-09-16
mgdb: winnt_wait(): handle __DBG_STATE_EXIT_PROCESS.
midipix
1
-1
/
+6
2019-09-16
mgdb: winnt_delete_thread(): initial implementation and integration.
midipix
1
-5
/
+58
2019-09-16
mgdb; winnt_resume{_one|_all}(): initial implementation and integration.
midipix
1
-2
/
+89
2019-09-16
mgdb: winnt_wait_event(): use __dbg_event_acquire() (a better match for gdb).
midipix
1
-1
/
+1
2019-09-16
mgdb: struct winnt_thread and friends: initial implementation and integration.
midipix
4
-79
/
+195
2019-09-16
mgdb: x86_dr_low support: initial implementation and integration.
midipix
1
-0
/
+61
2019-09-16
mgdb: winnt_prepare(): __dbg_event_acquire() now supports blocking calls.
midipix
1
-1
/
+1
2019-09-15
mgdb: amd64_winnt_init_reg_offsets(): initial implementation and integration.
midipix
2
-0
/
+74
2019-09-14
mgdb: winnt_detach(): clear executable file.
midipix
1
-0
/
+2
[next]