Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gdbserver
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
redox-os
gdbserver
Commits
bd04ed70
Verified
Commit
bd04ed70
authored
Jun 25, 2020
by
jD91mZM2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update redox_syscall
parent
462e722f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Cargo.toml
Cargo.toml
+1
-2
src/os/redox.rs
src/os/redox.rs
+1
-1
No files found.
Cargo.toml
View file @
bd04ed70
...
...
@@ -14,6 +14,5 @@ log = "0.4.8"
[target.'cfg(target_os
=
"linux"
)
'.dependencies]
libc
=
"0.2.62"
[target.'cfg(target_os
=
"redox"
)
'.dependencies]
# redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall" }
redox_syscall
=
{
git
=
"https://gitlab.redox-os.org/jD91mZM2/syscall"
,
branch
=
"ptrace-fexec"
}
redox_syscall
=
{
git
=
"https://gitlab.redox-os.org/redox-os/syscall.git"
}
strace
=
{
git
=
"https://gitlab.redox-os.org/redox-os/strace-redox"
}
src/os/redox.rs
View file @
bd04ed70
...
...
@@ -75,7 +75,7 @@ impl Os {
let
mut
tracer
=
self
.tracer
.borrow_mut
();
match
tracer
.next
(
flags
|
Flags
::
STOP_BREAKPOINT
)
{
Ok
(
event
)
=>
{
Ok
(
_
event
)
=>
{
// Just pretend ptrace SIGSTOP:ped this
let
status
=
(
SIGSTOP
<<
8
)
|
0x7f
;
assert
!
(
syscall
::
wifstopped
(
status
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment