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
S
syscall
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
8
Issues
8
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
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
syscall
Commits
c969ac06
Commit
c969ac06
authored
Jan 20, 2020
by
Jeremy Soller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ptrace-end' into 'master'
Final few ptrace changes See merge request
!41
parents
0e1e7d5d
6ba71e7e
Pipeline
#6862
passed with stages
in 3 minutes and 11 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/data.rs
src/data.rs
+1
-1
src/flag.rs
src/flag.rs
+1
-0
src/lib.rs
src/lib.rs
+1
-2
No files found.
src/data.rs
View file @
c969ac06
...
...
@@ -336,7 +336,7 @@ impl DerefMut for PtraceEvent {
#[macro_export]
macro_rules!
ptrace_event
{
(
$cause:expr
$
(,
$a:expr
$
(,
$b:expr
$
(,
$c:expr
)
?
)
?
)
?
)
=>
{
PtraceEvent
{
$crate
::
data
::
PtraceEvent
{
cause
:
$cause
,
$
(
a
:
$a
,
$
(
b
:
$b
,
...
...
src/flag.rs
View file @
c969ac06
...
...
@@ -124,6 +124,7 @@ bitflags! {
const
PTRACE_STOP_SINGLESTEP
=
0x0000_0000_0000_0004
;
const
PTRACE_STOP_SIGNAL
=
0x0000_0000_0000_0008
;
const
PTRACE_STOP_BREAKPOINT
=
0x0000_0000_0000_0010
;
const
PTRACE_STOP_EXIT
=
0x0000_0000_0000_0020
;
const
PTRACE_STOP_MASK
=
0x0000_0000_0000_00FF
;
const
PTRACE_EVENT_CLONE
=
0x0000_0000_0000_0100
;
...
...
src/lib.rs
View file @
c969ac06
#![feature(asm)]
#![feature(const_fn)]
#![feature(maybe_uninit)]
// remove when Redox updates their rust version
#![feature(const_fn)]
// see https://github.com/rust-lang/rfcs/pull/2632
#![cfg_attr(not(test),
no_std)]
#[cfg(test)]
...
...
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