Difference between revisions of "User:Black Fox"

From ReactOS Wiki
Jump to: navigation, search
m
(debugging with DPH + removed useless obsolete section)
Line 52: Line 52:
 
- To make IE6setup go past version check, edit HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer - Version key (set to 5), after modification reboot the system
 
- To make IE6setup go past version check, edit HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer - Version key (set to 5), after modification reboot the system
  
 
+
- [[Debugging#Debug_Page_Heap_.28DPH.29 | Debugging heap with DPH]]
 
 
 
 
----
 
 
 
'''OBSOLETE/OUT OF DATE:'''
 
 
 
'''Tested software (newest on top) - all results since rewrite of CompatDB have been inserted into it as well, this is just for personal reference'''
 
{| class="sortable wikitable" border="1" cellpadding="3" cellspacing="0" style="font-size: 85%; border: gray solid 1px; border-collapse: collapse; width: 90%; text-align: left;"
 
|- style="text-align: center; background: #ececec;"
 
! style="width: 20%;" | App
 
! style="width: 4%;" | Rev
 
! style="width: 4%;" | VMWA
 
! style="width: 4%;" | QEMU
 
! style="width: 4%;" | VBOX
 
! style="width: 4%;" | RHDW
 
! style="width: 20%;" | SEE BUGS
 
! style="width: 40%;" | DESCRIPTION
 
|-
 
| [http://www.qutim.org/uploads/windows/qutIM-0.2.0.exe qutIM 0.2 + ICQ + Jabber]
 
| 47102
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Failed}} | PARTIALLY
 
| {{StatusCell|Unknown}} | NTD
 
|
 
| Situation is completely the same as in r44199.
 
|-
 
| [http://www.qutim.org/uploads/windows/qutIM-0.2.0.exe qutIM 0.2 + ICQ + Jabber]
 
| 44199
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Failed}} | PARTIALLY
 
| {{StatusCell|Unknown}} | NTD
 
|
 
| Seems to work, but cannot connect -> no idea if it works for sure. Anyway it gets a lot further than the previous test.
 
|-
 
| [http://www.qutim.org/uploads/windows/qutIM-0.2_beta2_icq.exe qutIM 0.2 beta2 + ICQ]
 
| 42470
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Failed}} | NO
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Unknown}} | NTD
 
| [http://www.reactos.org/bugzilla/show_bug.cgi?id=4789 4789]
 
| Either takes ages to start or hangs somewhere (main thread is ready, other thread is waiting for something). VM does ''NOT'' hang on assert, but backtrace looks exactly the same in the waiting thread (ending with "Couldn't access memory at 0x0C20B4BC!").
 
|}
 
 
 
 
 
<!--
 
{| class="sortable wikitable" border="1" cellpadding="3" cellspacing="0" style="font-size: 85%; border: gray solid 1px; border-collapse: collapse; width: 90%; text-align: left;"
 
|- style="text-align: center; background: #ececec;"
 
! style="width: 15%;" | App
 
! style="width: 5%;" | Rev
 
! style="width: 4%;" | VMWA
 
! style="width: 4%;" | QEMU
 
! style="width: 4%;" | VBOX
 
! style="width: 4%;" | RHDW
 
! style="width: 31%;" | BUG INSTALLING
 
! style="width: 33%;" | BUG WORKING
 
|-
 
| [http://www.google.com/ EXAMPLE]
 
| 42470
 
| {{StatusCell|Failed}} | NO
 
| {{StatusCell|Unknown}} | NTD
 
| {{StatusCell|Stable}} | YES
 
| WHITE
 
| None
 
| Some other answer
 
|}
 
-->
 

Revision as of 10:38, 23 April 2014

http://stuff.black-fox.cz/bf_ava.png

Name: Radek Liška

Nick: Black_Fox

Country: Czechia (also known as Czech Republic if you want to be really formal)

E-mail: radekliska [att] gmail [ddot] com

How to reach me: PMs at forum, I don't really lurk in IRC currently


Area of interest at ReactOS: I've been the only active Czech translation maintainer since early 2008, I go to JIRA from time to time to retest old bugs and rarely even do some patches for code, HW testing ability since early 2014

Goal: To be permanently able to invest more time into ROS, finish Czech translation, unify Czech translation, submit some more code patches/tests, get my test notebooks to install and boot to ROS.



Random Facts:

- birthday: June 26th

- testing configs: VirtualBox in newest available version, Lenovo T400, Toshiba Satellite A50-101, QEMU (no longer)

- I even donated some money to foundation! The total sum of my donations is now around €100. Imitate me for the good of the project ;)


Random info for my easier finding:

- set condition * first always

- tab+k, bt, proc [list|attach], thread [list|attach]

- putty: 115200, don't forget to switch from XON/XOFF to the RTS/CTS (need to verify this)

- Logging into file - KDBinit - do I really have to set something before I'm able to log into file?

- FYI to debug this I changed the assert to: if (KeGetCurrentIrql() != DISPATCH_LEVEL)

   KeBugCheckEx(INSTALL_MORE_MEMORY, Thread->WaitNext << 8 | KeGetCurrentIrql(), (ULONG_PTR)__builtin_return_address(0), (ULONG_PTR)__builtin_return_address(1), Interval ? Interval->QuadPart : -1);

The __builtin_return_address(0) will be visible on the bluescreen and can be used with log2lines.

- Forum tutorial: How to get debug output from VirtualBox in Windows

- Forum tutorial: How to create translation patch from TortoiseSVN in Windows

- To make IE6setup go past version check, edit HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer - Version key (set to 5), after modification reboot the system

- Debugging heap with DPH