File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 474bd60c1bc242664bff876804e8fa4c5b27214d
4
+ refs/heads/snap-stage3: 6fbd5383f96cf0d79279e7ce903d3634ebe450d9
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ mod test {
143
143
let count_ptr: * mut int = & mut count;
144
144
let mut loop_ = Loop :: new ( ) ;
145
145
let mut timer = TimerWatcher :: new ( & mut loop_) ;
146
- do timer. start ( 10 , 20 ) |timer, status| {
146
+ do timer. start ( 1 , 2 ) |timer, status| {
147
147
assert ! ( status. is_none( ) ) ;
148
148
unsafe {
149
149
* count_ptr += 1 ;
@@ -166,7 +166,7 @@ mod test {
166
166
167
167
// Restart the original timer
168
168
let mut timer = timer;
169
- do timer. start ( 10 , 0 ) |timer, _| {
169
+ do timer. start ( 1 , 0 ) |timer, _| {
170
170
unsafe { * count_ptr += 1 ; }
171
171
timer. close ( ||( ) ) ;
172
172
}
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ vpath % .
9
9
SHELL := /bin/sh
10
10
11
11
CC := @CC@
12
- AR := @AR@
13
12
14
13
# Configuration parameters.
15
14
DESTDIR =
Original file line number Diff line number Diff line change @@ -4453,7 +4453,7 @@ PIC_CFLAGS='-fPIC -DPIC'
4453
4453
CTARGET=' -o $@'
4454
4454
LDTARGET=' -o $@'
4455
4455
EXTRA_LDFLAGS=
4456
- MKLIB=' $(AR) crus $@'
4456
+ MKLIB=' ar crus $@'
4457
4457
CC_MM=1
4458
4458
4459
4459
default_munmap=" 1"
You can’t perform that action at this time.
0 commit comments