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
434cad49
Verified
Commit
434cad49
authored
6 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Add sysconf
parent
5b969f2b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/sys/types.h
+0
-7
0 additions, 7 deletions
include/sys/types.h
src/header/unistd/mod.rs
+2
-5
2 additions, 5 deletions
src/header/unistd/mod.rs
src/header/unistd/sysconf.rs
+50
-0
50 additions, 0 deletions
src/header/unistd/sysconf.rs
tests/unistd/sysconf.c
+26
-0
26 additions, 0 deletions
tests/unistd/sysconf.c
with
78 additions
and
12 deletions
include/sys/types.h
+
0
−
7
View file @
434cad49
...
...
@@ -31,11 +31,4 @@ typedef unsigned long u_long, ulong;
typedef
long
long
quad_t
;
typedef
unsigned
long
long
u_quad_t
;
#ifdef __linux__
#define _SC_PAGE_SIZE 30
#endif
#ifdef __redox__
#define _SC_PAGE_SIZE 8
#endif
#endif
/* _SYS_TYPES_H */
This diff is collapsed.
Click to expand it.
src/header/unistd/mod.rs
+
2
−
5
View file @
434cad49
...
...
@@ -15,10 +15,12 @@ use platform::{Pal, Sys};
pub
use
self
::
brk
::
*
;
pub
use
self
::
getopt
::
*
;
pub
use
self
::
pathconf
::
*
;
pub
use
self
::
sysconf
::
*
;
mod
brk
;
mod
getopt
;
mod
pathconf
;
mod
sysconf
;
pub
const
F_OK
:
c_int
=
0
;
pub
const
R_OK
:
c_int
=
4
;
...
...
@@ -559,11 +561,6 @@ pub extern "C" fn sync() {
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
sysconf
(
name
:
c_int
)
->
c_long
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
tcgetpgrp
()
->
pid_t
{
unimplemented!
();
...
...
This diff is collapsed.
Click to expand it.
src/header/unistd/sysconf.rs
0 → 100644
+
50
−
0
View file @
434cad49
use
header
::
errno
;
use
platform
;
use
platform
::
types
::
*
;
// POSIX.1 {
pub
const
_SC_ARG_MAX
:
c_int
=
0
;
pub
const
_SC_CHILD_MAX
:
c_int
=
1
;
pub
const
_SC_CLK_TCK
:
c_int
=
2
;
pub
const
_SC_NGROUPS_MAX
:
c_int
=
3
;
pub
const
_SC_OPEN_MAX
:
c_int
=
4
;
pub
const
_SC_STREAM_MAX
:
c_int
=
5
;
pub
const
_SC_TZNAME_MAX
:
c_int
=
6
;
// ...
pub
const
_SC_VERSION
:
c_int
=
29
;
pub
const
_SC_PAGESIZE
:
c_int
=
30
;
// ...
pub
const
_SC_RE_DUP_MAX
:
c_int
=
44
;
// ...
pub
const
_SC_LOGIN_NAME_MAX
:
c_int
=
71
;
pub
const
_SC_TTY_NAME_MAX
:
c_int
=
72
;
// ...
pub
const
_SC_SYMLOOP_MAX
:
c_int
=
173
;
// ...
pub
const
_SC_HOST_NAME_MAX
:
c_int
=
180
;
// } POSIX.1
#[no_mangle]
pub
extern
"C"
fn
sysconf
(
name
:
c_int
)
->
c_long
{
//TODO: Real values
match
name
{
_SC_ARG_MAX
=>
4096
,
_SC_CHILD_MAX
=>
65536
,
_SC_CLK_TCK
=>
100
,
_SC_NGROUPS_MAX
=>
65536
,
_SC_OPEN_MAX
=>
1024
,
_SC_STREAM_MAX
=>
16
,
_SC_TZNAME_MAX
=>
-
1
,
_SC_VERSION
=>
200809
,
_SC_PAGESIZE
=>
4096
,
_SC_RE_DUP_MAX
=>
32767
,
_SC_LOGIN_NAME_MAX
=>
256
,
_SC_TTY_NAME_MAX
=>
32
,
_SC_SYMLOOP_MAX
=>
-
1
,
_SC_HOST_NAME_MAX
=>
64
,
_
=>
{
unsafe
{
platform
::
errno
=
errno
::
EINVAL
;
}
-
1
}
}
}
This diff is collapsed.
Click to expand it.
tests/unistd/sysconf.c
0 → 100644
+
26
−
0
View file @
434cad49
#include
<errno.h>
#include
<stdio.h>
#include
<unistd.h>
#define SC(N) { \
errno = 0; \
printf("%s (%d): %ld (%d)\n", #N, _SC_ ## N, sysconf(_SC_ ## N), errno); \
}
int
main
(){
SC
(
ARG_MAX
);
SC
(
CHILD_MAX
);
SC
(
CLK_TCK
);
SC
(
NGROUPS_MAX
);
SC
(
OPEN_MAX
);
SC
(
STREAM_MAX
);
SC
(
TZNAME_MAX
);
SC
(
VERSION
);
SC
(
PAGESIZE
);
SC
(
RE_DUP_MAX
);
SC
(
LOGIN_NAME_MAX
);
SC
(
TTY_NAME_MAX
);
SC
(
SYMLOOP_MAX
);
SC
(
HOST_NAME_MAX
);
return
0
;
}
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