summary refs log tree commit diff
path: root/src/rt
AgeCommit message (Expand)AuthorLines
2011-07-28Fiddle with the locking around channel disassociationBrian Anderson-2/+1
2011-07-28No strnlen on macBrian Anderson-4/+3
2011-07-28When using the allow leaks hack don't even print a warning about the leakBrian Anderson-3/+0
2011-07-28Do all runtime calls to getenv at initializationBrian Anderson-86/+180
2011-07-28Remove color-related code from rust_logBrian Anderson-48/+2
2011-07-28Updating to work on Windows.Eric Holk-6/+15
2011-07-28Re-enabled the rest of the asserts and things in rust_chan.cppEric Holk-12/+11
2011-07-28Resurrecting some of the logging in rust_chan.cppEric Holk-30/+35
2011-07-28Removed outdated comment.Eric Holk-1/+0
2011-07-28Atomic reference counting for tasks.Eric Holk-77/+43
2011-07-28Adding upcalls to to ref() and deref() tasks. This is the first step towards ...Eric Holk-1/+20
2011-07-28Made task threads wait instead of sleep, so they can be woken up. This appear...Eric Holk-21/+61
2011-07-28Adding a function to stdlib to set the min stack size, for programsEric Holk-1/+10
2011-07-28Per-thread scheduling. Closes #682.Eric Holk-185/+198
2011-07-28Made root_task no longer special.Eric Holk-20/+18
2011-07-28More useful leak debugging output.Rob Arnold-2/+4
2011-07-27More thorough check for interior-ness in str_from_ivecMarijn Haverbeke-2/+3
2011-07-26Base scheduler threads on number of cores. Closes #739Brian Anderson-3/+41
2011-07-25remove datalayout from the intrinsics.ll.in file, silence linkage warning.Graydon Hoare-1/+0
2011-07-23Fixed another concurrency issue in channels.Eric Holk-0/+2
2011-07-22More work on word-count.Eric Holk-3/+14
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