Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
redox-os
syscall
Commits
8f012900
Commit
8f012900
authored
Jan 03, 2018
by
Jeremy Soller
Browse files
Add WCONTINUED
parent
88a0512d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Cargo.toml
View file @
8f012900
[package]
[package]
name
=
"redox_syscall"
name
=
"redox_syscall"
version
=
"0.1.3
4
"
version
=
"0.1.3
5
"
description
=
"A Rust library to access raw Redox system calls"
description
=
"A Rust library to access raw Redox system calls"
license
=
"MIT"
license
=
"MIT"
authors
=
[
"Jeremy Soller <jackpot51@gmail.com>"
]
authors
=
[
"Jeremy Soller <jackpot51@gmail.com>"
]
...
...
src/flag.rs
View file @
8f012900
...
@@ -103,5 +103,6 @@ pub const SA_RESTART: usize = 0x10000000;
...
@@ -103,5 +103,6 @@ pub const SA_RESTART: usize = 0x10000000;
pub
const
SA_NODEFER
:
usize
=
0x40000000
;
pub
const
SA_NODEFER
:
usize
=
0x40000000
;
pub
const
SA_RESETHAND
:
usize
=
0x80000000
;
pub
const
SA_RESETHAND
:
usize
=
0x80000000
;
pub
const
WNOHANG
:
usize
=
1
;
pub
const
WNOHANG
:
usize
=
0x01
;
pub
const
WUNTRACED
:
usize
=
2
;
pub
const
WUNTRACED
:
usize
=
0x02
;
pub
const
WCONTINUED
:
usize
=
0x08
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment