Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
kernel
Commits
ae0aebd0
Commit
ae0aebd0
authored
4 years ago
by
Robin Randhawa
Browse files
Options
Downloads
Patches
Plain Diff
aarch64: clone: Return from clone syscall
No CLONE_STACK functionality yet.
parent
67ec6c23
No related branches found
Branches containing commit
No related tags found
2 merge requests
!161
Wip clone and misc fixes
,
!156
WIP: aarch64 support
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/syscall/mod.rs
+2
-1
2 additions, 1 deletion
src/syscall/mod.rs
with
2 additions
and
1 deletion
src/syscall/mod.rs
+
2
−
1
View file @
ae0aebd0
...
...
@@ -129,7 +129,8 @@ pub fn syscall(a: usize, b: usize, c: usize, d: usize, e: usize, f: usize, bp: u
#[cfg(target_arch
=
"aarch64"
)]
{
//TODO: CLONE_STACK
clone
(
b
,
bp
)
.map
(
ContextId
::
into
)
let
ret
=
clone
(
b
,
bp
)
.map
(
ContextId
::
into
);
ret
}
#[cfg(target_arch
=
"x86_64"
)]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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