Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
只敲代码不玩耍聪明baka也变傻ᗜˬᗜ
BakaOS
Commits
9e413dcf
Commit
9e413dcf
authored
5 months ago
by
只敲代码不玩耍,聪明baka也变傻ᗜˬᗜ
Browse files
Options
Download
Patches
Plain Diff
feat: handle EOFError in input reading for improved robustness
parent
df3be13d
master
ci-test-official-image
ci-test-official-image-vendored
ci/test-auto-stack-unwind
docs/minimal-kernel
docs/source-generation
docs/source-generation-vendored
feat/add-another-ext4-filesystem
feat/auto-stack-unwind
feat/block-device-more-properties
feat/bump-lwext4
feat/bump-lwext4-vendored
feat/docs
feat/ext4-filesystem
feat/fat32-filesystem
feat/final-annotation
feat/impl-frame-allocation
feat/lazy-symbol-table-build
feat/multi-arch
feat/multi-arch-loongarch64
feat/paging-virtual-memory
feat/promote-final-test
feat/promote-final-test-vendored
feat/refactor-build-time
feat/refactor-build-time-vendored
feat/setup-trap-control-flow
feat/test-final
feat/test-workflow
feat/thread-fork
fix/ci-branch-retrieval
fix/improve-task-exit
fix/improve-task-exit-vendored
fix/install-musl
master-vendored
refactor/decouple-page-table-allocation
refactor/try-fix-ext4-rs
refactor/unwinding-related
refactor/unwinding-related-vendored
test/pre-2025
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kernel/unwinder.py
+5
-1
kernel/unwinder.py
with
5 additions
and
1 deletion
+5
-1
kernel/unwinder.py
+
5
−
1
View file @
9e413dcf
...
...
@@ -32,7 +32,11 @@ def read_pc_list():
began
=
False
while
True
:
line
=
input
()
try
:
line
=
input
()
except
EOFError
:
break
if
line
==
''
:
break
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets