mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 00:03:00 +00:00
Release v0.8.3
This commit is contained in:
parent
85adcf22bf
commit
aa46dfecd4
19 changed files with 1156 additions and 2545 deletions
33
debug_session.lldb
Normal file
33
debug_session.lldb
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Set breakpoint at main
|
||||
b main
|
||||
# Run the program
|
||||
run
|
||||
# Step through to see what happens
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
n
|
||||
# Now we're in the loop - let's examine the students array
|
||||
p num_students
|
||||
p students[0]
|
||||
p students[1]
|
||||
p students[2]
|
||||
# Continue to the crash
|
||||
c
|
||||
# When it crashes, show backtrace
|
||||
bt
|
||||
# Examine the frame
|
||||
frame variable
|
||||
# Look at what students[i] is when it crashes
|
||||
p i
|
||||
p students[i]
|
||||
quit
|
||||
Loading…
Add table
Add a link
Reference in a new issue