diff options
| author | Michael Bebenita <[email protected]> | 2010-08-11 21:23:34 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-08-11 21:24:04 -0700 |
| commit | 988695a96cee1eb825435260a1874b8daa0e590a (patch) | |
| tree | ee92e117a653c8c6fad100e7416afe5468073ff3 /src/lib/std.rc | |
| parent | Some ELF correctness issues, but apparently none enough to placate gdb. (diff) | |
| download | rust-988695a96cee1eb825435260a1874b8daa0e590a.tar.xz rust-988695a96cee1eb825435260a1874b8daa0e590a.zip | |
Added support for task sleeping in the scheduler.
Diffstat (limited to 'src/lib/std.rc')
| -rw-r--r-- | src/lib/std.rc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/std.rc b/src/lib/std.rc index 8c956691..c2a2cf0c 100644 --- a/src/lib/std.rc +++ b/src/lib/std.rc @@ -15,6 +15,7 @@ mod _str; mod _io; mod sys; +mod _task; // Utility modules. @@ -25,6 +26,7 @@ mod util; auth _io = unsafe; auth _str = unsafe; auth _vec = unsafe; +auth _task = unsafe; auth _int.next_power_of_two = unsafe; auth map.mk_hashmap = unsafe; |