File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 5442a473624f9d463a21508a5dbdd5a5ec326c15
2
+ refs/heads/master: e678435cab9cc8ddd668d4cb58ab82194c220382
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
5
5
refs/heads/try: 70152ff55722878cde684ee6462c14c65f2c4729
Original file line number Diff line number Diff line change @@ -648,8 +648,6 @@ impl SeedableRng<[u32, .. 4]> for XorShiftRng {
648
648
impl XorShiftRng {
649
649
/// Create an xor shift random number generator with a random seed.
650
650
pub fn new ( ) -> XorShiftRng {
651
- // generate seeds the same way as seed(), except we have a
652
- // specific size, so we can just use a fixed buffer.
653
651
let mut s = [ 0u8 , ..16 ] ;
654
652
loop {
655
653
let mut r = OSRng :: new( ) ;
@@ -714,6 +712,11 @@ impl<R: Rng> Rng for @mut R {
714
712
fn next_u64( & mut self ) -> u64 {
715
713
( * * self ) . next_u64( )
716
714
}
715
+
716
+ #[ inline]
717
+ fn fill_bytes( & mut self , bytes: & mut [ u8 ] ) {
718
+ ( * * self ) . fill_bytes( bytes) ;
719
+ }
717
720
}
718
721
719
722
/// Generate a random value using the task-local random number
Original file line number Diff line number Diff line change @@ -863,7 +863,6 @@ fn new_sched_rng() -> XorShiftRng {
863
863
use iter:: Iterator ;
864
864
use rand:: SeedableRng ;
865
865
866
- // XXX: this could use io::native::file, when it works.
867
866
let fd = do "/dev/urandom" . with_c_str |name| {
868
867
unsafe { libc:: open ( name, libc:: O_RDONLY , 0 ) }
869
868
} ;
You can’t perform that action at this time.
0 commit comments