1. 29 9月, 2012 6 次提交
  2. 28 9月, 2012 5 次提交
  3. 27 9月, 2012 1 次提交
  4. 26 9月, 2012 1 次提交
  5. 24 9月, 2012 1 次提交
  6. 22 9月, 2012 1 次提交
  7. 20 9月, 2012 6 次提交
  8. 19 9月, 2012 2 次提交
  9. 15 9月, 2012 3 次提交
  10. 13 9月, 2012 1 次提交
  11. 12 9月, 2012 1 次提交
  12. 11 9月, 2012 2 次提交
    • B
      298eb8c7
    • N
      Rename the poorly named Managed<T> type to Mut<T>. · 29003c79
      Niko Matsakis 提交于
      The Mut<T> type is intended to allow freezable data stuctures to be stored in
      `@mut` boxes. Currently this causes borrowck to be very conserivative since it
      cannot prove that you are not modifying such a structure while iterating over
      it, for example.  But if you do `@Mut<T>` instead of `@mut T`, you will
      effectively convert borrowck's static checks into dynamic ones.  This lets
      you use the e.g. send_map just like a Java Map or something else.
      29003c79
  13. 10 9月, 2012 1 次提交
  14. 08 9月, 2012 1 次提交
    • E
      gc: Add stack walker for new garbage collector. · 3f0d207b
      Elliott Slaughter 提交于
      Safe points are exported in a per-module list via the crate map. A C
      runtime call walks the crate map at startup and aggregates the list of
      safe points for the program.
      
      Currently the GC doesn't actually deallocate memory on malloc and
      free. Adding the GC at this stage is primarily of testing value.
      
      The GC does attempt to clean up exchange heap and stack-allocated
      resource on failure.
      
      A result of this patch is that the user now needs to be careful about
      what code they write in destructors, because the GC and/or failure
      cleanup may need to call destructors. Specifically, calls to malloc
      are considered unsafe and may result in infinite loops or segfaults.
      3f0d207b
  15. 04 9月, 2012 1 次提交
  16. 03 9月, 2012 3 次提交
  17. 31 8月, 2012 1 次提交
  18. 30 8月, 2012 2 次提交
  19. 29 8月, 2012 1 次提交