about summary refs log tree commit diff
path: root/src/rt
AgeCommit message (Expand)AuthorLines
2011-07-22Fixing a use of uninitialized memory error in valgrind.Eric Holk-2/+2
2011-07-21Bump the stack size and make the RUST_MIN_STACK env variable accept hex values.Michael Sullivan-2/+2
2011-07-21Improving move semantics for channel operations.Eric Holk-11/+12
2011-07-21Lots of work on memory tracking and channels.Eric Holk-179/+235
2011-07-20Add a huge hack to allow the test runner to continue if a single task leaksBrian Anderson-1/+25
2011-07-19Fix calculation of sizeof boxed ivec of str in rt. Closes #712Brian Anderson-1/+6
2011-07-17Revert "Add setenv to standard library"Brian Anderson-16/+0
2011-07-17Add setenv to standard libraryBrian Anderson-0/+16
2011-07-15rustc: Implement interior string logging in DPSPatrick Walton-0/+11
2011-07-15Remove task_unsupervise from rt builtin functionsBrian Anderson-6/+0
2011-07-15Modify task::join to indicate how the task terminatedBrian Anderson-2/+12
2011-07-14Add task_unsupervise to rustrt.def.inBrian Anderson-0/+1
2011-07-14Modify upcall_fail so that failing tasks relinquish control to the schedulerBrian Anderson-0/+3
2011-07-14Add an unsupervise builtin and function to std::taskBrian Anderson-0/+5
2011-07-14Move the responsibility for process failure from tasks to the schedulerBrian Anderson-3/+3
2011-07-13Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.Graydon Hoare-36/+35
2011-07-13Trim a few more fail(1)s, not sure how they slipped past.Graydon Hoare-3/+3
2011-07-13Remove 'Nop.' comments, add emacs lines, remove obsolete file.Graydon Hoare-26/+11
2011-07-13Fix compile-command lines in rt.Graydon Hoare-24/+24
2011-07-13Remove obsolete nargs counts from runtime.Graydon Hoare-36/+33
2011-07-13Attempt to correct buggy win32 timer code (causing tinderbox failures).Graydon Hoare-36/+42
2011-07-12stdlib: Move fs over to interior vectors by introducing a rust_list_files_ive...Patrick Walton-1/+40
2011-07-12rt: Remove the locks around upcall_shared_malloc and upcall_shared_freePatrick Walton-2/+1
2011-07-11stdlib: Add addr_of() to the standard libraryPatrick Walton-0/+12
2011-07-10rt: Remove the now-unused upcall_ivec_resize and upcall_ivec_spill, which all...Patrick Walton-42/+0
2011-07-10rt: Remove the _2 prefix from intrinsics; all rust-intrinsics now use explici...Patrick Walton-62/+7
2011-07-09rustc: Make rust-intrinsics take an explicit return pointerPatrick Walton-12/+72
2011-07-09stdlib: Implement casts. The horror.Patrick Walton-0/+46
2011-07-08stdlib: Implement str::unsafe_from_bytes_ivec()Patrick Walton-0/+21
2011-07-08stdlib: Add an offset function for simple pointer arithmetic on unsafe pointersPatrick Walton-23/+39
2011-07-08Added an environment variable to override the minimum stack size. Closes #637.Eric Holk-1/+10
2011-07-07Some cleanupEric Holk-8/+1
2011-07-07Fixed two races.Eric Holk-0/+10
2011-07-07Made TRACK_ALLOCATIONS add only constant time overhead. This makes itEric Holk-5/+48
2011-07-07Tightened up the scoping for our various new operators, which shouldEric Holk-11/+34
2011-07-07Work on debugging race conditions.Eric Holk-35/+90
2011-07-07Removing the synchronized memory region from tasks.Eric Holk-98/+21
2011-07-07Removing most of the locks in rust_upcall.cpp and elsewhere.Eric Holk-75/+46
2011-07-06Allocate rust_ivec buffers out of the kernel poolRob Arnold-0/+138
2011-07-06Add realloc method to rust_kernelRob Arnold-0/+6
2011-07-06rt: Double stack sizePatrick Walton-1/+1
2011-07-06rt: Add a stack check to upcall_get_type_descPatrick Walton-0/+29
2011-07-06Removed what seems to be the last of the calls to rand(). Closes #582.Eric Holk-7/+2
2011-07-06Added a task wakeup callback. Closes #599.Eric Holk-2/+22
2011-07-05rt: Add missing CDECL to routines in rust_builtinPatrick Walton-6/+6
2011-07-01Sync rust_chan's deref() method with rustc's code.Rob Arnold-2/+3
2011-07-01Add macro for refcounting runtime structures.Rob Arnold-11/+10
2011-07-01Move the channel destroy code into rust_chan.Rob Arnold-29/+39
2011-07-01Move channel cloning logic into a method on rust_chan.Rob Arnold-15/+22
2011-06-30rt: Add room for the new fill slot when resizing interior vectorsPatrick Walton-1/+1