| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-09-02 | Add a rust_str typedef to the runtime. Issue #855 | Brian Anderson | -2/+4 | |
| 2011-09-02 | Rename istr-stuff to str in the runtime. Issue #855 | Brian Anderson | -1/+1 | |
| 2011-09-02 | Remove estrs and evecs from runtime. Issue #855 | Brian Anderson | -30/+0 | |
| 2011-09-01 | Factor out make_istr utility function in runtime. Issue #855 | Brian Anderson | -0/+13 | |
| 2011-08-29 | Factor vector reserve code in runtime into its own function | Marijn Haverbeke | -0/+9 | |
| 2011-08-29 | Implement non-internal ivecs | Marijn Haverbeke | -17/+7 | |
| Vectors are now similar to our old, pre-internal vectors, except that they are uniquely owned, not refcounted. Their name should probably change too, then. I've renamed them to vec in the runtime, will do so throughout the compiler later. | ||||
| 2011-08-18 | Make windows respect RUST_SEED. Closes #627. | Michael Sullivan | -11/+10 | |
| 2011-08-18 | Remove rc_base. Closes #603. | Michael Sullivan | -15/+5 | |
| 2011-08-18 | Rename rust_vec to rust_evec | Brian Anderson | -5/+5 | |
| 2011-08-17 | rustc: Use obstacks in lieu of dynamically-allocated frames only when the ↵ | Patrick Walton | -0/+10 | |
| frame is actually dynamically-sized | ||||
| 2011-08-17 | Revert "rt: Use obstacks in lieu of dynamically-sized frames" | Patrick Walton | -10/+0 | |
| This reverts commit cc5fcfce89312042e52401eb883160ebf289235f. | ||||
| 2011-08-17 | rt: Use obstacks in lieu of dynamically-sized frames | Patrick Walton | -0/+10 | |
| 2011-08-10 | rt: Use _LP64 instead of SIZE_MAX and UINT64_MAX to try to put out the ↵ | Patrick Walton | -1/+1 | |
| burning tinderbox | ||||
| 2011-08-10 | rt: Attempt to quiet MinGW by including limits.h | Patrick Walton | -0/+1 | |
| 2011-07-28 | Do all runtime calls to getenv at initialization | Brian Anderson | -1/+1 | |
| getenv is not threadsafe and (maybe as a result) it's randomly crashing with CFLAGS=-g and RUST_THREADS=32. Calls from rust code are still on their own. | ||||
| 2011-07-28 | Updating to work on Windows. | Eric Holk | -3/+3 | |
| 2011-07-28 | Per-thread scheduling. Closes #682. | Eric Holk | -1/+2 | |
| Tasks are spawned on a random thread. Currently they stay there, but we should add task migration and load balancing in the future. This should drammatically improve our task performance benchmarks. | ||||
| 2011-07-21 | Lots of work on memory tracking and channels. | Eric Holk | -2/+2 | |
| We're trying to get closer to doing correct move semantics for channel operations. This involves a lot of cleanup (such as removing the unused sched parameter from rust_vec constructor) and making circular_buffer kernel_owned. Added tagging for memory allocations. This means we give a string tag to everything we allocate. If we leak something and TRACK_ALLOCATIONS is enabled, then it's much easier now to tell exactly what is leaking. | ||||
| 2011-07-19 | Fix calculation of sizeof boxed ivec of str in rt. Closes #712 | Brian Anderson | -0/+1 | |
| 2011-07-13 | Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases. | Graydon Hoare | -3/+3 | |
| 2011-07-13 | Fix compile-command lines in rt. | Graydon Hoare | -1/+1 | |
| 2011-07-07 | Tightened up the scoping for our various new operators, which should | Eric Holk | -0/+4 | |
| make it harder to use the wrong one. | ||||
| 2011-06-28 | Renamed what's left of rust_dom to rust_scheduler | Eric Holk | -26/+27 | |
| 2011-06-28 | Moved win32_require to the kernel. | Eric Holk | -3/+3 | |
| 2011-06-28 | Removed dom_owned, splitting things between task_owned and kernel_owned. Had ↵ | Eric Holk | -23/+26 | |
| to re-xfail a few tests brson recently un-xfailed. | ||||
| 2011-06-14 | rustc: Implement on-heap resizing for interior vectors | Patrick Walton | -2/+2 | |
| 2011-06-13 | rustc: Implement simple interior vector append translation | Patrick Walton | -0/+24 | |
| 2011-04-19 | Overhaul logging system in runtime | Marijn Haverbeke | -6/+4 | |
| See https://github.com/graydon/rust/wiki/Logging-vision The runtime logging categories are now treated in the same way as modules in compiled code. Each domain now has a log_lvl that can be used to restrict the logging from that domain (will be used to allow logging to be restricted to a single domain). Features dropped (can be brought back to life if there is interest): - Logger indentation - Multiple categories per log statement - I possibly broke some of the color code -- it confuses me | ||||
| 2011-04-07 | Move to macro-based logging checks in the C++ code | Marijn Haverbeke | -2/+2 | |
| No functions should be called for log statements that turn out to be inactive. | ||||
| 2011-04-02 | Change rust_vec to have a 16-byte header, to 16-byte-align vec-body data. ↵ | Graydon Hoare | -0/+1 | |
| Major perf win. | ||||
| 2011-03-14 | Add basic file-system functionality | Marijn Haverbeke | -4/+1 | |
| std.fs.list_dir will list the files in a directory, std.fs.file_is_dir will, given a pathname, determine whether it is a directory or not. | ||||
| 2010-08-09 | Added peek() to ptr_vec. | Michael Bebenita | -0/+7 | |
| 2010-08-09 | Added the RUST_SEED env variable to seed the Rust task scheduler -- helpful ↵ | Michael Bebenita | -5/+14 | |
| when debugging task race conditions within a single thread domain. | ||||
| 2010-07-25 | Attempt number 1 at extinguishing the windows tree remotely (apologies to ↵ | Roy Frostig | -3/+3 | |
| those hacking on Sunday evening PST). | ||||
| 2010-07-25 | Expose an RNG (the one used by our runtime) to Rust via std. | Roy Frostig | -0/+32 | |
| 2010-07-19 | Added a message passing system based on lock free queues for inter-thread ↵ | Michael Bebenita | -2/+2 | |
| communication. Channels now buffer on the sending side, and no longer require blocking when sending. Lots of other refactoring and bug fixes. | ||||
| 2010-06-23 | Populate tree. | Graydon Hoare | -0/+155 | |
