2021. 12. 31. 14:17

LLDB

2020. 9. 18. 11:10

Debugging for x64

2020. 7. 1. 10:31

Chrome Browser debug logs

2020. 4. 7. 18:18

Debugging in Xcode

Debug signals in Xcode

  1. Change the setting of the debugger:
    • process handle SIGTERM --stop false --pass true
  2. Send a signal
    • kill -TERM <pid>

 

 

2019. 12. 16. 18:06

Debugging for device driver

2018. 1. 18. 14:15

How to create conditional breakpoint in Visual Studio

  1. String
    1. std::stirng
      1. Ansi 
        • strcmp(newString._Bx._Ptr,"my value")==0
      2. Unicode
        • wcscmp(newString._Bx._Ptr, L"my value")==0
      3. Example 
        • wcscmp(dosPath._Bx._Ptr,  L"C:\\Windows\\System32\\notepad.exe") == 0
      4. link


2016. 5. 23. 14:05

DumpConfigurator

2015. 3. 25. 13:07

tool like process monitor

2015. 3. 12. 10:12

Show a list of include files in visual studio

Configuration Properties -> C/C++ -> Advanced -> Show  includes (YES)

Confirm what header file is included

ex) error C2039: 'int8_t' : is not a member of '`global namespace''


2015. 2. 16. 17:21

Problem Steps Recorder