Skip to content

Commit ea57dc0

Browse files
committed
---
yaml --- r: 144141 b: refs/heads/try2 c: e5ccf13 h: refs/heads/master i: 144139: 608c3ac v: v3
1 parent 158c53c commit ea57dc0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 20213fcca420f6b6a0b8990a4647edad39148c07
8+
refs/heads/try2: e5ccf13668ed7b66d6efd9a1a03926e98546705d
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libstd/rt/sched.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl Scheduler {
105105
sleeper_list: SleeperList,
106106
run_anything: bool,
107107
friend: Option<SchedHandle>)
108-
-> Scheduler {
108+
-> Scheduler {
109109

110110
let mut event_loop = event_loop;
111111
let idle_callback = event_loop.pausible_idle_callback();
@@ -124,7 +124,7 @@ impl Scheduler {
124124
metrics: SchedMetrics::new(),
125125
run_anything: run_anything,
126126
friend_handle: friend,
127-
rng: XorShiftRng::new(),
127+
rng: XorShiftRng::new(),
128128
idle_callback: idle_callback
129129
}
130130
}
@@ -174,7 +174,7 @@ impl Scheduler {
174174
// cleaning up the memory it uses. As we didn't actually call
175175
// task.run() on the scheduler task we never get through all
176176
// the cleanup code it runs.
177-
let mut stask = Local::take::<Task>();
177+
let mut stask = Local::take::<Task>();
178178

179179
rtdebug!("stopping scheduler %u", stask.sched.get_ref().sched_id());
180180

branches/try2/src/libstd/rt/uv/uvio.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ impl UvPausibleIdleCallback {
178178
self.closed = true;
179179
self.watcher.close(||());
180180
}
181-
}
181+
}
182182
}
183183

184184
#[test]
@@ -232,8 +232,8 @@ impl UvRemoteCallback {
232232
// could be called in the other thread, missing the final
233233
// callback while still destroying the handle.
234234

235-
let should_exit = unsafe {
236-
exit_flag_clone.with_imm(|&should_exit| should_exit)
235+
let should_exit = unsafe {
236+
exit_flag_clone.with_imm(|&should_exit| should_exit)
237237
};
238238

239239
f();

0 commit comments

Comments
 (0)