about summary refs log tree commit diff
path: root/src/rt/rust_env.h
AgeCommit message (Collapse)AuthorLines
2013-08-16rt: Remove rust_envBrian Anderson-37/+0
2013-05-04improve DEBUG_BORROW printoutsNiko Matsakis-0/+1
2013-05-03Change borrow debugging so it is disabled by -ONiko Matsakis-1/+0
2013-05-01add an option to debug borrows (RUST_DEBUG_BORROW) so you canNiko Matsakis-0/+1
find out where the offending borrow occurred. This ... still needs some work.
2013-03-16rt: Add RUST_DEBUG_MEM to rust_env to avoid racesBrian Anderson-2/+6
2012-12-10Add license boilerplate to more files.Graydon Hoare-0/+10
2012-10-04rt: Remove CHECK_CLAIMSBrian Anderson-1/+0
2012-10-03Attempt to fix os::args errors on various platforms.Graydon Hoare-1/+3
2012-04-03Refactor includes structure, getting rid of rust_internal.hJon Morton-0/+8
Many changes to code structure are included: - removed TIME_SLICE_IN_MS - removed sychronized_indexed_list - removed region_owned - kernel_owned move to kernel.h, task_owned moved to task.h - global configs moved to rust_globals.h - changed #pragma once to standard guard in rust_upcall.h - got rid of memory.h
2012-03-02rt: Move RUST_POISON_ON_FREE into rust_envBrian Anderson-0/+1
2012-01-11rt: Add RUST_MAX_STACK env var with 8MB defaultBrian Anderson-0/+1
Closes #1489
2011-07-28Do all runtime calls to getenv at initializationBrian Anderson-0/+11
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.