about summary refs log tree commit diff
path: root/src/libcore/run.rs
AgeCommit message (Collapse)AuthorLines
2013-02-07librustc: Lots of de-muting. rs=demutingPatrick Walton-23/+29
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-3/+0
correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719.
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-5/+5
2013-01-28core: Allow legacy records in in a few modulesTim Chevalier-0/+1
Because of macros, #[allow(structural_records]] in extfmt, gc, os, pipes, and run. Will need a snapshot.
2013-01-25Merge remote-tracking branch 'brson/nocommupstream'Brian Anderson-6/+7
Conflicts: src/libcore/private.rs src/libcore/task/mod.rs src/libcore/task/spawn.rs src/libstd/net_tcp.rs src/libstd/uv_global_loop.rs src/libstd/uv_iotask.rs
2013-01-24Remove "unsafe" from run::start_programErick Tryzelaar-70/+68
2013-01-24convert most of libcore records into structsErick Tryzelaar-11/+16
2013-01-23core: Stop using oldcommBrian Anderson-6/+7
2013-01-13Support ARM and Androidkyeongwoon-0/+2
Conflicts: src/libcore/os.rs src/librustc/back/link.rs src/librustc/driver/driver.rs src/librustc/metadata/loader.rs src/librustc/middle/trans/base.rs
2013-01-10librustc: Make all external functions unsafe. r=tjcPatrick Walton-127/+146
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-2/+6
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-6/+2
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-2/+6
module scope. r=tjc
2012-12-27librustc: Fix the test runner, the condition system, and core test. rs=bustagePatrick Walton-0/+2
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-2/+11
contain at least two components. r=graydon
2012-12-14Rename core::comm to core::oldcommBrian Anderson-5/+5
2012-12-14Fix broken testsBrian Anderson-1/+1
2012-12-07libcore: Fix Windows-only pattern in run.rs. rs=bustagePatrick Walton-2/+2
2012-12-05test: Fix a bunch of test cases. rs=burningPatrick Walton-2/+2
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-18libcore: Make run::program_output UTF-8 safeTycho Sci-12/+16
2012-10-12Make moves explicit in core testsTim Chevalier-3/+3
2012-10-04Forbid deprecated modes again in coreTim Chevalier-1/+1
Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else.
2012-10-04De-mode comm::ChanTim Chevalier-1/+1
2012-10-02Removing explicit uses of + modeTim Chevalier-3/+3
This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes.
2012-09-28core: Demode patternsBrian Anderson-8/+9
2012-09-28Demode extfmtTim Chevalier-1/+1
Needs a snapshot before this can be completed, because I changed the mode for conv_poly.
2012-09-27Finish de-exporting path, rand, run, sys. Part of #3583.Graydon Hoare-1/+0
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-6/+6
2012-09-26libcore: De-export dvec, rand, run, and sysPatrick Walton-18/+9
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+2
#[legacy_exports];
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-3/+3
Note that the method foo.each() is not de-moded, nor the other vec routines.
2012-09-19libcore: unsafe mod renamed to castErick Tryzelaar-3/+3
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵Niko Matsakis-6/+6
demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready.
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-6/+6
2012-09-18core: Rename 'unsafe' mod to 'cast'Brian Anderson-1/+1
2012-09-13s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rsNiko Matsakis-3/+3
hat tip to @jruderman
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-2/+2
2012-09-10Make all remaining moves explicit in libcoreTim Chevalier-5/+5
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-1/+1
2012-09-04core: Remove struct ctorsBrian Anderson-1/+6
2012-09-04libcore: "import" -> "use"Patrick Walton-3/+3
2012-09-02core: deny(vecs_implicity_copyable)Brian Anderson-4/+4
2012-09-01Demode reinterpret_castBrian Anderson-3/+3
2012-08-27Camel case various core constructorsBrian Anderson-2/+2
2012-08-27Convert over some residual uses of #oldmacros.Graydon Hoare-2/+2
2012-08-26Camel case the option typeBrian Anderson-15/+15
2012-08-25libstd: Don't make task-local GC data when creating TCP streams.Patrick Walton-0/+1
This exposed an ICE in a test; it's commented out for now.
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-3/+3
2012-08-17Remove the class keywordBrian Anderson-1/+1