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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Tornax O7
relibc
Commits
0d2332d3
Verified
Commit
0d2332d3
authored
6 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Add more special redox functions
parent
c6d42dd9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/sys/redox.h
+4
-0
4 additions, 0 deletions
include/sys/redox.h
src/platform/redox/extra.rs
+32
-3
32 additions, 3 deletions
src/platform/redox/extra.rs
with
36 additions
and
3 deletions
include/sys/redox.h
+
4
−
0
View file @
0d2332d3
...
...
@@ -10,6 +10,10 @@ extern "C" {
#ifdef __redox__
ssize_t
redox_fpath
(
int
fd
,
void
*
buf
,
size_t
count
);
void
*
redox_physalloc
(
size_t
size
);
int
redox_physfree
(
void
*
physical_address
,
size_t
size
);
void
*
redox_physmap
(
void
*
physical_address
,
size_t
size
,
int
flags
);
int
redox_physunmap
(
void
*
virtual_address
);
#endif
...
...
This diff is collapsed.
Click to expand it.
src/platform/redox/extra.rs
+
32
−
3
View file @
0d2332d3
use
core
::
slice
;
use
core
::
{
ptr
,
slice
}
;
use
platform
::
sys
::
e
;
use
platform
::
types
::
*
;
use
super
::
e
;
#[no_mangle]
pub
unsafe
extern
"C"
fn
redox_fpath
(
fd
:
c_int
,
buf
:
*
mut
c_void
,
count
:
size_t
)
->
ssize_t
{
e
(
syscall
::
fpath
(
fd
as
usize
,
slice
::
from_raw_parts_mut
(
buf
as
*
mut
u8
,
count
)))
as
ssize_t
}
#[no_mangle]
pub
unsafe
extern
"C"
fn
redox_physalloc
(
size
:
size_t
)
->
*
mut
c_void
{
let
res
=
e
(
syscall
::
physalloc
(
size
));
if
res
==
!
0
{
return
ptr
::
null_mut
();
}
else
{
return
res
as
*
mut
c_void
}
}
#[no_mangle]
pub
unsafe
extern
"C"
fn
redox_physfree
(
physical_address
:
*
mut
c_void
,
size
:
size_t
)
->
c_int
{
e
(
syscall
::
physfree
(
physical_address
as
usize
,
size
))
as
c_int
}
#[no_mangle]
pub
unsafe
extern
"C"
fn
redox_physmap
(
physical_address
:
*
mut
c_void
,
size
:
size_t
,
flags
:
c_int
)
->
*
mut
c_void
{
let
res
=
e
(
syscall
::
physmap
(
physical_address
as
usize
,
size
,
flags
as
usize
));
if
res
==
!
0
{
return
ptr
::
null_mut
();
}
else
{
return
res
as
*
mut
c_void
}
}
#[no_mangle]
pub
unsafe
extern
"C"
fn
redox_physunmap
(
virtual_address
:
*
mut
c_void
)
->
c_int
{
e
(
syscall
::
physunmap
(
virtual_address
as
usize
))
as
c_int
}
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