summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-05-22std: ignoring timer test that seems to be race-failing b/c valgrindJeff Olson-0/+1
2012-05-22std: splitting out tcp server API + testsJeff Olson-102/+228
2012-05-22std: splitting out tcp server API WIPJeff Olson-81/+295
2012-05-22std: reworking how some net and libuv modules are exported in the rcJeff Olson-1/+2
2012-05-22rt: adding rust_uv_* binding for kernel malloc and free'ing :/Jeff Olson-0/+12
2012-05-22std: tightening up net::tcp, server/client test done, still has races..Jeff Olson-222/+325
2012-05-22std: change sig of uv::ll::accept, again.Jeff Olson-1/+1
2012-05-22std: first-pass at a tcp server API, with a basic (non-robust) testJeff Olson-20/+396
2012-05-22std: FIXME stub net::ip::ip_addr::ipv6 variant...needs parse/format implJeff Olson-0/+4
2012-05-22std: makeing uv::ll::listen/accept use generic params for ptr argsJeff Olson-4/+5
2012-05-22std: change tcp_*_result to use result::result.. flatter!Jeff Olson-120/+168
2012-05-22core: add result::unwrap() .. patch from @nmatsakisJeff Olson-0/+15
2012-05-22std: no longer return uv::ll::err_data records from net::tcpJeff Olson-12/+27
2012-05-22std: impl for high-level tcp client/request workflowJeff Olson-25/+150
2012-05-22std: impl of net::tcp::write and make net::tcp::tcp_socket a resourceJeff Olson-18/+126
2012-05-22std: tweak uv::ll::write signature and make it generic/more flexibleJeff Olson-4/+6
2012-05-22std: impl for net::tcp::connectJeff Olson-11/+204
2012-05-22std: export net::ip::format_addrJeff Olson-0/+1
2012-05-22std: misc cleanup for uv::llJeff Olson-6/+20
2012-05-22std: pushing existing code in net.rs -> net_ip.rs and re-import/exportingJeff Olson-47/+80
2012-05-22initial stab at API for std::net::tcpJeff Olson-0/+60
2012-05-22Merge pull request #2430 from mmeyerho/masterBrian Anderson-3/+34
2012-05-22Convert more resource tests to use classes with dtorsTim Chevalier-102/+221
2012-05-22Merge branch 'master' of git://github.com/mozilla/rustMargaret Meyerhofer-907/+1839
2012-05-22bench: Reduce some constants to make graph500-bfs fasterBrian Anderson-2/+2
2012-05-22cleaned up debugging codeMargaret Meyerhofer-2/+1
2012-05-22rustc: Eliminate metadata's dependency on sessionBrian Anderson-49/+64
2012-05-22rustc: Eliminate some session deps from metadata::loaderBrian Anderson-56/+85
2012-05-22rustc: Don't fall back to static libraries when shared isn't foundBrian Anderson-7/+2
2012-05-22rustc: Add cstore to ty::ctxt so csearch can get at itBrian Anderson-0/+2
2012-05-22syntax: Add diagnostic::expectBrian Anderson-4/+10
2012-05-22Added a test for #! commentsMargaret Meyerhofer-0/+6
2012-05-22Merge pull request #2427 from msullivan/shiftsBrian Anderson-79/+49
2012-05-22Changed the pretty printer also read #! commentsMargaret Meyerhofer-3/+17
2012-05-22Changed the lexer to accept #! comments on the first line.Margaret Meyerhofer-0/+12
2012-05-22Add a test for Issue #2428.Michael Sullivan-0/+5
2012-05-22Updating pbfs for new kind rules.Eric Holk-6/+7
2012-05-22Removed accidental machine size dependencies.Eric Holk-19/+22
2012-05-22Updating bfs to work with the new random methods.Eric Holk-9/+2
2012-05-22Removing par.rs, since it's not usable now anyway.Eric Holk-105/+0
2012-05-22More unsafe pointers to share immutable structures between tasks. This versio...Eric Holk-16/+20
2012-05-22Be less careful about checking that lengths make sense, for slightly more per...Eric Holk-6/+2
2012-05-22Using unsafe pointers to views to try to reduce some vector copy and allocati...Eric Holk-20/+48
2012-05-22Using unsafe pointers to share closures.Eric Holk-1/+4
2012-05-22Using libstd future instead.Eric Holk-74/+38
2012-05-22A new version of the sequential BFS. This uses the same approach as the paral...Eric Holk-0/+91
2012-05-22BFS now tries a number of search keys.Eric Holk-18/+69
2012-05-22A parallel BFS.Eric Holk-6/+103
2012-05-22Adding a module with parallel vector operations.Eric Holk-4/+217
2012-05-22Added most of the Graph500 validation routine. It's very slow.Eric Holk-4/+109