8000 Rollup of 14 pull requests by Centril · Pull Request #64860 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 14 pull requests #64860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 39 commits into from
Closed
Changes from 3 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
9b00e21
Remove unused DepTrackingMap
Mark-Simulacrum Sep 26, 2019
dd38a0f
update rtpSpawn's parameters type(It's prototype has been updated in …
bpangWR Sep 26, 2019
3e4f582
Upgrade env_logger to 0.7
mati865 Sep 26, 2019
377a70d
Fix div_duration() marked as stable by mistake
JMS55 Sep 26, 2019
e79036d
hir: Disallow `target_feature` on constants
davidtwco Sep 26, 2019
c81d359
Merge pull request #30 from Wind-River/update
n-salim Sep 26, 2019
c3368bd
hir: stop checking codegen fn attrs for constants
davidtwco Sep 26, 2019
821ff46
Include message on tests that should panic
kungfukennyg Sep 24, 2019
9ef6edb
lowering: don't .abort_if_errors()
Centril Sep 27, 2019
c482c84
Stabilize map_get_key_value feature
tesuji Sep 27, 2019
bd995c0
pin.rs: fix links to primitives in documentation
Sep 27, 2019
1154374
syntax: don't keep a redundant c_variadic flag in the AST.
eddyb Aug 10, 2019
8522997
rustc: don't store a lifetime in hir::TyKind::CVarArgs.
eddyb Aug 11, 2019
072cf41
rustc: rely on c_variadic == true instead of CVarArgs in HIR/Ty fn si…
eddyb Aug 10, 2019
003c5ec
rustc_codegen_ssa: remove redundant `va_list_ref` field from `Functio…
eddyb Aug 12, 2019
faee8e1
Turn `walk_parent_nodes` method into an iterator
estebank Sep 26, 2019
46a38dc
Account for tail expressions when pointing at return type
estebank Sep 26, 2019
e537d06
review comments
estebank Sep 26, 2019
a284822
fix 8000 rebase
estebank Sep 27, 2019
d559b72
Add mailmap entry for Dustin Bensing by request
Mark-Simulacrum Sep 27, 2019
d540d44
Remove global_tcx from TyCtxt
Mark-Simulacrum Sep 25, 2019
f226ab4
Remove lift_to_global
Mark-Simulacrum Sep 25, 2019
0a4d55d
Remove stray uses of gcx name
Mark-Simulacrum Sep 25, 2019
4b23503
Remove shrink_to_tcx_lifetime
Mark-Simulacrum Sep 25, 2019
6ccb7ae
Docs: slice elements are equidistant
llogiq Sep 23, 2019
65a96d9
Rollup merge of #63492 - eddyb:cvarargs, r=nagisa
Centril Sep 28, 2019
63f733f
Rollup merge of #64703 - llogiq:slices-elems-are-equidistant, r=rkruppe
Centril Sep 28, 2019
5fd2b7c
Rollup merge of #64745 - kennethbgoodin:should-panic-msg, r=varkor
Centril Sep 28, 2019
5899da5
Rollup merge of #64781 - Mark-Simulacrum:no-global-tcx, r=eddyb
Centril Sep 28, 2019
87dc296
Rollup merge of #64794 - Mark-Simulacrum:rm-dep-track-map, r=estebank
Centril Sep 28, 2019
4633816
Rollup merge of #64802 - estebank:walk-parents-iterator, r=matthewjasper
Centril Sep 28, 2019
59b9527
Rollup merge of #64809 - davidtwco:issue-64768-target-feature-const, …
Centril Sep 28, 2019
f08f3f3
Rollup merge of #64815 - JMS55:patch-1, r=jonas-schievink
Centril Sep 28, 2019
5280e79
Rollup merge of #64818 - Wind-River:master, r=alexcrichton
Centril Sep 28, 2019
dd45b80
Rollup merge of #64830 - Centril:thou-shallt-not-abort, r=estebank
Centril Sep 28, 2019
e687522
Rollup merge of #64836 - lzutao:stabilize-map_get_key_value, r=SimonS…
Centril Sep 28, 2019
63bf25d
Rollup merge of #64845 - rusty-snake:patch-1, r=jonas-schievink
Centril Sep 28, 2019
92f6615
Rollup merge of #64847 - mati865:env_logger, r=alexcrichton
Centril Sep 28, 2019
14a70cc
Rollup merge of #64851 - Mark-Simulacrum:mailmap-update, r=varkor
Centril Sep 28, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libstd/sys/vxworks/process/process_vxworks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ impl Command {

let ret = libc::rtpSpawn(
self.get_argv()[0], // executing program
self.get_argv().as_ptr() as *const _, // argv
*sys::os::environ() as *const *const c_char,
self.get_argv().as_ptr() as *mut *const c_char, // argv
*sys::os::environ() as *mut *const c_char,
100 as c_int, // initial priority
thread::min_stack(), // initial stack size.
0, // options
Expand Down
0