Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
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
relibc
Commits
c93b43b4
Verified
Commit
c93b43b4
authored
9 months ago
by
Jacob Lorentzon
Browse files
Options
Downloads
Patches
Plain Diff
Build on i686, remove unnecessary #[no_mangle].
parent
18b5c73b
No related branches found
No related tags found
1 merge request
!480
Refactor redox runtime and impl signals in userspace
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
redox-rt/src/arch/i686.rs
+6
-8
6 additions, 8 deletions
redox-rt/src/arch/i686.rs
redox-rt/src/arch/x86_64.rs
+6
-8
6 additions, 8 deletions
redox-rt/src/arch/x86_64.rs
redox-rt/src/signal.rs
+2
-2
2 additions, 2 deletions
redox-rt/src/signal.rs
with
14 additions
and
18 deletions
redox-rt/src/arch/i686.rs
+
6
−
8
View file @
c93b43b4
...
...
@@ -44,13 +44,11 @@ pub fn copy_env_regs(cur_pid_fd: usize, new_pid_fd: usize) -> Result<()> {
Ok
(())
}
#[no_mangle]
unsafe
extern
"cdecl"
fn
__relibc_internal_fork_impl
(
initial_rsp
:
*
mut
usize
)
->
usize
{
unsafe
extern
"cdecl"
fn
fork_impl
(
initial_rsp
:
*
mut
usize
)
->
usize
{
Error
::
mux
(
fork_inner
(
initial_rsp
))
}
#[no_mangle]
unsafe
extern
"cdecl"
fn
__relibc_internal_fork_hook
(
cur_filetable_fd
:
usize
,
new_pid_fd
:
usize
)
{
unsafe
extern
"cdecl"
fn
child_hook
(
cur_filetable_fd
:
usize
,
new_pid_fd
:
usize
)
{
let
_
=
syscall
::
close
(
cur_filetable_fd
);
let
_
=
syscall
::
close
(
new_pid_fd
);
}
...
...
@@ -71,14 +69,14 @@ asmfunction!(__relibc_internal_fork_wrapper -> usize: ["
fnstcw [esp+24]
push esp
call
__relibc_internal_
fork_impl
call
{
fork_impl
}
pop esp
jmp 2f
"
]
<=
[]);
"
]
<=
[
fork_impl
=
sym
fork_impl
]);
asmfunction!
(
__relibc_internal_fork_ret
:
[
"
// Arguments already on the stack
call
__relibc_internal_fork
_hook
call
{child
_hook
}
//TODO ldmxcsr [esp+16]
fldcw [esp+24]
...
...
@@ -97,7 +95,7 @@ asmfunction!(__relibc_internal_fork_ret: ["
pop ebp
ret
"
]
<=
[]);
"
]
<=
[
child_hook
=
sym
child_hook
]);
asmfunction!
(
__relibc_internal_sigentry
:
[
"
sub esp, 512
fxsave [esp]
...
...
This diff is collapsed.
Click to expand it.
redox-rt/src/arch/x86_64.rs
+
6
−
8
View file @
c93b43b4
...
...
@@ -49,13 +49,11 @@ pub fn copy_env_regs(cur_pid_fd: usize, new_pid_fd: usize) -> Result<()> {
Ok
(())
}
#[no_mangle]
unsafe
extern
"sysv64"
fn
__relibc_internal_fork_impl
(
initial_rsp
:
*
mut
usize
)
->
usize
{
unsafe
extern
"sysv64"
fn
fork_impl
(
initial_rsp
:
*
mut
usize
)
->
usize
{
Error
::
mux
(
fork_inner
(
initial_rsp
))
}
#[no_mangle]
unsafe
extern
"sysv64"
fn
__relibc_internal_fork_hook
(
cur_filetable_fd
:
usize
,
new_pid_fd
:
usize
)
{
unsafe
extern
"sysv64"
fn
child_hook
(
cur_filetable_fd
:
usize
,
new_pid_fd
:
usize
)
{
let
_
=
syscall
::
close
(
cur_filetable_fd
);
let
_
=
syscall
::
close
(
new_pid_fd
);
}
...
...
@@ -77,18 +75,18 @@ asmfunction!(__relibc_internal_fork_wrapper -> usize: ["
fnstcw [rsp+24]
mov rdi, rsp
call
__relibc_internal_
fork_impl
call
{
fork_impl
}
add rsp, 80
pop rbp
ret
"
]
<=
[]);
"
]
<=
[
fork_impl
=
sym
fork_impl
]);
asmfunction!
(
__relibc_internal_fork_ret
:
[
"
mov rdi, [rsp]
mov rsi, [rsp + 8]
call
__relibc_internal_fork
_hook
call
{child
_hook
}
ldmxcsr [rsp+16]
fldcw [rsp+24]
...
...
@@ -105,7 +103,7 @@ asmfunction!(__relibc_internal_fork_ret: ["
pop rbp
ret
"
]
<=
[]);
"
]
<=
[
child_hook
=
sym
child_hook
]);
asmfunction!
(
__relibc_internal_rlct_clone_ret
:
[
"
# Load registers
pop rax
...
...
This diff is collapsed.
Click to expand it.
redox-rt/src/signal.rs
+
2
−
2
View file @
c93b43b4
use
core
::
cell
::{
Cell
,
UnsafeCell
};
use
core
::
ffi
::
c_int
;
use
core
::
sync
::
atomic
::
{
AtomicU64
,
Ordering
}
;
use
core
::
sync
::
atomic
::
Ordering
;
use
syscall
::{
Error
,
IntRegisters
,
Result
,
SetSighandlerData
,
SigProcControl
,
Sigcontrol
,
SigcontrolFlags
,
EINVAL
,
SIGCHLD
,
SIGCONT
,
SIGKILL
,
SIGSTOP
,
SIGTSTP
,
SIGTTIN
,
SIGTTOU
,
SIGURG
,
SIGW0_NOCLDSTOP_BIT
,
SIGW0_TSTP_IS_STOP_BIT
,
SIGW0_TTIN_IS_STOP_BIT
,
SIGW0_TTOU_IS_STOP_BIT
,
SIGWINCH
};
use
syscall
::{
Error
,
IntRegisters
,
Result
,
SetSighandlerData
,
SigProcControl
,
Sigcontrol
,
SigcontrolFlags
,
EINVAL
,
SIGCHLD
,
SIGCONT
,
SIGKILL
,
SIGSTOP
,
SIGTSTP
,
SIGTTIN
,
SIGTTOU
,
SIGURG
,
SIGW0_NOCLDSTOP_BIT
,
SIGW0_TSTP_IS_STOP_BIT
,
SIGW0_TTIN_IS_STOP_BIT
,
SIGW0_TTOU_IS_STOP_BIT
,
SIGWINCH
,
data
::
AtomicU64
};
use
crate
::{
arch
::
*
,
Tcb
};
use
crate
::
sync
::
Mutex
;
...
...
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