Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
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
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
a75f9347
Commit
a75f9347
authored
4 years ago
by
alindima
Browse files
Options
Downloads
Patches
Plain Diff
Add missing syscall numbers for aarch64-musl
parent
eb079df8
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/unix/linux_like/linux/musl/b64/aarch64/mod.rs
+5
-1
5 additions, 1 deletion
src/unix/linux_like/linux/musl/b64/aarch64/mod.rs
with
5 additions
and
1 deletion
src/unix/linux_like/linux/musl/b64/aarch64/mod.rs
+
5
−
1
View file @
a75f9347
...
...
@@ -170,7 +170,7 @@ pub const MAP_POPULATE: ::c_int = 0x08000;
pub
const
MAP_NONBLOCK
:
::
c_int
=
0x010000
;
pub
const
MAP_STACK
:
::
c_int
=
0x020000
;
pub
const
MAP_HUGETLB
:
::
c_int
=
0x040000
;
pub
const
MAP_SYNC
:
::
c_int
=
0x080000
;
pub
const
MAP_SYNC
:
::
c_int
=
0x080000
;
pub
const
SOCK_STREAM
:
::
c_int
=
1
;
pub
const
SOCK_DGRAM
:
::
c_int
=
2
;
...
...
@@ -284,6 +284,10 @@ pub const SYS_umount2: ::c_long = 39;
pub
const
SYS_mount
:
::
c_long
=
40
;
pub
const
SYS_pivot_root
:
::
c_long
=
41
;
pub
const
SYS_nfsservctl
:
::
c_long
=
42
;
pub
const
SYS_statfs
:
::
c_long
=
43
;
pub
const
SYS_fstatfs
:
::
c_long
=
44
;
pub
const
SYS_truncate
:
::
c_long
=
45
;
pub
const
SYS_ftruncate
:
::
c_long
=
46
;
pub
const
SYS_fallocate
:
::
c_long
=
47
;
pub
const
SYS_faccessat
:
::
c_long
=
48
;
pub
const
SYS_chdir
:
::
c_long
=
49
;
...
...
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