Skip to content

Commit 5fa0839

Browse files
committed
---
yaml --- r: 63429 b: refs/heads/snap-stage3 c: 6fbd538 h: refs/heads/master i: 63427: 095740f v: v3
1 parent a6e7424 commit 5fa0839

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 474bd60c1bc242664bff876804e8fa4c5b27214d
4+
refs/heads/snap-stage3: 6fbd5383f96cf0d79279e7ce903d3634ebe450d9
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libstd/rt/uv/timer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ mod test {
143143
let count_ptr: *mut int = &mut count;
144144
let mut loop_ = Loop::new();
145145
let mut timer = TimerWatcher::new(&mut loop_);
146-
do timer.start(10, 20) |timer, status| {
146+
do timer.start(1, 2) |timer, status| {
147147
assert!(status.is_none());
148148
unsafe {
149149
*count_ptr += 1;
@@ -166,7 +166,7 @@ mod test {
166166

167167
// Restart the original timer
168168
let mut timer = timer;
169-
do timer.start(10, 0) |timer, _| {
169+
do timer.start(1, 0) |timer, _| {
170170
unsafe { *count_ptr += 1; }
171171
timer.close(||());
172172
}

branches/snap-stage3/src/rt/jemalloc/Makefile.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ vpath % .
99
SHELL := /bin/sh
1010

1111
CC := @CC@
12-
AR := @AR@
1312

1413
# Configuration parameters.
1514
DESTDIR =

branches/snap-stage3/src/rt/jemalloc/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4453,7 +4453,7 @@ PIC_CFLAGS='-fPIC -DPIC'
44534453
CTARGET='-o $@'
44544454
LDTARGET='-o $@'
44554455
EXTRA_LDFLAGS=
4456-
MKLIB='$(AR) crus $@'
4456+
MKLIB='ar crus $@'
44574457
CC_MM=1
44584458
44594459
default_munmap="1"

0 commit comments

Comments
 (0)